/* --- Global Styles & Variables --- */
:root {
    --primary-blue: #0d1b2a;
    --secondary-blue: #1b263b;
    --accent-gold: #e0b13a;
    --light-gray: #f1f1f1;
    --text-primary: #ffffff;
    --text-secondary: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-blue);
    color: var(--text-primary);
    line-height: 1.7;
    /* Added to prevent horizontal scroll on mobile */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title h2 strong {
    font-weight: 800;
    color: var(--accent-gold);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #fff;
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg svg {
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:not(.btn):hover {
    color: #fff;
}

/* --- NEW: Hamburger Menu --- */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above the navbar */
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Hamburger animation to 'X' */
.hamburger.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* (All other sections remain styled the same for desktop) */
/* ... */
/* --- Hero Section --- */
.hero-section {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    color: var(--text-secondary);
}

/* --- Services Section --- */
.services-section {
    background-color: var(--secondary-blue);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: var(--primary-blue);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.service-card h3 span {
    color: var(--accent-gold);
    font-weight: 700;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- Process Section --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: rgba(224, 177, 58, 0.3);
    z-index: 0;
}
.process-step {
    width: 18%;
    min-width: 150px;
    text-align: center;
    position: relative;
    background-color: var(--primary-blue);
    padding-top: 20px;
}
.process-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-blue);
    border: 2px solid var(--accent-gold);
    z-index: 1;
}
.process-step h4 {
    margin-top: 40px;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.process-step p {
    color: var(--text-secondary);
}

/* --- Why Us Section --- */
.why-us-section {
    background-color: var(--secondary-blue);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.comparison-card {
    padding: 30px;
    border-radius: 10px;
}
.comparison-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.comparison-card.them h3 { color: #888; }
.comparison-card.us h3 { color: var(--accent-gold); }
.comparison-card ul {
    list-style: none;
}
.comparison-card ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}
.comparison-card ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    font-weight: bold;
}
.comparison-card.us ul li {
    color: #fff;
}
.comparison-card.us ul li::before {
    content: '✓';
    color: var(--accent-gold);
}


/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-gold);
}
.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.team-member p {
    color: var(--text-secondary);
}

/* --- Brands Section --- */
.brands-section {
    background-color: var(--primary-blue);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.brand-card {
    background-color: var(--secondary-blue);
    border-radius: 10px;
    height: 120px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 30px 0;
    text-align: center;
    background-color: var(--secondary-blue);
}
.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}
.footer-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}
.footer-details {
    display: flex;
    justify-content: space-around;
    text-align: left;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.contact-info, .address-info {
    max-width: 400px;
}
.footer-details h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}
.footer-details p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.footer-details a {
    color: var(--text-primary);
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: var(--text-secondary);
}

/* --- Scroll Animation --- */
.service-card, .process-step, .comparison-card, .team-member, .brand-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays for a nicer effect */
.service-card:nth-child(1).is-visible { transition-delay: 0.1s; }
.service-card:nth-child(2).is-visible { transition-delay: 0.2s; }
.service-card:nth-child(3).is-visible { transition-delay: 0.3s; }
.process-step:nth-child(1).is-visible { transition-delay: 0.1s; }
.process-step:nth-child(2).is-visible { transition-delay: 0.2s; }
.process-step:nth-child(3).is-visible { transition-delay: 0.3s; }
.process-step:nth-child(4).is-visible { transition-delay: 0.4s; }
.process-step:nth-child(5).is-visible { transition-delay: 0.5s; }


/* --- **** NEW: RESPONSIVE STYLES **** --- */
@media (max-width: 992px) {
    /* --- Mobile Menu Styles --- */
    .hamburger {
        display: block; /* Show the hamburger */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-blue);
        padding-top: 100px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .main-nav.is-open {
        right: 0; /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .main-nav a {
        font-size: 1.2rem;
    }
    
    .main-nav .btn-primary {
        padding: 15px 40px;
    }

    /* --- General Responsive Layouts --- */
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none; /* Hide horizontal line */
    }

    .process-step {
        width: 80%;
    }

    .footer-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}