/* ==== MAIN FIX FOR RIGHT SPACE ==== */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* हर element screen से बाहर ना जाए */

* {
    max-width: 100%;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

header {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff2c55;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #ff2c55;
}

/* MOBILE MENU */

.menu-icon {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* BUTTON */

.btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-red {
    background: #ff2c55;
    color: #fff;
}

/* HERO VIDEO */

.hero {
    height: 80vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ABOUT */

.about-section {
    padding: 40px 0;
    text-align: center;
}

/* PROFILE CARDS */

.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.profile-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-info {
    padding: 15px;
}

.profile-info h3 {
    margin-bottom: 5px;
}

.details {
    font-size: 13px;
    color: #aaa;
}

.desc {
    font-size: 14px;
    margin: 10px 0;
}

/* BUTTONS */

.buttons {
    display: flex;
    gap: 10px;
}

.btn-whatsapp {
    background: green;
    color: #fff;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-call {
    background: #ff2c55;
    color: #fff;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 5px;
}

/* GALLERY */

.gallery-section {
    padding: 40px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    padding: 5px;
    border-radius: 0 0 10px 10px;
}

/* PRICING */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

.pricing-table th {
    background: #ff2c55;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

/* FAQ */

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    background: #222;
    color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #111;
}

.faq-item.active .faq-answer {
    display: block;
}

/* REVIEWS */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

/* CONTACT */

#contact {
    text-align: center;
    padding: 40px 0;
}

.big-whatsapp-btn {
    display: inline-block;
    background: green;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}

/* FOOTER */

footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }
    nav.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    /* NAV FIX */
    .nav-container {
        flex-wrap: wrap;
    }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        padding: 10px 0;
    }
    nav a {
        padding: 10px;
        border-top: 1px solid #222;
    }
    nav.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    /* HERO FIX */
    .hero {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 14px;
    }
    /* ABOUT */
    .about-section {
        padding: 20px 10px;
    }
    .about-section h1 {
        font-size: 18px;
    }
    /* CARDS FIX */
    .profile-cards {
        grid-template-columns: 1fr;
    }
    .profile-card img {
        height: 370px;
    }
    .buttons {
        flex-direction: column;
    }
    .buttons a {
        text-align: center;
        width: 100%;
    }
    /* GALLERY FIX */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item img {
        height: 220px;
        object-fit: cover;
    }
    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* PRICING TABLE SCROLL */
    .pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    /* REVIEWS */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    /* CONTACT */
    .big-whatsapp-btn {
        width: 100%;
        display: block;
    }
}

/* ===== FAQ PREMIUM DESIGN ===== */

.faq-section {
    padding: 40px 15px;
}

.faq-accordion {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    box-shadow: 0 0 10px rgba(255, 44, 85, 0.4);
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    background: #222;
    color: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.4s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

/* ===== REVIEWS PREMIUM DESIGN ===== */

.reviews-section {
    padding: 40px 15px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 44, 85, 0.4);
}

/* QUOTE ICON */

.review-card::before {
    content: "“";
    font-size: 60px;
    position: absolute;
    top: 10px;
    left: 15px;
    color: rgba(255, 255, 255, 0.05);
}

.stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ddd;
}

.reviewer strong {
    color: #fff;
}

.reviewer span {
    font-size: 12px;
    color: #aaa;
}

h2 {
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
}

h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff2c55;
    display: block;
    margin: 8px auto;
    border-radius: 5px;
}

/* ==================== FOOTER ==================== */

footer {
    background-color: #050505;
    padding: 60px 20px 30px;
    color: #aaa;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ff2d55;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff2d55;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Mobile Footer */

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}