 /* ============================================================
       DESIGN TOKENS — change colors / sizes here in one place
       ============================================================ */
    :root {
      --bg:        #0a0a0a;   /* near-black background */
      --card:      #111111;   /* slightly lighter card background */
      --border:    #222222;   /* subtle border color */
      --red:       #e11d48;   /* primary accent (red) */
      --red-glow:  rgba(225, 29, 72, 0.3);
      --white:     #ffffff;
      --gray:      #888888;   /* muted text */
      --font:      'Inter', sans-serif;
      --radius:    1rem;      /* default border-radius */
      --max-w:     1200px;    /* max content width */
      --nav-h:     72px;      /* navbar height */
    }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }

    /* ============================================================
       SCROLL ANIMATION HELPERS
       Elements start invisible. JS adds .visible when in view.
       ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delay utilities (add these classes for cascade effect) */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       LAYOUT UTILITIES
       ============================================================ */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section { padding: 6rem 0; }

    .section-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
    }
    .section-label::before,
    .section-label::after {
      content: '';
      display: block;
      width: 2.5rem;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
    }
    .section-label--left::after { display: none; }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .section-sub {
      font-size: 1.125rem;
      color: var(--gray);
      max-width: 42ch;
    }

    .text-red  { color: var(--red); }
    .text-gray { color: var(--gray); }

    /* ============================================================
       BUTTONS
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0 2rem;
      height: 3.25rem;
      border-radius: 9999px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--red);
      color: #fff;
      box-shadow: 0 8px 24px var(--red-glow);
    }
    .btn-primary:hover { box-shadow: 0 12px 32px var(--red-glow); }

    .btn-outline {
      background: rgba(255,255,255,0.07);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.14); }

    .btn-full {
      width: 100%;
      justify-content: center;
      border-radius: var(--radius);
      height: 3.5rem;
    }

    /* ============================================================
       NAVBAR
       ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 100;
      transition: background 0.3s, border-color 0.3s;
    }

    /* Scrolled state — JS adds class .scrolled */
    #navbar.scrolled {
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-size: 1.3rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .nav-logo span { color: var(--red); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }

    /* Mobile hamburger */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
      color: var(--white);
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: currentColor;
      margin: 5px 0;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    /* Mobile menu */
    #mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      z-index: 99;
      flex-direction: column;
      gap: 1rem;
    }
    #mobile-menu.open { display: flex; }
    #mobile-menu a {
      font-size: 1.1rem;
      font-weight: 600;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
    }
    #mobile-menu .btn { margin-top: 0.5rem; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
    }

    /* ============================================================
       HERO
       ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      align-items: center;
      padding-top: var(--nav-h);
      overflow: hidden;
      padding-bottom: 0rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    /* Cinematic overlays */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom,  rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.95) 100%),
        linear-gradient(to right,   rgba(10,10,10,1)   0%, transparent 60%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 5rem 0 6rem;
    }

    .hero-badge {
      display: inline-block;
      padding: 0.25rem 0.875rem;
      border-radius: 9999px;
      border: 1px solid rgba(225,29,72,0.4);
      background: rgba(225,29,72,0.15);
      color: var(--red);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(3.5rem, 12vw, 8rem);
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }
    .hero-title .red { color: var(--red); }

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      color: var(--gray);
      max-width: 38ch;
      margin-bottom: 2.5rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* Hero stats row */
    .hero-stats {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
    }
    .hero-stat-value {
      font-size: 2rem;
      font-weight: 900;
    }
    .hero-stat-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.1rem;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 0.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      z-index: 1;
      animation: fadeIn 1.5s ease 1.5s both;
    }
    .scroll-indicator span {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .scroll-line {
      width: 1px;
      height: 3rem;
      background: linear-gradient(to bottom, var(--red), transparent);
      animation: pulse-down 1.5s ease-in-out infinite;
    }
    @keyframes pulse-down {
      0%, 100% { transform: scaleY(0); transform-origin: top; }
      50%       { transform: scaleY(1); transform-origin: top; }
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* ============================================================
       ABOUT
       ============================================================ */
    #about { background: var(--bg);padding-top: 1rem; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    }

    .about-img-wrap {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      aspect-ratio: 3/4;
    }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    /* Fade bottom of image into background */
    .about-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, var(--bg), transparent);
    }

    /* Floating quote card */
    .about-quote {
      position: absolute;
      bottom: -2.5rem;
      right: -2.5rem;
      width: 220px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem;
      box-shadow: 0 16px 48px rgba(0,0,0,0.5);
      z-index: 2;
    }
    .about-quote-stars { display: flex; gap: 0.25rem; color: var(--red); margin-bottom: 0.5rem; }
    .about-quote p { font-size: 0.8rem; line-height: 1.5; font-style: italic; }

    @media (max-width: 900px) { .about-quote { display: none; } }

    .about-text p + p { margin-top: 1.25rem; }
    .about-text strong { color: var(--white); }

    /* Value cards */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .value-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      transition: border-color 0.2s;
    }
    .value-card:hover { border-color: rgba(225,29,72,0.4); }
    .value-icon {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
    }
    .value-card h4 { font-size: 0.9rem; font-weight: 700; }

    @media (max-width: 500px) {
      .values-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       SOCIAL MEDIA
       ============================================================ */
    #social { background: var(--card); border-top: 1px solid var(--border); }

    .social-header { text-align: center; margin-bottom: 3.5rem; }
    .social-header .section-label { justify-content: center; }
    .social-header .section-sub { margin: 0 auto; }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
    @media (max-width: 900px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .social-grid { grid-template-columns: 1fr; } }

    .social-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      text-decoration: none;
      color: var(--white);
    }
    .social-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.15);
      box-shadow: 0 20px 48px rgba(0,0,0,0.4);
    }

    /* Colored glow on hover via JS data-color */
    .social-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 1.25rem;
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
      background: radial-gradient(circle at 50% 0%, var(--platform-color, var(--red)), transparent 70%);
    }
    .social-card:hover::before { opacity: 0.12; }

    /* Colored bottom bar on hover */
    .social-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      opacity: 0;
      transition: opacity 0.3s;
      background: linear-gradient(to right, transparent, var(--platform-color, var(--red)), transparent);
    }
    .social-card:hover::after { opacity: 1; }

    .social-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .platform-icon {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .platform-icon svg { width: 1.75rem; height: 1.75rem; fill: currentColor; }
    .external-arrow svg { width: 1.1rem; height: 1.1rem; color: var(--gray); transition: transform 0.2s, color 0.2s; }
    .social-card:hover .external-arrow svg { transform: translate(3px,-3px); color: var(--white); }

    .platform-name {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .platform-handle { font-size: 0.875rem; font-weight: 600; margin-top: 0.15rem; }

    .platform-count { font-size: 2.5rem; font-weight: 900; line-height: 1; }
    .platform-stat-label {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray);
    }

    .platform-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; flex: 1; }

    .platform-growth {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* Combined reach banner */
    .reach-banner {
      margin-top: 3rem;
      padding: 2.5rem;
      border-radius: 1.25rem;
      border: 1px solid rgba(225,29,72,0.2);
      background: rgba(225,29,72,0.05);
      text-align: center;
    }
    .reach-banner .label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 0.5rem;
    }
    .reach-banner .big { font-size: clamp(3rem, 8vw, 4rem); font-weight: 900; margin-bottom: 0.75rem; }
    .reach-banner .note { font-size: 0.95rem; color: var(--gray); max-width: 42ch; margin: 0 auto; }

    /* ============================================================
       FEATURED VIDEO
       ============================================================ */
    #video { background: var(--bg); }

    .video-header { text-align: center; margin-bottom: 3.5rem; }
    .video-header .section-label { justify-content: center; }

    .video-wrap {
      max-width: 900px;
      margin: 0 auto;
      aspect-ratio: 16/9;
      border-radius: 1.5rem;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
      cursor: pointer;
    }

    .video-thumb {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: opacity 0.4s;
    }

    /* Dark overlay on top of thumb */
    .video-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,0.55);
      transition: background 0.3s;
    }
    .video-wrap:hover .video-overlay { background: rgba(10,10,10,0.45); }

    /* Play button */
    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 5rem; height: 5rem;
      border-radius: 50%;
      background: rgba(225,29,72,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 0 var(--red-glow);
      animation: pulse-ring 2s ease-in-out infinite;
      transition: transform 0.3s;
    }
    .video-wrap:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
    .play-btn svg { width: 2rem; height: 2rem; fill: #fff; margin-left: 0.25rem; }

    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0   var(--red-glow); }
      70%  { box-shadow: 0 0 0 18px rgba(225,29,72,0); }
      100% { box-shadow: 0 0 0 0   rgba(225,29,72,0); }
    }

    /* Caption bar at bottom of video */
    .video-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.5rem 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }
    .video-caption h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
    .video-caption p  { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

    /* Embedded iframe (hidden by default, shown when play clicked) */
    #video-iframe {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      border: none;
      display: none;
    }

    /* ============================================================
       GALLERY — Journeys Across Egypt
       ============================================================ */
    #gallery { background: var(--bg); border-top: 1px solid var(--border); }

    .gallery-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.75rem;
    }
    @media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 700px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 450px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

    .gallery-item {
      position: relative;
      border-radius: 0.875rem;
      overflow: hidden;
      aspect-ratio: 3/4;
      border: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
    }

    /* Actual image */
    .gallery-item img,
    .gallery-item .gallery-gradient {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      object-position: left;
    }
    .gallery-item:hover img,
    .gallery-item:hover .gallery-gradient { transform: scale(1.1); }

    /* CSS gradient placeholders for cities without photos */
    .gallery-gradient { position: absolute; inset: 0; }

    /* Always-visible label at bottom */
    .gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 0.75rem;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      font-size: 0.75rem;
      font-weight: 700;
      transition: opacity 0.25s;
    }

    /* Hover description overlay */
    .gallery-hover {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.78);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0.875rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-hover { opacity: 1; }
    .gallery-item:hover .gallery-label { opacity: 0; }

    .gallery-hover-loc {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.25rem;
    }
    .gallery-hover-desc {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
    }

    /* ============================================================
       IMPACT & ACHIEVEMENTS
       ============================================================ */
    #impact { background: var(--card); border-top: 1px solid var(--border); }

    .impact-header { text-align: center; margin-bottom: 3.5rem; }
    .impact-header .section-label { justify-content: center; }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 4rem;
    }
    @media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

    .stat-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      transition: border-color 0.2s;
    }
    .stat-card:hover { border-color: rgba(225,29,72,0.4); }
    .stat-icon {
      width: 3.25rem; height: 3.25rem;
      border-radius: 50%;
      background: rgba(225,29,72,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .stat-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--red); fill: none; }
    .stat-value { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.3rem; }
    .stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

    /* Community + chart row */
    .impact-detail {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      padding: 3rem;
    }
    @media (max-width: 768px) { .impact-detail { grid-template-columns: 1fr; padding: 2rem; } }

    .impact-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
    .impact-list li { display: flex; align-items: center; gap: 0.875rem; font-size: 0.95rem; font-weight: 500; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

    /* Bar chart */
    .chart-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .chart-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1.25rem;
    }
    .chart-reach-label { font-size: 0.8rem; color: var(--gray); }
    .chart-reach-value { font-size: 2rem; font-weight: 900; margin-top: 0.1rem; }
    .chart-growth { font-size: 0.875rem; font-weight: 700; color: #4ade80; display: flex; align-items: center; gap: 0.25rem; }
    .chart-bars {
      height: 10rem;
      display: flex;
      align-items: flex-end;
      gap: 0.4rem;
    }
    .bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: rgba(225,29,72,0.2);
      /* height set inline as % — animated by JS */
      transition: height 1s ease;
    }
    .bar.active { background: var(--red); }

    /* ============================================================
       SPONSORSHIP PACKAGES
       ============================================================ */
    #sponsors { background: var(--bg); }

    .sponsors-header { text-align: center; margin-bottom: 3.5rem; }
    .sponsors-header .section-label { justify-content: center; }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: center;
    }
    @media (max-width: 768px) { .packages-grid { grid-template-columns: 1fr; } }

    .pkg-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      height: 100%;
      transition: border-color 0.2s;
    }
    .pkg-card:hover { border-color: rgba(255,255,255,0.15); }

    /* Featured (middle) card is elevated */
    .pkg-card.featured {
      background: var(--card);
      border-color: var(--red);
      transform: translateY(-1rem);
      box-shadow: 0 24px 64px rgba(225,29,72,0.15);
    }
    @media (max-width: 768px) { .pkg-card.featured { transform: none; } }

    .pkg-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.75rem;
      border-radius: 9999px;
      align-self: center;
    }

    .pkg-title { font-size: 1.375rem; font-weight: 800; text-align: center; }
    .pkg-desc  { font-size: 0.875rem; color: var(--gray); text-align: center; line-height: 1.6; }

    .pkg-features { display: flex; flex-direction: column; gap: 0.875rem; flex: 1; }
    .pkg-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; }
    .check-icon { width: 1.1rem; height: 1.1rem; stroke: var(--red); fill: none; flex-shrink: 0; margin-top: 0.1rem; }

    /* ============================================================
       CONTACT
       ============================================================ */
    #contact { background: var(--card); border-top: 1px solid var(--border); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

    .contact-email-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .contact-icon-wrap {
      width: 3rem; height: 3rem;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon-wrap svg { width: 1.1rem; height: 1.1rem; stroke: var(--red); fill: none; }
    .contact-email-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
    .contact-email-value { font-size: 1.05rem; font-weight: 700; margin-top: 0.1rem; }

    .social-links-row { margin-top: 3rem; }
    .social-links-row p { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 1rem; }
    .social-icons { display: flex; gap: 0.75rem; }
    .social-icon-link {
      width: 2.75rem; height: 2.75rem;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, transform 0.2s, color 0.2s;
      color: var(--gray);
    }
    .social-icon-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
    .social-icon-link svg { width: 1rem; height: 1rem; fill: currentColor; }

    /* Contact form */
    .contact-form {
      background: var(--bg);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 1.5rem;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    /* Subtle red glow in top-right corner */
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 15rem; height: 15rem;
      background: radial-gradient(circle, rgba(225,29,72,0.06), transparent 70%);
      pointer-events: none;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-group label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .form-group input,
    .form-group textarea {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 0.875rem 1rem;
      color: var(--white);
      font-family: var(--font);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-group textarea { resize: vertical; min-height: 9rem; }

    /* Form groups stacked with gap */
    .form-stack { display: flex; flex-direction: column; gap: 1.25rem; }

    .form-error { font-size: 0.75rem; color: var(--red); margin-top: 0.2rem; display: none; }
    .form-group.invalid .form-error { display: block; }
    .form-group.invalid input,
    .form-group.invalid textarea { border-color: var(--red); }

    /* Success message */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }
    .form-success .checkmark { font-size: 3rem; margin-bottom: 0.75rem; }
    .form-success h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
    .form-success p { color: var(--gray); }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 2rem 0;
      text-align: center;
    }
    footer p { font-size: 0.85rem; color: var(--gray); }

    /* ============================================================
       RESPONSIVE TYPOGRAPHY HELPERS
       ============================================================ */
    @media (max-width: 768px) {
      .section { padding: 3rem 0; }
      .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
    }