        :root {
            --deep-olive: #41431B;
            --muted-sage: #AEB784;
            --soft-cream: #F4F0E4;
            --white: #ffffff;
            --black: #1a1a1a;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Fira Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--soft-cream);
            color: var(--deep-olive);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, .fira-bold { font-weight: 700; }
        .fira-semibold { font-weight: 600; }
        .fira-medium { font-weight: 500; }
        .fira-regular { font-weight: 400; }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        /* --- Header --- */
        header {
            background-color: var(--soft-cream);
            height: 85px;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            transition: var(--transition);
        }

        header.scrolled {
            height: 70px;
            box-shadow: 0 4px 20px rgba(65, 67, 27, 0.1);
            border-bottom: 1px solid rgba(174, 183, 132, 0.3);
        }

        .logo-box img {
            max-height: 190px;
            max-width: 190px;
            object-fit: contain; /* Rule: logo scales inside fixed height */
        }

        nav {
            display: flex;
            gap: 25px;
        }

        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--muted-sage);
            transition: var(--transition);
        }

        nav a:hover:after, nav a.active:after { width: 100%; }
        nav a:hover { color: var(--muted-sage); }

        .header-btns {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn {
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-olive { background: var(--deep-olive); color: var(--soft-cream); }
        .btn-sage { background: var(--muted-sage); color: var(--deep-olive); }
        .btn-outline { border: 2px solid white; color: wheat; background: transparent; }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(65, 67, 27, 0.15);
        }

        /* --- Page Layout --- */
        .page {
            display: none;
            padding-top: 85px;
            min-height: 100vh;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* --- Hero Section --- */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 30px;
            padding: 60px 5%;
            align-items: center;
            background: var(--soft-cream);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-accent {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: var(--muted-sage);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
        }

        .hero-left { z-index: 1; }
        .hero-left h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; color: var(--deep-olive); }
        .hero-left p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.8; }

        .hero-center {
            height: 550px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            position: relative;
        }

        .hero-center img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomSlow 20s infinite alternate;
        }

        @keyframes zoomSlow { from { transform: scale(1); } to { transform: scale(1.1); } }

        .hero-right { z-index: 1; }
        .quote-form-card {
            background: var(--muted-sage);
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .quote-form-card h3 { margin-bottom: 25px; text-align: center; }
        .input-group { margin-bottom: 15px; }
        .input-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; }
        .input-group input {
            width: 100%;
            padding: 14px 20px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            background: var(--soft-cream);
            font-size: 0.9rem;
            outline: none;
        }

        /* --- Quick Coverage Section --- */
        .section-padding { padding: 100px 5%; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.8rem; margin-bottom: 15px; }
        .section-title p { max-width: 650px; margin: 0 auto; opacity: 0.7; }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .coverage-card {
            background: var(--muted-sage);
            padding: 45px 30px;
            border-radius: 25px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .coverage-card:hover {
            transform: translateY(-12px);
            background: var(--deep-olive);
            color: var(--soft-cream);
            box-shadow: 0 20px 40px rgba(65, 67, 27, 0.2);
        }

        .coverage-card i { margin-bottom: 20px; display: inline-block; }
        .coverage-card h4 { margin-bottom: 15px; font-size: 1.3rem; }
        .coverage-card p { font-size: 0.9rem; opacity: 0.9; }

        /* --- Why Choose Us (Diagonal Split) --- */
        .split-section {
            display: flex;
            min-height: 650px;
            margin: 100px 0;
        }

        .split-left {
            flex: 1;
            background: var(--deep-olive);
            color: var(--soft-cream);
            padding: 100px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            z-index: 2;
        }

        .split-left h2 { font-size: 3rem; margin-bottom: 30px; line-height: 1.2; }
        .split-left p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

        .split-right {
            flex: 1;
            padding: 100px 8% 100px 2%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
            background: var(--soft-cream);
            z-index: 1;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: var(--transition);
            border: 1px solid var(--muted-sage);
        }

        .feature-card:hover {
            transform: translateX(15px);
            border-color: var(--deep-olive);
        }

        .feature-card .icon-box {
            width: 60px;
            height: 60px;
            background: var(--muted-sage);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-olive);
        }

        /* --- Timeline Process --- */
        .timeline-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 60px 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            top: 100px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: var(--muted-sage);
            z-index: 1;
        }

        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-num {
            width: 80px;
            height: 80px;
            background: var(--deep-olive);
            color: var(--soft-cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 25px;
            border: 8px solid var(--soft-cream);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* --- Testimonials --- */
        .testimonials {
            background: var(--muted-sage);
            padding: 100px 5%;
        }

        .testimonial-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0 50px;
            scrollbar-width: none;
        }

        .testimonial-card {
            min-width: 400px;
            background: var(--white);
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        .user-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .user-meta img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* --- Pricing Plans --- */
        .pricing-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .plan-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 35px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .plan-card.highlight {
            border-color: var(--muted-sage);
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(65, 67, 27, 0.1);
            position: relative;
        }

        .plan-card.highlight:before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--deep-olive);
            color: var(--soft-cream);
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 30px 0;
            color: var(--deep-olive);
        }

        .plan-price span { font-size: 1rem; opacity: 0.6; }

        .plan-features {
            margin: 30px 0;
            text-align: left;
            flex-grow: 1;
        }

        .plan-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        /* --- Accordion FAQ --- */
        .faq-accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 15px;
            overflow: hidden;
            background: var(--white);
            border: 1px solid rgba(174, 183, 132, 0.3);
        }

        .faq-header {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-header:hover { background: rgba(174, 183, 132, 0.1); }

        .faq-content {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease-in-out;
            opacity: 0;
        }

        .faq-item.active .faq-content {
            max-height: 300px;
            padding-bottom: 30px;
            opacity: 1;
        }

        .faq-item.active .faq-header i { transform: rotate(180deg); }

        /* --- Newsletter --- */
        .newsletter-section {
            background: var(--deep-olive);
            color: var(--soft-cream);
            padding: 80px 5%;
            margin: 100px 5%;
            border-radius: 40px;
            text-align: center;
        }

        .newsletter-inner { max-width: 600px; margin: 0 auto; }
        .newsletter-inner h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--soft-cream); }
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: none;
            outline: none;
        }

        /* --- Footer --- */
        footer {
            background: var(--deep-olive);
            color: var(--soft-cream);
            padding: 100px 5% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-brand p { opacity: 0.7; margin: 25px 0; max-width: 300px; }
        .footer-col h4 { color: var(--muted-sage); margin-bottom: 30px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { opacity: 0.7; font-size: 0.95rem; cursor: pointer; }
        .footer-col a:hover { opacity: 1; color: var(--muted-sage); padding-left: 5px; }

        .social-links { display: flex; gap: 15px; }
        .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(244, 240, 228, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .social-btn:hover { background: var(--muted-sage); color: var(--deep-olive); transform: translateY(-3px); }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(244, 240, 228, 0.1);
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.5;
        }

        /* --- Modal (Auth & QuickView) --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-card {
            background: var(--soft-cream);
            width: 100%;
            max-width: 500px;
            border-radius: 35px;
            padding: 50px;
            position: relative;
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            cursor: pointer;
            color: var(--deep-olive);
            opacity: 0.5;
            transition: var(--transition);
        }

        .close-modal:hover { opacity: 1; }

        .auth-toggle {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            background: rgba(174, 183, 132, 0.2);
            padding: 5px;
            border-radius: 50px;
        }

        .auth-tab {
            flex: 1;
            padding: 10px;
            text-align: center;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .auth-tab.active { background: var(--deep-olive); color: var(--soft-cream); }

        /* Responsive */
        @media (max-width: 1100px) {
            .hero { grid-template-columns: 1fr; text-align: center; }
            .hero-center { height: 400px; order: -1; }
            .coverage-grid { grid-template-columns: 1fr 1fr; }
            .pricing-table { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1.5fr; }
        }

        @media (max-width: 768px) {
            .split-section { flex-direction: column; }
            .split-left { clip-path: none; padding: 60px 5%; }
            .coverage-grid { grid-template-columns: 1fr; }
            .timeline-container { flex-direction: column; gap: 40px; }
            .timeline-line { display: none; }
        }

.newsletter-form{
display:flex;
gap:10px;
margin-top:15px;
}

.newsletter-form input{
flex:1;
padding:12px;
border-radius:8px;
border:1px solid #ddd;
}

.unsubscribe-box{
margin-top:20px;
}

/* Mobile menu button */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* Tablet */
@media (max-width:1000px){

nav{
position:absolute;
top:85px;
left:0;
width:100%;
background:var(--soft-cream);
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
display:none;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.header-btns{
display:none;
}

.logo-box img{
max-height:120px;
}

}

