/* Design System - Bhaliera */

:root {
    --primary-color: #082841; /* Dark Blue */
    --secondary-color: #DFAE74; /* Gold */
    --neutral-color: #CCCCCC; /* Light Grey */
    --accent-white: #FFFFFF;
    --accent-black: #051624;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-color);
    color: var(--accent-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.text-gold {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Google Review Badge */
.google-review-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.google-review-badge:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Section Styles */

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(8, 40, 65, 0.96);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    color: var(--neutral-color);
    transition: var(--transition-smooth);
}

.lang-btn.active {
    color: var(--secondary-color);
}

.lang-btn:hover {
    color: var(--accent-white);
}

.lang-divider {
    color: var(--glass-border);
    font-weight: 300;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 40, 65, 0.9) 0%, rgba(8, 40, 65, 0.4) 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-en-sub {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--neutral-color);
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-credential {
    display: inline-block;
    border: 1px solid var(--secondary-color);
    padding: 0.8rem 1.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Marquee */
.marquee-section {
    background: var(--accent-black);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neutral-color);
}

.marquee-item::before {
    content: '•';
    color: var(--secondary-color);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.section-eyebrow {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--secondary-color);
}

.about-text h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--neutral-color);
    font-size: 1.1rem;
}

.credential-block {
    border-left: 3px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    background: rgba(223, 174, 116, 0.05);
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--neutral-color);
}

.stats {
    display: flex;
    gap: 4rem;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-pillars {
    display: grid;
    gap: 2rem;
}

.pillar {
    background: var(--glass-bg);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.pillar:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
}

.pillar-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.service-num {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.5;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.faq-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.faq-intro p {
    color: var(--neutral-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: var(--accent-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-q:hover {
    color: var(--secondary-color);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-a.open {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-a p {
    color: var(--neutral-color);
    line-height: 1.8;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 8px;
    color: var(--accent-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Fix dropdown options visibility in dark mode */
.contact-form select option {
    background-color: var(--primary-color);
    color: var(--accent-white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.cta-expanded {
    margin-bottom: 4rem;
}

/* Footer Adjustments */

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    width: 100%;
    margin-bottom: 4rem;
}

.copyright {
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo .tagline {
    font-size: 0.8rem;
    color: var(--neutral-color);
    margin-top: 1rem;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--neutral-color);
}
/* Sub-page Specific Styles */
.subpage-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.subpage-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    /* Navbar */
    nav {
        padding: 0.8rem 0;
        background: rgba(8, 40, 65, 0.98); /* Solid background on mobile */
    }
    
    .nav-links {
        display: none; /* Hide by default on mobile */
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Hamburger Menu Toggle */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 2px;
        background-color: var(--secondary-color);
        transition: var(--transition-smooth);
    }

    /* Hero & Sub-pages */
    .subpage-hero {
        padding-top: 8rem;
    }
    .subpage-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding-top: 120px; /* Push content down further */
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2.2rem; /* Significantly smaller */
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    .hero-en-sub {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 3rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
    }
    .hero-credential {
        margin-bottom: 2rem;
    }

    /* About & Stats */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-text h2 {
        font-size: 2.2rem;
    }
    .stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .stat-item h3 {
        font-size: 2.2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-intro h2 {
        font-size: 2.2rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 2.2rem;
    }
    .contact-map {
        height: 250px;
    }
    
    /* Footer */
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

/* Mobile Navigation Toggle Styling */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed; /* Fixed to cover whole screen if needed */
    top: 70px; /* Below navbar */
    left: 0;
    width: 100%;
    background: rgba(8, 40, 65, 0.98);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 999;
}

.nav-links.active li {
    text-align: center;
    margin-bottom: 1.5rem;
}

.nav-links.active li a {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

