 * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --orange: #a33131;
            --blue: #a33131;
            --cream: #F9F6F1;
            --dark: #2B1810;
            --gray: #F5F5F5;
            --text: #fff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ── HEADER ── */
        header {
            background: white;
            padding: 16px 0;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        a.logo img {
    width: 120px;
}

        nav { display: flex; justify-content: space-between; align-items: center; }

        .logo {
            display: flex; align-items: center; gap: 8px;
            font-family: 'Playfair Display', serif;
            font-size: 26px; font-weight: 600;
            color: var(--text); text-decoration: none; z-index: 1100;
        }
        /* .logo::before {
            content: ''; width: 11px; height: 11px;
            background: var(--orange); border-radius: 2px; flex-shrink: 0;
        } */

        .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0px;
}
        .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 19px;
    transition: color 0.2s;
    font-weight: 400;
}
        .nav-links a:hover { color: var(--orange); }

        .cta-btn {
            background: var(--blue); color: var(--text) !important;
            padding: 11px 22px; border-radius: 6px;
            font-weight: 600 !important; font-size: 15px !important;
            display: inline-flex !important; align-items: center; gap: 6px;
            transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
        }
        .cta-btn::after { content: '→'; }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(125,211,247,.4); }

        /* Hamburger */
        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 4px; z-index: 1100;
            background: none; border: none;
        }
       .hamburger span {
    display: block;
    width: 39px;
    height: 5px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s;
}
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile overlay */
        .mobile-nav {
            display: none; position: fixed; inset: 0;
            background: white; z-index: 1050;
            flex-direction: column; justify-content: center;
            align-items: center; gap: 36px;
            opacity: 0; transition: opacity 0.3s;
        }
        .mobile-nav.open { opacity: 1; }
        .mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
        .mobile-nav a { text-decoration: none; color: #000; font-size: 22px; font-weight: 500; transition: color 0.2s; }
        .mobile-nav a:hover { color: var(--orange); }
        .mobile-nav .cta-btn { font-size: 15px !important; padding: 14px 38px !important; }

        /* ── HERO ── */
        .hero { background: var(--cream); padding: 72px 0; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 54px; line-height: 1.15;
            margin-bottom: 20px; font-weight: 400;
        }
        .hero-text h1 em { font-style: italic; font-weight: 500; background: #EBD8B9; }
        .hero-text p { font-size: 15px; color: #555; margin-bottom: 30px; line-height: 1.75; }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn-orange {
            background: var(--orange); color: white;
            padding: 13px 28px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            letter-spacing: .3px; white-space: nowrap;
            transition: transform .2s, box-shadow .2s;
        }
        .btn-orange:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,107,74,.35); color: #fff !important; }

        .btn-white {
    background: white;
    color: #000;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #ddd;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }

        .hero-img { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
        .hero-img img { width: 100%; height: auto; display: block; }

        /* ── TRUSTED BY ── */
        .trusted { background: white; padding: 30px 0; border-bottom: 1px solid #eee; }
        .trusted-row {
    display: flex;
    align-items: center;
    gap: 32px;
    /* flex-wrap: wrap; */
}
        .trusted-label {
    font-size: 43px;
    color: #000;
    white-space: nowrap;
    font-weight: 400;
}
        .trusted-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
        .trusted-logos span {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: .5px;
}

        /* ── TESTIMONIALS ── */
        .testimonials { background: var(--cream); padding: 72px 0; }
        .sec-title {
            text-align: center; font-family: 'Playfair Display', serif;
            font-size: 54px; margin-bottom: 48px; font-weight: 600; line-height: 1.25;
        }
        .sec-title em { font-style: italic; font-weight: 500; }

        .testi-grid {
    display: flex !important;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px;
}
        .testi-card {
            background: white; padding: 36px 30px;
            border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.05);
            transition: transform .3s, box-shadow .3s;
        }
        .testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
        .testi-card > p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; color: #444; }
        .testi-author { display: flex; align-items: center; gap: 12px; }
        .a-icon {
            width: 40px; height: 40px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; font-weight: 700; flex-shrink: 0;
        }
        .ic-blue { background: #1877f2; color: white; }
        .ic-yellow { background: #fbbc04; color: white; }
        .ic-purple { background: #4f46e5; color: white; }
        .a-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; letter-spacing: .3px; }
        .a-info p { font-size: 12px; color: #777; margin: 0; }

        .arrows { display: flex; justify-content: space-between; margin-top: 28px; }
        .arrow {
            width: 40px; height: 40px; background: white;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1);
            font-size: 15px; transition: transform .2s, box-shadow .2s; user-select: none;
        }
        .arrow:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

        /* ── WHY PLENTY ── */
        .why { background: white; padding: 72px 0; }
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
        .v-card {
            background: var(--gray); padding: 36px 28px;
            border-radius: 12px; transition: transform .3s, box-shadow .3s;
        }
        .v-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
        .v-icon { width: 72px; height: 56px; background: var(--orange); border-radius: 8px; margin-bottom: 22px; opacity: .85; }
        .v-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 14px; line-height: 1.4; }
        .v-card p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 22px; }
        .v-stat {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 11px; color: #888; text-transform: uppercase;
            letter-spacing: .6px; line-height: 1.5;
        }
        .v-stat::before {
            content: ''; width: 28px; height: 2px;
            background: var(--orange); margin-top: 5px; flex-shrink: 0;
        }

        .stats-row {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
            text-align: center; padding-top: 40px; border-top: 1px solid #eee;
        }
        .stat-item h2 { font-family: 'Playfair Display', serif; font-size: 46px; margin-bottom: 8px; font-weight: 500; }
        .stat-item p { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 1px; }

        /* ── PLACEMENTS ── */
        .placements { background: var(--cream); padding: 72px 0; }
        .sec-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; gap: 16px; }
        .sec-hdr h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 400; }
        .view-all {
            background: var(--blue); color: var(--text);
            padding: 11px 22px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 12px;
            white-space: nowrap; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .view-all:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(125,211,247,.35); }

        .place-grid { display: flex !important; gap: 24px; }
        .place-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        .place-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
        .place-hdr { padding: 24px; }
        .place-hdr > p { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; font-weight: 500; }
        .place-co { display: flex; align-items: center; gap: 14px; }
        .co-logo {
            width: 56px; height: 56px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 800; font-size: 16px; flex-shrink: 0;
        }
        .co-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .co-info p { font-size: 13px; color: #666; line-height: 1.5; }

        /* ── TEAM ── */
        .team { background: white; padding: 72px 0; }
        .team-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 50px; }
        .team-head h2 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 400; line-height: 1.25; }
        blockquote {
            font-size: 15px; line-height: 1.75; color: #555;
            padding-left: 18px; border-left: 3px solid var(--orange);
        }
        cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: #999; }

        .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
        .team-card {
            background: var(--gray); border-radius: 12px; overflow: hidden;
            transition: transform .3s, box-shadow .3s;
        }
        .team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
        .t-photo { width: 100%; aspect-ratio: 3/4; position: relative; }
        .t-photo.p1 { background: linear-gradient(160deg,#2c3e50,#4a6274); }
        .t-photo.p2 { background: linear-gradient(160deg,#1a6fa0,#3498db); }
        .t-photo.p3 { background: linear-gradient(160deg,#34495e,#5d6d7e); }
        .li-icon {
            position: absolute; top: 14px; right: 14px;
            width: 30px; height: 30px; background: rgba(255,255,255,.92);
            border-radius: 6px; display: flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 700; color: #0077b5;
        }
        .t-info { padding: 22px 20px; }
        .t-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
        .t-role { font-size: 11px; text-transform: uppercase; color: #999; letter-spacing: .7px; margin-bottom: 10px; font-weight: 500; }
        .t-info p { font-size: 13px; color: #666; line-height: 1.6; }

        .team-btn { text-align: center; }
        .team-btn a {
            background: var(--blue); color: var(--text);
            padding: 13px 34px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            display: inline-flex; align-items: center; gap: 8px; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .team-btn a::after { content: '→'; }
        .team-btn a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(125,211,247,.35); }

        /* ── CTA ── */
        .cta-sec { background: var(--cream); padding: 80px 0; text-align: center; }
        .cta-inner { max-width: 640px; margin: 0 auto; }
        .cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 18px; font-weight: 400; line-height: 1.25; }
        .cta-inner p { font-size: 15px; color: #666; margin-bottom: 30px; line-height: 1.75; }
        .cta-inner a {
            background: var(--orange); color: white;
            padding: 14px 34px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            display: inline-flex; align-items: center; gap: 8px; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .cta-inner a::after { content: '→'; }
        .cta-inner a:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,107,74,.35); }

        /* ── FOOTER ── */
        footer { background: var(--dark); color: white; padding: 56px 0 28px; }
        .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
        .foot-logo {
            font-family: 'Playfair Display', serif; font-size: 30px;
            margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
        }
        /* .foot-logo::before { content: ''; width: 11px; height: 11px; background: var(--orange); border-radius: 2px; flex-shrink: 0; } */
        .foot-tag { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.65; }
        .foot-tag a { color: rgba(255,255,255,.7); text-decoration: none; }
       .foot-col h4 {
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
}
        .foot-col ul { list-style: none; }
        .foot-col ul li { margin-bottom: 10px; }
        .foot-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
        .foot-col a:hover { color: white; }
        .c-info { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
        .foot-bot {
            padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px;
        }

        /* ═══════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════ */

        /* Tablet 1024 */
        @media (max-width:1024px) {
            .hero-text h1 { font-size: 44px; }
            .sec-title, .sec-hdr h2, .team-head h2, .cta-inner h2 { font-size: 36px; }
            .stat-item h2 { font-size: 40px; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
        }

        /* Tablet portrait 900 */
        @media (max-width:900px) {
            .nav-links { gap: 20px; }
            .team-top { grid-template-columns: 1fr; gap: 28px; }
            .team-grid { grid-template-columns: 1fr 1fr; }
        }

        /* Mobile 768 */
        @media (max-width:768px) {
            /* Nav */
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .mobile-nav { display: flex; }
            .mobile-nav:not(.open) { display: none; }

            /* Hero */
            .hero { padding: 48px 0; }
            .hero-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero-img { order: -1; }
            .hero-text h1 { font-size: 34px; }
            .hero-text p { font-size: 14px; }
            .hero-btns { flex-direction: column; }
            .btn-orange, .btn-white { text-align: center; justify-content: center; padding: 14px 20px; font-size: 14px; width: 100%; }

            /* Trusted */
            .trusted { padding: 22px 0; }
            .trusted-row { flex-direction: column; align-items: flex-start; gap: 12px; }
            .trusted-logos { gap: 18px; overflow-x: auto; padding-bottom: 4px; width: 100%; flex-wrap: nowrap; }
            .trusted-logos span { flex-shrink: 0; font-size: 17px; }

            /* Testimonials */
            .testimonials { padding: 52px 0; }
            .sec-title { font-size: 28px; margin-bottom: 32px; }
            .testi-grid { grid-template-columns: 1fr; gap: 20px; }

            /* Why */
            .why { padding: 52px 0; }
            .value-grid { grid-template-columns: 1fr; gap: 20px; }
            .stats-row { grid-template-columns: 1fr; gap: 28px; padding-top: 28px; }
            .stat-item h2 { font-size: 40px; }

            /* Placements */
            .placements { padding: 52px 55px; }
            .sec-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }
            .sec-hdr h2 { font-size: 28px; }
            .view-all { width: 100%; text-align: center; padding: 12px 20px; }
            .place-grid { grid-template-columns: 1fr; gap: 20px; }

            /* Team */
            .team { padding: 52px 0; }
            .team-top { grid-template-columns: 1fr; gap: 26px; margin-bottom: 36px; }
            .team-head h2 { font-size: 32px; }
            .team-grid { grid-template-columns: 1fr; gap: 20px; }
            .t-photo { aspect-ratio: 4/3; }

            /* CTA */
            .cta-sec { padding: 56px 0; }
            .cta-inner h2 { font-size: 28px; }
            .cta-inner p { font-size: 14px; }
            .cta-inner a { width: 100%; justify-content: center; padding: 15px 20px; font-size: 14px; }

            /* Footer */
            footer { padding: 44px 0 24px; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .foot-bot { flex-direction: column; text-align: center; gap: 6px; }

            .container-md {
    margin: 0px 46px 0px 46px !important;
        }

        .trusted-label {
    font-size: 36px;
}


.testi-card {
    width: 298px;
}

.testimonials {
    
    padding: 80px 52px !important;
}


.place-grid {
    display: block !important;
   
}


.place-card {

    width: 400px;
}

    }

        /* Small 480 */
        @media (max-width:480px) {
            .container { padding: 0 16px; }
            .hero-text h1 { font-size: 28px; }
            .logo { font-size: 22px; }
            .sec-title { font-size: 24px; }
            .foot-grid { grid-template-columns: 1fr; gap: 26px; }
            .testi-card { padding: 24px 18px; }
            .v-card { padding: 26px 20px; }
        }



        .foot-col ul {
    margin: 0px;
}


.logo img {
    width: 132px;
}


.foot-logo img {
    width: 190px;
}


.owl-nav button {
    background: #000 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}

.owl-nav button:hover {
    background: #007bff !important;
}




.testi-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
}


.testimonials .container {
    max-width: 1200px;
}

.hero-text h1 {
    font-size: 70px !important;
    font-weight: 600 !important;
    line-height: 1.6em !important;
}


.container-md {
    margin: 0px 97px 0px 90px;
    border: solid 2px #000;
    padding: 20px;
}


em {
    background: #EBD8B9;
}




.testimonials {
    background: #f3f1ed;
    padding: 80px 0;
}



.sec-title em {
    font-style: italic;
    background: #e5d3b3;
    padding: 0 8px;
}

.testi-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.a-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

.ic-blue { background: #1f3c88; }
.ic-yellow { background: #e6a700; }
.ic-purple { background: #5b2c6f; }

.a-info h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.a-info p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
}

/* Arrows */
.arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.arrow {
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}



/* Owl Nav Position */
.testimonials .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
}

.testimonials {
    position: relative;
}

/* Arrow Button Style */
.testimonials .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    font-size: 20px !important;
    color: #000 !important;
    transition: 0.3s ease;
}

.testimonials .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Remove default outline */
.owl-nav button:focus {
    outline: none;
}


.placements .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    font-size: 20px !important;
    color: #000 !important;
    transition: 0.3s ease;
}

.placements .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Remove default outline */
.owl-nav button:focus {
    outline: none;
}


.placements .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
}

.placements {
    position: relative;
}


/* Parent li */
.menu-item-has-children {
    position: relative;
}

/* Hide submenu by default */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show on hover */
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.sub-menu li {
    padding: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.sub-menu li a:hover {
    background: #f3f3f3;
}



.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-submenu li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
}

.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 18px;
}









/* ========================================
   INSIGHTS PAGE CUSTOM STYLES
   Add this to your Astra Child Theme style.css
   ======================================== */

:root {
    --primary-orange: #FF6B4A;
    --accent-blue: #7DD3F7;
    --cream: #F9F6F1;
    --dark-brown: #2B1810;
    --text-dark: #1a1a1a;
    --text-gray: #666;
}

/* ========== INSIGHTS HERO ========== */
.insights-hero {
    background: var(--cream);
    padding: 80px 0 60px;
    text-align: center;
}

.insights-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.insights-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

/* ========== FEATURED POST ========== */
.featured-post-section {
    background: white;
    padding: 60px 0;
}

.featured-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.featured-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.featured-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.featured-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-title a:hover {
    color: var(--primary-orange);
}

.featured-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.featured-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.read-more-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--primary-orange);
}

/* ========== BLOG POSTS GRID ========== */
.blog-posts-section {
    background: white;
    padding: 40px 0 80px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-orange);
}

.blog-card-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: var(--primary-orange);
}

/* ========== LOAD MORE BUTTON ========== */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: var(--accent-blue);
    color: var(--text-dark);
    padding: 14px 40px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 211, 247, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== CTA SECTION ========== */
.insights-cta-section {
    background: var(--cream);
    padding: 60px 0;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.cta-contact-btn {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--text-dark);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 211, 247, 0.4);
    color: var(--text-dark);
}

/* ========== NO POSTS MESSAGE ========== */
.no-posts {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    padding: 40px 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 991px) {
    .insights-title {
        font-size: 44px;
    }
    
    .featured-content {
        padding: 40px 30px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .insights-hero {
        padding: 50px 0 40px;
    }
    
    .insights-title {
        font-size: 36px;
    }
    
    .insights-subtitle {
        font-size: 16px;
    }
    
    .featured-post-section {
        padding: 40px 0;
    }
    
    .featured-image {
        min-height: 280px;
    }
    
    .featured-content {
        padding: 30px 24px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-excerpt {
        font-size: 15px;
    }
    
    .blog-posts-section {
        padding: 30px 0 50px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 17px;
    }
    
    .insights-cta-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        margin-bottom: 24px;
    }
    
    .cta-contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .insights-title {
        font-size: 32px;
    }
    
    .featured-title {
        font-size: 22px;
    }
    
    .load-more-btn {
        width: 100%;
    }
}
