:root {
            --navy: #001F3F;
            --navy-light: #003057;
            --gold: #D4AF37;
            --gold-dark: #B8941F;
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --light-gray: #F5F5F5;
            --medium-gray: #E0E0E0;
            --dark-gray: #666666;
            --text-dark: #2C2C2C;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        
        .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--navy);
    cursor: pointer;
}

/* Mobile menu box */
.mobile-menu {
    display: none;
    flex-direction: column;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--light-gray);
}

/* CTA button row */
.mobile-cta-item a {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    font-weight: 600;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn svg {
    color: var(--navy);
}

/* Mobile only */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    .header-cta, .logo-tagline{display: none!important;}
}

/* Smooth scroll for whole site */
html {
    scroll-behavior: smooth;
}

        /* Header - Corporate & Professional */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            border-bottom: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-sm);
        }
        
        .header-top {
            background: var(--navy);
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        
        .header-top-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .header-info {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .header-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .header-info-item svg {
            width: 14px;
            height: 14px;
        }
        
        .header-main {
            padding: 1rem 0;
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .logo {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            letter-spacing: -0.3px;
        }
        
        .logo-tagline {
            font-size: 0.75rem;
            color: var(--dark-gray);
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-left: 2px solid var(--gold);
            padding-left: 1rem;
        }
        
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            letter-spacing: 0.2px;
        }
        
        nav a:hover {
            color: var(--navy);
        }
        
        .header-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .btn-header {
            padding: 0.65rem 1.75rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        
        .btn-header:hover {
            background: var(--gold-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        
        .phone-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            /* border: 1.5px solid var(--navy); */
            border-radius: 4px;
            transition: all 0.3s ease;
            background-color: #36B849;
            
        }
/*         
        .phone-link:hover {
            background: var(--navy);
            color: var(--white);
        } */
        
        /* Hero - Corporate & Clean */
        .hero {
            /*margin-top: 115px;*/
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></pattern></defs><rect width="800" height="600" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-left h1 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 3.25rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .hero-left h1 .highlight {
            color: var(--gold);
        }
        
        .hero-left p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
        }
        
        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        .hero-buttons {
            display: flex;
            gap: 3rem;
        }
        
        .btn-primary {
            padding: 1.15rem 2.5rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        
        .btn-primary:hover {
            background-color: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-secondary {
            padding: 1.15rem 2.5rem;
            background: #36B849;
            color: var(--white);
            /* border: 2px solid var(--white); */
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: #118C23;
            color: white;
        }

        .btn-primary-right {
            padding: 1.15rem 2.5rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        
        .btn-primary-right:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .hero-right {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }
        
        .pricing-card h3 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        .price-tag {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'IBM Plex Serif', serif;
            margin-bottom: 0.5rem;
        }
        
        .price-tag span {
            font-size: 1.25rem;
            color: var(--dark-gray);
            font-weight: 400;
        }
        
        .pricing-details {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
        }
        
        /* Trust Bar */
        .trust-bar {
            background: var(--off-white);
            padding: 2.5rem 3rem;
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .trust-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .trust-stat {
            text-align: center;
        }
        
        .trust-number {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .trust-label {
            color: var(--dark-gray);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Services Section */
        .services {
            padding: 6rem 3rem;
            background: var(--white);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-eyebrow {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }
        
        .section-title {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
        .section-description {
            color: var(--dark-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: var(--white);
            border: 1px solid var(--medium-gray);
            border-radius: 6px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        }
        
        .service-card h3 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--dark-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .service-link:hover {
            color: var(--gold);
        }
        
        /* Why Choose Us */
       .why-choose {
    padding: 6rem 3rem;
    background: var(--light-gray);
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 2.2rem;
    margin-top: 3rem;
}

/* CARD */
.feature-item {
    display: flex;
    gap: 1.25rem;
    background: #ffffff;
    padding: 1.6rem;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

/* PREMIUM HOVER */
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

/* ICON */
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: white;
}

/* TITLE */
.feature-content h4 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* TEXT */
.feature-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
        
        /* How It Works */
        .how-it-works {
            padding: 6rem 3rem;
            background: var(--white);
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 33%, var(--gold) 66%, var(--gold) 100%);
            z-index: 0;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'IBM Plex Serif', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy);
            position: relative;
        }
        
        .step h4 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        
        .step p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 6rem 3rem;
            background: var(--off-white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 6px;
            border-left: 4px solid var(--gold);
            box-shadow: var(--shadow-sm);
        }
        
        .testimonial-rating {
            color: var(--gold);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .author-info h5 {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }
        
        .author-info p {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
                /* ================= CONTACT FORM ================= */

.contact {
    background: #f9fafb;
    padding: 70px 20px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: none;
    margin-bottom: 20px;
}

.submit-btn {
    background: #ff6b00;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e65c00;
}
.container2 {
    background-color: #fdf5fd;
}
        /* CTA Section */
        .cta-section {
            padding: 5rem 3rem;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            text-align: center;
            color: var(--white);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-family: 'IBM Plex Serif', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        /* Footer */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.85);
            /* color: var(--text-dark); */
            padding: 4rem 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-family: 'IBM Plex Serif', serif;
            font-size: 1.15rem;
            font-weight: 600;
        }
        
        .footer-section p {
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-section a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
     .footer-bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
/* Full width hero pricing button */
.btn-full {
    width: 100%;
    text-align: center;
}

/* Footer spacing */
.footer-office-info {
    margin-top: 1rem;
}

/* Footer bottom links */
.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Footer social icons row */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-right {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps-container::before {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                display: none;
            }
            
            nav {
                display: none;
            }
            
            .hero {
                padding: 3rem 2rem;
            }
            
            .hero-left h1 {
                font-size: 2.25rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        .cta-section {
  padding: 80px 20px;
  text-align: center;
  color: white;

  /* Dark blue gradient */
  background: linear-gradient(
      rgba(5, 35, 70, 0.9),
      rgba(5, 35, 70, 0.9)
    ),
    repeating-linear-gradient(
      -45deg,
      #0b3b63,
      #0b3b63 20px,
      #0a3357 20px,
      #0a3357 40px
    );
}

.cta-content {
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 18px;
  color: #d7e1ea;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #d4af37;
  color: #0b2c4d;
  padding: 14px 36px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta-primary:hover {
  background: #c09c2f;
}

.btn-cta-secondary {
  background: #d9d9d9;
  color: #0b2c4d;
  padding: 14px 36px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta-secondary:hover {
  background: #cfcfcf;
}




/* Page Hero - Same as Main Site */
.page-hero{
background:linear-gradient(135deg,#0b2c4d,#0f3f6b);
padding:110px 60px;
color:#fff;
position:relative;
overflow:hidden;
}

/* subtle pattern */
.page-hero:before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
background-size:40px 40px;
opacity:.5;
}

/* container */

.hero-content-wrapper{
max-width:1200px;
margin:auto;
position:relative;
z-index:2;
}

/* breadcrumb */

.breadcrumb{
font-size:14px;
color:#cbd5e1;
margin-bottom:25px;
}

.breadcrumb a{
color:#cbd5e1;
text-decoration:none;
}

.separator{
margin:0 6px;
}

/* ================= TITLE ================= */

.page-title{
font-family:"Crimson Pro",serif;
font-size:60px;
font-weight:700;
line-height:1.2;
margin-bottom:15px;
}

.title-accent{
display:block;
font-size:42px;
color:#e4b93c;
margin-top:12px;
}

.title-subtitle{
display:block;
margin-top:16px;
font-size:18px;
color:#dbeafe;
font-family:"Work Sans",sans-serif;
}

/* ================= FEATURES ================= */

/* FEATURES SECTION */

.hero-features-court{
display:grid;
grid-template-columns:repeat(2, minmax(260px,1fr));
gap:20px 80px;
margin-top:40px;
max-width:750px;
}

.hero-feature-court{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
font-family:"Work Sans",sans-serif;
color:#e5e7eb;
white-space:nowrap;
}

.hero-feature-court svg{
width:18px;
height:18px;
color:#e4b93c;
flex-shrink:0;
}

/* ================= BUTTONS ================= */

.hero-buttons-court{
margin-top:40px;
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn-primary{
background:#e4b93c;
color:#0b2c4d;
padding:14px 30px;
font-weight:600;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.btn-primary:hover{
background:#d4a72e;
transform:translateY(-2px);
}

.btn-secondary{
background:#22c55e;
color:#fff;
padding:14px 30px;
font-weight:600;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.btn-secondary:hover{
background:#16a34a;
transform:translateY(-2px);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero-features-court{
grid-template-columns:1fr;
gap:14px;
}

.hero-feature-court{
white-space:normal;
}

.hero-buttons-court{
flex-direction:column;
align-items:flex-start;
}
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Introduction Section */
.intro-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-check svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Quick Form Card */
.quick-form-card {
    background: var(--cream);
    border: 2px solid var(--navy);
    padding: 2.5rem;
    position: sticky;
    top: 140px;
}

.quick-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy);
}

.btn-form-submit {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--navy);
    /* background: var(--navy);
    color: var(--white); */
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-form-submit:hover {
    background: var(--navy);
    color: var(--gold);
    /* background: var(--gold);
    color: var(--navy); */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-form-submit svg {
    width: 20px;
    height: 20px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.form-success {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    color: #155724;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-error {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #721c24;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

/* Ad Types Section */
/* ===============================
   WHAT CAN YOU PUBLISH (PREMIUM)
   ALWAYS 4 COLUMNS
================================ */

.ad-types-section {
    padding: 90px 30px;
    background: #ffffff !important;
    /* background: linear-gradient(180deg, #f8f7f4 0%, #f1efe9 100%); */
}


/* ALWAYS 4 columns */
.ad-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}


/* ================= CARD ================= */

.ad-type-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 18px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.06); */
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* premium top border */
.ad-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,#0d2340,#c9a227);
}


/* hover effect */
.ad-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}


/* ================= ICON ================= */

.card-icon {
    font-size: 52px;      /* bigger */
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,#eef2f7,#e6ecf5);
    border-radius: 20px;

    margin-bottom: 20px;
}


/* ================= TITLE ================= */

.ad-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d2340;
    margin-bottom: 18px;
}


/* ================= LIST ================= */

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;

    flex-grow: 1; 
}

.card-list li {
    font-size: 0.95rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.card-list li:last-child {
    border-bottom: none;
}


/* ================= BUTTON LINK ================= */

.card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #c9a227;
    color: #0d2340;
    /* background: #0d2340;
    color: #fff; */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;

     align-self: flex-start;
}

.card-link:hover {
    /* background: #c9a227;
    color: #000; */

    background: #0d2340;
    color: #c9a227;
}
.section-header-center {
    text-align: center;
    margin: 0 auto 60px auto;
}

.section-label {
    display: block;
    text-align: center;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #c9a227;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #0d2340;
}


/* ================= RESPONSIVE ================= */
/* IMPORTANT Ã¢â€ â€™ STILL 4 COLUMNS */

@media (max-width: 1200px) {
    .ad-types-grid {
        gap: 20px;
    }

    .ad-type-card {
        padding: 28px 20px;
    }

    .card-icon {
        font-size: 42px;
        width: 70px;
        height: 70px;
    }

    .card-list li {
        font-size: 0.85rem;
    }
}


/* Samples Section */
.samples-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.samples-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.sample-card {
    background: var(--cream);
    border: 3px solid var(--navy);
    overflow: hidden;
}

.sample-header {
    background: var(--navy);
    padding: 1.5rem 2rem;
    color: var(--white);
}

.sample-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.sample-header h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
}

.sample-body {
    padding: 2rem;
}

.sample-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.sample-text strong {
    font-weight: 700;
    color: var(--navy);
}

.sample-footer {
    padding: 0 2rem 2rem;
}

.btn-sample {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sample:hover {
    background: var(--gold);
    color: var(--white);
}

/* Pricing Section */
/* ===============================
   Pricing Cards (FIXED DESIGN)
================================= */

.price-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

/* header */
.price-header h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.4rem;
    vertical-align: top;
}


/* features list */
.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-features svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* buttons */
.btn-price {
    padding: 0.9rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-price:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== Featured (Standard plan) ===== */
.price-card-featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.btn-price-featured {
    background: var(--gold);
    color: var(--navy);
}

.btn-price-featured:hover {
    background: var(--navy);
    color: var(--white);
}
@media (max-width: 768px) {
    .price-features svg {
        width: 34px;
        height: 34px;
    }
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Book My Ad Banner ===== */

.book-ad-banner {
    text-align: center;
    margin: 25px 0 40px;
}

.book-ad-banner img {
    width: 120px;
    max-width: 100%;
    height: auto;
    display: inline-block;

}

.newspaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: #ede8e883; */
}

.newspaper-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.newspaper-card img {
    /* width: 128px;          
    height: 48px;            */
    width: 300px;
    height: 150px;
    object-fit: contain;
}

/* equal height cards */
.newspaper-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.newspaper-card h3 {
    margin-top: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.newspaper-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
    
}

.cities {

    color: var(--gray-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cities i {
    margin-right: 8px;
    color: var(--accent-color);
}

.rate {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===============================
   Newspaper Buttons (NEW STYLE)
================================= */

.news-btn-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-detail,
.btn-cart {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

/* Dark button */
.btn-detail {
    background: #1f2633;
    color: #fff;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Pink Add to cart */
.btn-cart {
    background: #ff6b81;
    color: #fff;
}

.btn-cart:hover {
    background: #ff4f6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 107, 129, 0.35);
}


/* Process Timeline */
.process-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    background: var(--cream);
    border: 4px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--navy);
    border-color: var(--gold);
}

.timeline-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-number {
    color: var(--gold);
}

.timeline-connector {
    flex: 0.5;
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
    position: relative;
    top: -60px;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 3rem;
    background: var(--off-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

/* .faq-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
} */
/* ===============================
   FAQ SIDEBAR CALL BUTTON
================================ */

.faq-sidebar {
    text-align: left;
    max-width: 320px;
}

.call-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0 12px 0;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.call-btn:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-contact:hover {
    color: var(--gold);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--navy);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}
/* Voice FAQ Button */
.voice-btn {
    margin-top: 20px;
    padding: 10px 18px;
    background: #36B849;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.voice-btn:hover {
    background: #118C23;
    color: var(--white);
}

.voice-status {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}


/* CTA Section */
.cta-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 175, 55, 0.05) 40px, rgba(212, 175, 55, 0.05) 80px);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    padding: 1.25rem 3rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Footer */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive Design */
@media (max-width: 1024px) {

    .container,
    .container-wide {
        padding: 0 2rem;
    }

    .ad-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .page-title {
        font-size: 3.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .quick-form-card {
        position: static;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .samples-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .timeline-connector {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .container,
    .container-wide {
        padding: 0 1.25rem;
    }

    .header-top {
        display: none;
    }

    nav {
        display: none;
    }

    .page-hero {
        padding: 3rem 2rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .title-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .stat-divider {
        display: none;
    }

    .section-heading {
        font-size: 2rem;
    }

    .ad-types-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card-featured {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-office-info {
    margin-top: 1rem;
}

.footer-bottom-text a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom-text a:hover {
    text-decoration: underline;
}
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


/* ===================================
   NEWSPAPERS GRID SECTION
=================================== */

.newspapers-section {
    padding: 80px 0;
    background: #f7f7f7;
    /* background: #ffffff !important; */
    text-align: center;
}

.newspapers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    
}

/* card */
.paper-card {
    background: #fff;
   
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.paper-card:hover {
    transform: translateY(-6px);
}

.paper-card img {
    height: 90px;
    max-width: 180px;
    width: 100%;
    margin-bottom: 22px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.paper-card:hover img {
    transform: scale(1.05);
}


.paper-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.paper-card p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* button */
.paper-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px;
    border: none;
    background: var(--gold);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.paper-btn:hover {
    opacity: 0.9;
    /* background: var(--gold);
    color: var(--navy); */
    color: var(--gold);
    background-color:  var(--navy);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .newspapers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .newspapers-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================
   INTRO + FORM MOBILE FIX
================================= */

@media (max-width: 768px) {

    /* section full width */
    .intro-section,
    .intro-grid {
        width: 100%;
    }

    /* 2 column Ã¢â€ â€™ 1 column */
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* text block spacing fix */
    .intro-content {
        padding: 0 16px;
    }

    /* heading responsive */
    .intro-content h2 {
        font-size: 1.9rem;
        line-height: 1.35;
    }

    .intro-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* ===== FORM CARD ===== */
    .quick-form-card {
        width: 100%;
        margin: 0 16px;
        padding: 20px;
        position: relative;   /* remove sticky on mobile */
        top: 0;
        box-sizing: border-box;
    }

    /* inputs full width */
    .quick-form-card input,
    .quick-form-card select,
    .quick-form-card textarea,
    .btn-form-submit {
        width: 100%;
    }

    /* heading */
    .quick-form-card h3 {
        font-size: 1.6rem;
    }
}


/* small phones */
@media (max-width: 480px) {

    .intro-content h2 {
        font-size: 1.6rem;
    }

    .quick-form-card {
        padding: 16px;
        margin: 0 12px;
    }
}





/* ===============================
   GLOBAL RESPONSIVE FIXES
================================ */

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow-x: hidden;
}
/* ===============================
   HEADER RESPONSIVE
================================ */

@media (max-width: 992px) {
    .header-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    .header-main {
        padding: 0.75rem 0;
    }

    .logo-container img {
        height: 42px;
    }

    .header-cta {
        display: none;
    }
}
/* ===============================
   HERO RESPONSIVE
================================ */

@media (max-width: 992px) {
    .page-hero {
        padding: 4rem 2rem;
    }

    .page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 1.25rem;
        margin-top: 0;
    }

    .page-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .stat-divider {
        display: none;
    }
}
/* ===============================
   INTRO + FORM RESPONSIVE
================================ */

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quick-form-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 4rem 1rem;
    }

    .intro-content h2 {
        font-size: 1.9rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .quick-form-card {
        padding: 1.5rem;
        margin: 0;
    }
}
/* ===============================
   PROPERTY TYPES GRID
================================ */

@media (max-width: 1200px) {
    .ad-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ad-types-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   CTA RESPONSIVE
================================ */

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* ===============================
   FOOTER RESPONSIVE
================================ */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
    }
}
/* ===============================
   MOBILE MENU BUTTON - RESPONSIVE
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0a2540;
    padding: 8px 12px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #667eea;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 20px;
        background: #fff;
        display: none;
        flex-direction: column;
        width: 240px;
        padding: 16px 20px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        gap: 0;
    }

    .main-nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        color: #0a2540;
        display: block;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover {
        color: #667eea;
        background: rgba(102, 126, 234, 0.05);
        padding-left: 8px;
    }
}


/* ================= TENDER CONTENT SECTION ================= */

.tender-content-section {
    padding: 80px 20px;
    background: #ffffff;
}

.tender-content-section .container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.tender-content-section .section-heading {
    font-family: 'Crimson Pro', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.tender-content-section p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.tender-content-section h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #111;
}

.tender-content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tender-content-section ul li {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
    position: relative;
}

/* Better bullet styling */
.tender-content-section ul li::marker {
    color: #c0392b;
}

/* ================= TABLET RESPONSIVE ================= */

@media (max-width: 992px) {

    .tender-content-section {
        padding: 60px 20px;
    }

    .tender-content-section .section-heading {
        font-size: 30px;
    }

    .tender-content-section h3 {
        font-size: 20px;
    }

    .tender-content-section p,
    .tender-content-section ul li {
        font-size: 15px;
    }
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 576px) {

    .tender-content-section {
        padding: 50px 15px;
    }

    .tender-content-section .section-heading {
        font-size: 24px;
        text-align: left;
    }

    .tender-content-section h3 {
        font-size: 18px;
        margin-top: 30px;
    }

    .tender-content-section p,
    .tender-content-section ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    .tender-content-section ul {
        padding-left: 18px;
    }
}





        h1 {
            font-size: 2.4em;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }
       
        .subtitle {
            font-size: 1.15em;
            color: rgba(255,255,255,0.95);
            margin-bottom: 25px;
        }
       
       
        .intro-box {
            background: linear-gradient(to right, #e3f2fd, #bbdefb);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
       
        .intro-box p {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 0;
        }
       
        h2 {
            font-size: 1.9em;
            color: var(--primary);
            margin: 45px 0 20px 0;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            font-weight: 700;
        }
       
        h3 {
            font-size: 1.35em;
            color: var(--secondary);
            margin: 25px 0 15px 0;
            font-weight: 600;
        }
       
        p {
            margin-bottom: 18px;
            font-size: 1.05em;
            line-height: 1.8;
        }
       
        strong {
            color: var(--primary);
            font-weight: 600;
        }
       
        ul, ol {
            margin: 20px 0 20px 35px;
        }
       
        li {
            margin-bottom: 12px;
            font-size: 1.05em;
            line-height: 1.7;
        }
       
        .process-steps {
            counter-reset: step;
            list-style: none;
            margin-left: 0;
        }
       
        .process-steps li {
            counter-increment: step;
            margin-bottom: 20px;
            padding-left: 65px;
            position: relative;
            background: var(--light-bg);
            padding: 18px 18px 18px 70px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }
       
        .process-steps li::before {
            content: counter(step);
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1em;
        }
       
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
       
        th {
            background: var(--primary);
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 1.05em;
        }
       
        td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
        }
       
        tr:hover {
            background: #f8f9fa;
        }
       
        tr:last-child td {
            border-bottom: none;
        }
       
        .highlight-row {
            background: #fff3e0 !important;
            font-weight: 600;
        }
       
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
       
        .card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
            border-top: 4px solid var(--accent);
            transition: all 0.3s;
        }
       
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
       
        .card h3 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.2em;
        }
       
        .info-box {
            background: #e8f5e9;
            border-left: 5px solid var(--success);
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
       
        .warning-box {
            background: #fff3e0;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
       
        .sample-format {
            background: #fafafa;
            border: 2px solid var(--border);
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            line-height: 1.7;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
       
        .format-title {
            text-align: center;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
            text-transform: uppercase;
            color: var(--primary);
        }



        /* ================= MUMBAI SEO CONTENT ================= */

.content-section{
  padding:60px 0;
  background:#ffffff;
}

.content-section .container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

/* INTRO BOX */
.intro-box{
  background:#eef5ff;
  border-left:4px solid #2b5dab;
  padding:18px 20px;
  border-radius:6px;
  margin-bottom:30px;
  font-size:15px;
  line-height:1.7;
}

/* HEADINGS */
.content-section h2{
  font-size:24px;
  margin:45px 0 15px;
  font-weight:700;
  border-bottom:2px solid #f07f2f;
  padding-bottom:6px;
}

.content-section p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:15px;
}

/* CARD GRID */
.card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:20px;
}

.card{
  border:1px solid #e6e6e6;
  border-top:3px solid #f07f2f;
  padding:16px;
  border-radius:8px;
  background:#ffffff;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
  transition:all .25s ease;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.card h3{
  font-size:15px;
  margin-bottom:6px;
  font-weight:600;
}

.card p{
  font-size:14px;
  margin:0;
  color:#555;
}

/* DANGER CARD (RED CROSS STYLE) */
.card.danger{
  border-top:3px solid #e53935;
  position:relative;
  padding-left:36px;
}

.card.danger::before{
  content:"✖";
  position:absolute;
  left:14px;
  top:16px;
  color:#e53935;
  font-size:14px;
  font-weight:700;
}

/* LISTS */
.benefits-list,
.bullet-list{
  padding-left:18px;
  margin-top:15px;
}

.benefits-list li,
.bullet-list li{
  margin-bottom:8px;
  font-size:14px;
}

/* SIMPLE UL */
.content-section ul:not(.benefits-list):not(.bullet-list){
  padding-left:18px;
  margin-top:10px;
}

.content-section ul li{
  margin-bottom:6px;
  font-size:14px;
}

/* TABLE */
.content-section table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
  font-size:14px;
  border-radius:8px;
  overflow:hidden;
}

.content-section thead{
  background:#1f3f8f;
  color:#fff;
}

.content-section th,
.content-section td{
  padding:12px 14px;
  border:1px solid #e6e6e6;
  text-align:left;
}

.content-section tbody tr:nth-child(even){
  background:#fafafa;
}

.highlight-row{
  background:#fff7ec;
  font-weight:600;
}

/* SAMPLE BOX */
.sample-box{
  background:#f5f5f5;
  border:1px solid #ddd;
  padding:16px;
  margin-top:20px;
  border-radius:6px;
  font-family:monospace;
  font-size:13px;
  line-height:1.6;
}

/* NOTE BOXES */
.note-box{
  padding:14px 16px;
  border-radius:6px;
  margin-top:20px;
  font-size:14px;
}

.note-box.green{
  background:#eaf7ea;
  border-left:4px solid #2e7d32;
}

.note-box.orange{
  background:#fff3e0;
  border-left:4px solid #f07f2f;
}

/* TIMELINE PROCESS */
.timeline .step{
  display:flex;
  gap:14px;
  margin-bottom:14px;
  align-items:flex-start;
}

.timeline span{
  background:#f07f2f;
  color:#fff;
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:14px;
  flex-shrink:0;
}

/* RESPONSIVE */
@media (max-width:1024px){
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){

  .content-section{
    padding:40px 0;
  }

  .content-section h2{
    font-size:20px;
  }

  .card-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .card{
    padding:14px;
  }

  /* MOBILE TABLE STACK */
  .content-section table,
  .content-section thead,
  .content-section tbody,
  .content-section th,
  .content-section td,
  .content-section tr{
    display:block;
    width:100%;
  }

  .content-section thead{
    display:none;
  }

  .content-section tr{
    margin-bottom:14px;
    border:1px solid #e6e6e6;
    border-radius:6px;
    overflow:hidden;
  }

  .content-section td{
    border:none;
    border-bottom:1px solid #eee;
    padding:10px 12px;
  }

  .content-section td:last-child{
    border-bottom:none;
  }
}

/* ===== TENDER CONTENT SECTION ===== */
.tender-content-section{
  padding:60px 20px;
  background:#f8f9fb;
  font-family:'Inter',Arial,Helvetica,sans-serif;
  color:#1f2a37;
}

.container{
  max-width:1200px;
  margin:0 auto;
}

/* ===== HEADINGS ===== */
.tender-content-section h2{
  font-size:28px;
  margin:40px 0 15px;
  color:#0b2c5f;
  border-bottom:3px solid #f59e0b;
  padding-bottom:6px;
}

.tender-content-section h3{
  font-size:20px;
  margin:25px 0 10px;
  color:#0b2c5f;
}

.tender-content-section p{
  line-height:1.7;
  margin-bottom:15px;
}

/* ===== INTRO BOX ===== */
.intro-box{
  background:#e8f0ff;
  border-left:5px solid #0b2c5f;
  padding:18px 20px;
  border-radius:6px;
  margin-bottom:25px;
}

/* ===== INFO & WARNING BOX ===== */
.info-box{
  background:#e6f7ed;
  border-left:5px solid #16a34a;
  padding:18px 20px;
  border-radius:6px;
  margin:25px 0;
}

.warning-box{
  background:#fff4e5;
  border-left:5px solid #f97316;
  padding:18px 20px;
  border-radius:6px;
  margin:25px 0;
}

/* ===== CARD GRID ===== */
.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin:25px 0;
}

.card{
  background:#ffffff;
  border-radius:10px;
  padding:18px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  border-top:4px solid #f59e0b;
  transition:all .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* ===== LISTS ===== */
.tender-content-section ul{
  padding-left:18px;
  margin:10px 0 20px;
}

.tender-content-section ul li{
  margin-bottom:8px;
  line-height:1.6;
}

/* ===== TABLE ===== */
table{
  width:100%;
  border-collapse:collapse;
   /* border-collapse:separate; */
  margin:25px 0;
  background:#ffffff;
  border-radius:8px;
  overflow:auto;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

thead{
  background:#0b2c5f;
  color:#ffffff;
  
}

th,td{
  padding:14px 16px;
  text-align:left;
  font-size:14px;
}
thead th{
  position:sticky;   
  background:#0b2c5f;
}

tbody tr{
  border-bottom:1px solid #e5e7eb;
  transition:background .2s ease;
}

tbody tr:hover{
  background:#f1f5ff;
  
  
}

.highlight-row{
  background:#fff7ed !important;
  font-weight:600;
}

/* ===== SAMPLE FORMAT BOX ===== */
.sample-format{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  padding:20px;
  border-radius:8px;
  font-family:monospace;
  font-size:14px;
  line-height:1.6;
  overflow:auto;
}

.format-title{
  text-align:center;
  font-weight:700;
  font-size:16px;
  margin-bottom:10px;
}

/* ===== PROCESS STEPS ===== */
.process-steps{
  counter-reset:step;
  list-style:none;
  padding-left:0;
  margin:25px 0;
}

.process-steps li{
  position:relative;
  padding-left:55px;
  margin-bottom:20px;
  background:#ffffff;
  border-radius:8px;
  padding:18px 18px 18px 55px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  border-left:4px solid #f97316;
}

.process-steps li::before{
  /* counter-increment:step; */
  content:counter(step);
  position:absolute;
  left:15px;
  top:18px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#f97316;
  color:#ffffff;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

        .benefits-list {
            list-style: none;
            margin-left: 0;
        }
       
        .benefits-list li {
            padding-left: 35px;
            position: relative;
            margin-bottom: 15px;
        }
       
        .benefits-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
            font-size: 1.3em;
        }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .tender-content-section{
    padding:40px 15px;
  }

  .tender-content-section h2{
    font-size:22px;
  }

  .tender-content-section h3{
    font-size:18px;
  }

  .card-grid{
    grid-template-columns:1fr;
  }

  th,td{
    font-size:13px;
    padding:10px;
  }

  .process-steps li{
    padding:16px 16px 16px 50px;
  }

  .process-steps li::before{
    width:24px;
    height:24px;
    font-size:12px;
    left:12px;
    top:16px;
  }
}


/* ===============================
   TABLE – ALL DEVICES SAME FORMAT
   (NO HTML CHANGE)
================================= */

table{
  width:100%;
  border-collapse:collapse;
  background:#ffffff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

thead{
  background:#0b2c5f;
  color:#ffffff;
}

th,td{
  padding:14px 16px;
  border:1px solid #e0e0e0;
  text-align:left;
  vertical-align:middle;
  white-space:nowrap; /* prevent breaking */
}

/* zebra rows */
tbody tr:nth-child(even){
  background:#fafafa;
}

/* highlight combo row */
.highlight-row{
  background:#f1eadf !important;
  font-weight:700;
}

.highlight-row td{
  border-top:2px solid #d4af37;
  border-bottom:2px solid #d4af37;
}

/* ===============================
   TABLET – horizontal scroll only
================================= */
@media (max-width:1024px){

  table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }

}

/* ===============================
   MOBILE – smaller padding + scroll
================================= */
@media (max-width:768px){

  th,td{
    padding:10px 12px;
    font-size:14px;
  }

  table{
    display:block;
    overflow-x:auto;
  }
}


/* ===== REMOVE LEFT EMPTY SPACE COMPLETELY ===== */

.intro-section{
    padding: 40px 0 !important;
    margin: 0 !important;
}

.intro-section .container,
.container,
.container-wide{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding-left: 2px !important;
    padding-right: 2px !important;
}

/* GRID FIX */
.intro-grid{
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    margin: 0 !important;
    padding: 0 !important;
}

/* LEFT CONTENT */
.intro-content{
    margin: 0 !important;
    padding: 0 !important;
}

/* FORM RIGHT SIDE */
.quick-form-card{
    justify-self: end;
    margin-right: 0 !important;
}

/* ===== FORCE REMOVE ANY LEFT GAP ===== */
body, html{
    overflow-x: hidden;
}

section{
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ===== HERO BUTTON EXACT RIGHT ===== */

/* ===== HERO BUTTON RIGHT SIDE ===== */

.hero-flex{
    display:flex;
    justify-content:flex-end;
    margin-top:30px;
    padding-right: 80%;
}

.hero-btn-right{
    display:flex;
    justify-content:flex-end;
}

/* GOLD BUTTON STYLE */
.hero-book-btn{
    display:inline-block;
    background:#c9a227;
    color:#000;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    font-size:18px;
    text-decoration:none;
    transition:0.3s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.18);
}

/* hover */
.hero-book-btn:hover{
    background:#b8951f;
    color:#000;
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,0.25);
}
/* ===== MOBILE FIX ===== */
@media(max-width:768px){

    .hero-btn-wrapper{
        justify-content:flex-start;
        margin-top:15px;
    }

    .hero-book-btn{
        width:100%;
        text-align:center;
    }
}
/*@media (min-width: 768px) {*/
/*    .header-section {*/
/*      margin-top: 5rem;*/
/*    }*/
/*  }*/