/* EVENTS PAGE — specific styles only */

@font-face {
            font-family: 'Abusayed';
            src: url('../fonts/Codepotro Abu Sayed.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

/* ══════════  PAGE HERO  ══════════ */
        .page-hero {
            background: linear-gradient(135deg, var(--green-dk) 0%, #026C33 55%, #03873f 100%);
            padding: 80px 40px 72px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Decorative circles */
        .page-hero::after {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.07);
            pointer-events: none;
        }

        .hero-deco-ring {
            position: absolute;
            bottom: -120px;
            left: -60px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.05);
            pointer-events: none;
        }

        .hero-deco-ring2 {
            position: absolute;
            top: 30px;
            right: 280px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 1px solid rgba(243,27,29,0.25);
            pointer-events: none;
        }

        .page-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 40px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: color 0.2s;
        }

        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }

        .breadcrumb-sep {
            color: rgba(255,255,255,0.25);
            font-size: 11px;
        }

        .breadcrumb-cur {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            letter-spacing: 0.05em;
        }

        .page-hero-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .page-hero-label::before {
            content: '';
            width: 26px;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            display: block;
        }

        .page-hero h1 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(32px, 4.5vw, 54px);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .page-hero h1 .accent { color: rgba(255,255,255,0.45); }

        .page-hero-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            max-width: 540px;
            font-weight: 300;
        }

        .hero-stats-box {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 18px;
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-width: 200px;
            backdrop-filter: blur(8px);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-num {
            font-family: 'Tiro Bangla', serif;
            font-size: 36px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            display: block;
        }

        .hero-stat-num .red { color: var(--red); }

        .hero-stat-lbl {
            font-size: 11px;
            color: rgba(255,255,255,0.45);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-top: 4px;
            display: block;
        }

        .hero-stat-div {
            height: 1px;
            background: rgba(255,255,255,0.1);
        }

        /* ══════════  STRIP  ══════════ */
        .strip {
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--red), var(--green));
            border-radius: 2px;
        }

        /* ══════════  FILTER BAR  ══════════ */
        .filter-bar {
            background: #fff;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            padding: 20px 40px;
            position: sticky;
            top: 81px;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }

        .filter-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 12px;
            font-weight: 700;
            color: #888;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-right: 4px;
            flex-shrink: 0;
        }

        .filter-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            flex: 1;
        }

        .fpill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid rgba(2,108,51,0.18);
            background: #fff;
            color: #555;
            cursor: pointer;
            transition: all 0.22s;
            letter-spacing: 0.02em;
        }

        .fpill svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.2s; }
        .fpill:hover { border-color: var(--green); color: var(--green); }
        .fpill:hover svg { opacity: 1; }

        .fpill.active {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
            box-shadow: 0 4px 14px rgba(2,108,51,0.22);
        }

        .fpill.active svg { opacity: 1; filter: brightness(10); }

        .filter-right {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .view-toggle {
            display: flex;
            border: 1.5px solid rgba(2,108,51,0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .vt-btn {
            padding: 7px 11px;
            background: #fff;
            border: none;
            cursor: pointer;
            color: #999;
            transition: all 0.2s;
            display: flex;
            align-items: center;
        }

        .vt-btn.active { background: var(--green); color: #fff; }
        .vt-btn:not(:last-child) { border-right: 1.5px solid rgba(2,108,51,0.18); }

        /* ══════════  MAIN CONTENT  ══════════ */
        .main-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 56px 40px;
        }

        /* ══════════  FEATURED / UPCOMING  ══════════ */
        .sec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .sec-label::before {
            content: '';
            width: 26px;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            display: block;
        }

        .sec-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.15;
            margin-bottom: 36px;
        }

        /* ── Featured Event (Big Card) ── */
        .featured-card {
            border-radius: 22px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 420px;
            box-shadow: 0 8px 48px rgba(1,77,36,0.13);
            margin-bottom: 56px;
            border: 1px solid rgba(2,108,51,0.08);
        }

        .featured-img {
            position: relative;
            overflow: hidden;
        }

        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .featured-card:hover .featured-img img { transform: scale(1.04); }

        .featured-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 60%, rgba(1,77,36,0.08) 100%);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--red);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .featured-badge .pulse-dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: pulse 1.8s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.6); }
        }

        .featured-date-tag {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            color: #fff;
            border-radius: 10px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .fdt-day {
            font-family: 'Tiro Bangla', serif;
            font-size: 28px;
            font-weight: 900;
            line-height: 1;
            color: #fff;
        }

        .fdt-right { display: flex; flex-direction: column; }
        .fdt-month { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
        .fdt-year { font-size: 11px; color: rgba(255,255,255,0.4); }

        .featured-body {
            background: #fff;
            padding: 44px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-cat {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 14px;
        }

        .featured-cat-dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
        }

        .featured-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(20px, 2.2vw, 28px);
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.25;
            margin-bottom: 14px;
        }

        .featured-title-bn {
            font-family: 'Abusayed', serif;
            font-size: 19px;
            color: #888;
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .featured-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 28px;
            font-weight: 300;
        }

        .event-meta-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
        }

        .emeta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: #555;
        }

        .emeta-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--green-lt, #e8f5ee);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--green);
        }

        .emeta strong { color: #333; font-weight: 700; }

        .feat-btn-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--green);
            color: #fff;
            padding: 13px 26px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.25s;
            box-shadow: 0 6px 20px rgba(2,108,51,0.22);
        }

        .btn-primary:hover { background: #081a0c; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(2,108,51,0.3); }

        .btn-outline-green {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: transparent;
            color: var(--green);
            padding: 13px 26px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 2px solid var(--green);
            transition: all 0.25s;
        }

        .btn-outline-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

        /* ══════════  SECTION DIVIDER  ══════════ */
        .sec-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(2,108,51,0.15), transparent);
            margin: 56px 0;
        }

        /* ══════════  EVENT GRID  ══════════ */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .ev-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 2px 18px rgba(0,0,0,0.07);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .ev-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(2,108,51,0.13);
        }

        .ev-thumb-wrap { position: relative; flex-shrink: 0; }

        .ev-thumb {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .ev-card:hover .ev-thumb { transform: scale(1.04); }

        .ev-thumb-wrap { overflow: hidden; }

        .ev-cat {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--red);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 100px;
        }

        .ev-status {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 11px;
            border-radius: 100px;
        }

        .ev-status.upcoming { background: rgba(2,108,51,0.9); color: #fff; }
        .ev-status.past { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8); }
        .ev-status.open { background: rgba(243,27,29,0.9); color: #fff; }

        .ev-body {
            padding: 22px 22px 26px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .ev-date-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .ev-date-badge {
            background: var(--off);
            border-radius: 10px;
            padding: 8px 12px;
            text-align: center;
            border: 1px solid rgba(2,108,51,0.1);
            flex-shrink: 0;
        }

        .ev-date-badge .day {
            font-family: 'Tiro Bangla', serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1;
            display: block;
        }

        .ev-date-badge .monyear {
            font-size: 10px;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            display: block;
            margin-top: 2px;
        }

        .ev-date-info { flex: 1; }

        .ev-time {
            font-size: 12px;
            color: var(--green);
            font-weight: 600;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 3px;
        }

        .ev-loc {
            font-size: 12px;
            color: #888;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ev-title {
            font-family: 'Tiro Bangla', serif;
            font-size: 17px;
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.35;
            margin-bottom: 6px;
        }

        .ev-title-bn {
            font-family: 'Abusayed', serif;
            font-size: 14px;
            color: #aaa;
            margin-bottom: 10px;
        }

        .ev-desc {
            font-size: 13.5px;
            color: #666;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            margin-bottom: 18px;
        }

        .ev-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(0,0,0,0.06);
            padding-top: 14px;
            margin-top: auto;
        }

        .ev-attendees {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ev-att-dots {
            display: flex;
        }

        .att-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--green);
            border: 2px solid #fff;
            margin-left: -6px;
            font-size: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
        }

        .att-dot:first-child { margin-left: 0; }

        .att-dot.more {
            background: var(--off);
            color: #888;
            border-color: #ddd;
            font-size: 9px;
        }

        .ev-att-count {
            font-size: 12px;
            color: #888;
        }

        .ev-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--red);
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: gap 0.2s;
        }

        .ev-link:hover { gap: 9px; }

        /* ══════════  CALENDAR VIEW  ══════════ */
        .cal-banner {
            background: linear-gradient(120deg, var(--green-dk) 0%, #026C33 100%);
            border-radius: 20px;
            padding: 40px 44px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 32px;
            margin-bottom: 56px;
        }

        .cal-banner-left h3 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(20px, 2.2vw, 28px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 8px;
        }

        .cal-banner-left p {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
            max-width: 480px;
        }

        .cal-months {
            display: flex;
            gap: 8px;
        }

        .cal-month-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 12px 18px;
            border-radius: 12px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.2s;
        }

        .cal-month-pill:hover, .cal-month-pill.active {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.25);
        }

        .cal-month-pill .cmp-name {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .cal-month-pill .cmp-count {
            font-family: 'Tiro Bangla', serif;
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }

        .cal-month-pill.active .cmp-name { color: var(--red); }
        .cal-month-pill.active .cmp-count { color: #fff; }

        /* ══════════  CATEGORIES SECTION  ══════════ */
        .cat-sec {
            background: var(--off);
            padding: 72px 40px;
        }

        .cat-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .cat-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px 24px;
            border: 1px solid rgba(2,108,51,0.09);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .cat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .cat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(2,108,51,0.12);
        }

        .cat-card:hover::before { transform: scaleX(1); }

        .cat-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(2,108,51,0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--green);
        }

        .cat-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--green-dk);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .cat-card-desc {
            font-size: 13px;
            color: #888;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .cat-card-count {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 700;
            color: var(--red);
            letter-spacing: 0.04em;
        }

        /* ══════════  PAST HIGHLIGHTS  ══════════ */
        .past-sec {
            padding: 72px 40px;
        }

        .past-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .past-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 10px;
        }

        .past-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 160px 1fr;
            transition: all 0.3s;
        }

        .past-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(2,108,51,0.12);
        }

        .past-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .past-card:hover .past-img { transform: scale(1.05); }
        .past-img-wrap { overflow: hidden; }

        .past-body {
            padding: 22px;
        }

        .past-year-badge {
            display: inline-block;
            background: rgba(2,108,51,0.08);
            color: var(--green);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 10px;
        }

        .past-title {
            font-family: 'Tiro Bangla', serif;
            font-size: 16px;
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.35;
            margin-bottom: 8px;
        }

        .past-desc {
            font-size: 13px;
            color: #777;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .past-stat-row {
            display: flex;
            gap: 14px;
        }

        .past-stat {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #999;
        }

        .past-stat strong { color: var(--green-dk); font-weight: 700; }

        /* ══════════  CTA SECTION  ══════════ */
        .cta-sec {
            background: var(--off);
            padding: 72px 40px;
            border-top: 1px solid rgba(2,108,51,0.08);
        }

        .cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--green-dk) 0%, #026C33 100%);
            border-radius: 24px;
            padding: 56px 64px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 48px;
            position: relative;
            overflow: hidden;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 220px; height: 220px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.07);
            pointer-events: none;
        }

        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -40px;
            width: 180px; height: 180px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.05);
            pointer-events: none;
        }

        .cta-text { position: relative; z-index: 1; }

        .cta-badge {
            display: inline-block;
            background: var(--red);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .cta-h {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(22px, 2.8vw, 34px);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .cta-p {
            font-size: 15px;
            color: rgba(255,255,255,0.58);
            line-height: 1.75;
            max-width: 460px;
            font-weight: 300;
        }

        .cta-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: #fff;
            color: var(--green-dk);
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }

        .btn-ghost-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: transparent;
            color: rgba(255,255,255,0.7);
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 1.5px solid rgba(255,255,255,0.22);
            transition: all 0.25s;
            white-space: nowrap;
        }

        .btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-2px); }

        /* ══════════  NEWSLETTER STRIP  ══════════ */
        .news-strip {
            background: #fff;
            border-top: 1px solid rgba(0,0,0,0.06);
            padding: 28px 40px;
        }

        .news-strip-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .news-strip-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .news-strip-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(2,108,51,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            flex-shrink: 0;
        }

        .news-strip-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--green-dk);
            margin-bottom: 2px;
        }

        .news-strip-sub {
            font-size: 12.5px;
            color: #888;
        }

        .news-form {
            display: flex;
            gap: 0;
            border: 1.5px solid rgba(2,108,51,0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .news-input {
            padding: 11px 18px;
            font-size: 14px;
            border: none;
            outline: none;
            font-family: 'Tiro Bangla', serif;
            color: #333;
            min-width: 240px;
        }

        .news-btn {
            padding: 11px 22px;
            background: var(--green);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            font-family: 'Tiro Bangla', serif;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .news-btn:hover { background: #081a0c; }
