:root {
    --primary: #0F3D2E;
    --accent: #C9A24D;
    --dark: #1a1a1a;
    --light: #ffffff;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    width: 100%;
    padding: 18px 4%; /* Reduced padding for mobile */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    gap: 12px;
    color: #fff;
    font-size: 20px; /* Slightly smaller */
    font-weight: 1000;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.logo span { 
    color: var(--accent); 
}

.logo img {
    height: 55px; /* Smaller logo for mobile */
    width: auto;
    transition: var(--transition);
}
.company-name {
    font-size: 17px;
    /* font-weight: 600; */
    /* margin-top: 4px; */
}

#nav-menu {
    /* flex: 1; */
    display: flex;
    justify-content: start;
}

.nav-links {
    list-style: none;
    display: flex;
    padding-right: 20px;
    gap: 25px; /* Reduced gap */
    align-items: center;
    flex-wrap: wrap;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #ffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #C9A24D; 
}
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #C9A24D;
    transition: width 0.35s ease;
}
.nav-links li a:hover::after {
    width: 100%;
}
.nav-links li a.nav-cta:hover {
    color: #fff; /* text white hi rahe */
}
.nav-links li a.nav-cta::after,
.nav-links li a.nav-cta:hover::after {
    width: 0;
    content: none;
}

.nav-cta {
    background: #C9A24D;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
}
.nav-cta:hover {
    background: #b8903f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

}


/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    flex-shrink: 0;
}

.language-selector label {
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}

.language-selector select {
    padding: 6px 10px; /* Smaller padding */
    border: 1px solid #ccc;
    border-radius: 4px;
    background: rgba(255,255,255,0.95);
    font-size: 12px;
    cursor: pointer;
    min-width: 70px;
    color: #333;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active { 
    opacity: 1; 
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 90%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem); /* Responsive font size */
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    color: var(--accent);
    letter-spacing: 3px;
    font-size: clamp(11px, 2vw, 13px);
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    margin: 12px 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--accent);
    color: #000;
}

.btn-gold:hover {
    transform: translateY(-4px);
    background: #b8962d;
}

.btn-white {
    border: 1px solid #fff;
    color: #fff;
}

.btn-white:hover {
    background: #fff;
    color: #000;
}

/* ===== STATS GLASS ===== */
.stats-glass {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 25px;
    background: #f7f7f7;
}

.stat-glass {
    text-align: center;
    padding: 35px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-glass:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-glass h3 {
    font-size: clamp(32px, 8vw, 42px);
    color: var(--accent);
}

/* ===== ABOUT GLASS ===== */
.about-glass {
    padding: 90px 5%;
    background: linear-gradient(135deg, var(--primary), #111);
}

.about-card {
    max-width: 95%;
    margin: auto;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    color: #fff;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.4);
}

.about-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    margin-bottom: 20px;
    font-size: clamp(24px, 5vw, 32px);
}

/* ===== SERVICES ===== */
.services-grid {
    padding: 90px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(24px, 5vw, 36px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 25px;
}

.service-card {
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.icon {
    font-size: clamp(32px, 8vw, 40px);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 12px;
}

/* ===== CALLBACK FORM ===== */
.callback-section {
    padding: 90px 5%;
    display: flex;
    background: linear-gradient(135deg, #0F3D2E, #000);
}

/* Map */
.map-box {
    flex: 1;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.callback-card {
    max-width: 50%;
    margin: auto;
    padding: 40px 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border-radius: 0px 20px 20px 0px;
    text-align: center;
    color: #fff;
}

.callback-card h2 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 20px;
}

.callback-card input,
.callback-card textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 8px;
    border: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

.callback-card textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-glass {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 50px 0;
    border-top: 1px solid rgba(201, 162, 77, 0.3);
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: clamp(14px, 3vw, 16px);
    letter-spacing: 1px;
}

.footer-col p, 
.footer-col li {
    font-size: 13px;
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.6;
}

.footer-col.links ul {
    list-style: none;
}

.footer-col.links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-col.links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.management {
    line-height: 1.8;
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    font-size: 18px;
    color: var(--accent);
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .navbar {
        padding: 15px 4%;
    }
    
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 12px 4%;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .language-selector {
        margin-left: 0;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-glass {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 3%;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .language-selector select {
        min-width: 65px;
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .hero-content {
        max-width: 95%;
    }
    
    .stats-glass {
        padding: 60px 3%;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .about-glass,
    .services-grid,
    .callback-section {
        padding: 70px 3%;
    }
    
    .about-card,
    .callback-card {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 2%;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        gap: 8px;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .nav-cta {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .language-selector {
        width: 100%;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .language-selector label {
        font-size: 11px;
    }
    
    .language-selector select {
        width: 120px;
        font-size: 12px;
    }
    
    .stats-glass {
        padding: 50px 2%;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-glass {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .service-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 11px;
        display: block;
        margin: 10px auto;
        text-align: center;
        max-width: 200px;
    }
    
    .about-card,
    .callback-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
}
/* Hamburger Icon Styling */
.menu-toggle {
    display: none; /* Desktop pe chhupa rahega */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

/* Mobile View Logic (Main Fix) */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex; /* Mobile pe dikhega */
    }

    .navbar nav {
        position: fixed;
        right: -100%; /* Shuruat me screen se bahar rahega */
        top: 0;
        height: 100vh;
        width: 250px;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }

    /* Jab active class lagegi tab menu andar aayega */
    .navbar nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 25px;
    }

    .nav-links a {
        font-size: 16px;
        width: 100%;
    }

    .language-selector {
        margin: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}
