
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.container {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 100vh;
}

/* LEFT SIDE - Main Content */
.left-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

    /* White Vertical Dividers between sections - Full Height */
    .left-content section {
        position: relative;
        border-right: 4px solid white;
    }

/* SECTION 1: Hero - Crossfade Background */
.hero-section {
    position: relative;
    padding: 100px 60px;
    color: white;
    min-height: 500px;
    overflow: hidden;
    background: #112236; /* Deep navy base for the text side */
}

.hero-bg-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}
.hero-bg-slide.active {
    opacity: 1;
}

.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0a1e3d 0%, #152d52 25%, #1f3c66 50%, #2a4b7a 75%, #355a8f 100%);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/*.logo-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #1c345b;
    border: 3px solid #c9a05f;
}*/
.logo-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited {
        color: white;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 400;
        transition: opacity 0.3s;
    }

.nav-cta {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-azure) 100%);
    padding: 10px 25px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.hero-content {
    max-width: 246px; /* Reduced by 30% from 352px */
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-btn {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-azure) 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

/* SECTION 2: Services - Brighter Teal/Green Gradient */
.services-section {
    background: linear-gradient(90deg, #3a5448 0%, #314739 25%, #283a2b 50%, #1f2d1d 75%, #16200f 100%);
    padding: 80px 60px;
    color: white;
}

    .services-section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 60px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 5px 20px 30px;
    text-align: center;
    transition: all 0.3s;
}

    .service-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        border-color: rgba(212, 165, 116, 0.4);
    }

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.9;
}

/* SECTION 3: Why Choose Us - Brighter Dark Green Gradient */
.why-choose-section {
    background: linear-gradient(90deg, #2d4539 0%, #25382d 25%, #1d2b21 50%, #151e15 75%, #0d1109 100%);
    padding: 80px 60px;
    color: white;
}

    .why-choose-section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 60px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

    .reason-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(212, 165, 116, 0.3);
    }

.reason-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.reason-content p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

/* RIGHT SIDE - Brighter Burgundy/Maroon Gradient (Left to Right) */

/* Journey Steps */
.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 50px;
    padding: 20px 0;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}


.step-icon {
    font-size: 45px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.step h4 {
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.step p {
    font-size: 10px;
    opacity: 0.85;
    line-height: 1.3;
}

.step-arrow {
    position: absolute;
    right: -15px;
    top: 50px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.step:last-child .step-arrow {
    display: none;
}

/* Testimonials */
.testimonials {
    margin-bottom: 40px;
}

    .testimonials h3 {
        text-align: center;
        font-size: 16px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.testimonial {
    background: linear-gradient(135deg, rgba(139, 69, 88, 0.5) 0%, rgba(107, 53, 70, 0.5) 100%);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, #8b4558 0%, #6b3546 100%);
    border: 2px solid white;
}

.stars {
    color: #d4a574;
    font-size: 12px;
    margin-bottom: 8px;
}

.testimonial p {
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.testimonial .name {
    font-size: 10px;
    font-weight: bold;
}

/* Quote Form - Brighter Blue Gradient */
.quote-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%), linear-gradient(225deg, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .quote-form h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #1a3a5a;
        font-weight: 700;
    }

.contact-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: #5a6c7d;
}

    .contact-info a {
        color: #d4a574;
        text-decoration: none;
        font-weight: 600;
    }

.phone-number {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    color: #1a3a5a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e1e8ed;
        border-radius: 8px;
        background: #ffffff;
        color: #2c3e50;
        font-size: 13px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .form-group input::placeholder {
            color: #95a5a6;
        }

        .form-group input:focus {
            background: #ffffff;
            border-color: #1fc8e3;
            outline: none;
            box-shadow: 0 0 0 4px rgba(31, 200, 227, 0.08);
        }

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1fc8e3 0%, #17b3ce 50%, #0d9db8 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(23, 179, 206, 0.35), 0 2px 8px rgba(15, 163, 190, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .submit-btn:hover {
        background: linear-gradient(135deg, #0d8ba3 0%, #0a7388 50%, #085b6d 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(15, 163, 190, 0.4);
    }

.map-placeholder {
    margin-top: 15px;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    font-size: 13px;
    border: 2px solid #e1e8ed;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
    border-radius: 10px;
    border: 1px solid #c5e0ea;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #2c3e50;
}

.badge-icon {
    font-size: 20px;
    color: #17b3ce;
}

.badge strong {
    display: block;
    font-size: 12px;
    color: #1a3a5a;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-steps {
        flex-direction: column;
        gap: 25px;
    }

    .step-arrow {
        display: none;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 15px 20px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-section {
        padding: 80px 20px 40px 20px;
        min-height: 400px;
    }

    .hero-content {
        padding-top: 40px;
    }

        .hero-content h1 {
            font-size: 32px;
        }

        .hero-content p {
            font-size: 14px;
        }

    .services-section,
    .why-choose-section {
        padding: 50px 20px;
    }

        .services-section h2,
        .why-choose-section h2 {
            font-size: 22px;
            margin-bottom: 40px;
        }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-card {
        flex-direction: column;
        text-align: center;
    }

    .sidebar {
        padding: 5px 20px 30px;
    }

    .journey-steps {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quote-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .service-card,
    .reason-card {
        padding: 20px 15px;
    }

        .service-card h3,
        .reason-content h3 {
            font-size: 14px;
        }

        .service-card p,
        .reason-content p {
            font-size: 11px;
        }

    .quote-form h3 {
        font-size: 14px;
    }

    .contact-info {
        font-size: 11px;
    }

    .phone-number {
        font-size: 16px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger {
    background: #d4a574;
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(25, 50, 90, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
}

    .mobile-nav.active {
        display: flex;
        max-height: 700px;
    }

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

.mobile-nav .mobile-cta {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    margin-top: 10px;
    font-weight: bold;
}


