    /* =====================================================
   HERO — HAPPY TO ASSIST
===================================================== */
    .hero-section {
      padding: 220px 5% 90px;
      background: var(--bg);
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: var(--accent);
      border-radius: 50%;
      filter: blur(160px);
      opacity: 0.06;
      pointer-events: none;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: var(--accent2);
      border-radius: 50%;
      filter: blur(130px);
      opacity: 0.05;
      pointer-events: none;
    }

    .hero-noise {
      position: absolute;
      inset: 0;
      opacity: 0.025;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    .hero-inner {
      width: min(1200px, 92%);
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      background: rgba(22, 163, 74, 0.08);
      border: 1px solid rgba(22, 163, 74, 0.2);
      padding: 8px 16px;
      border-radius: 999px;
    }

    .bolt-icon {
      width: 28px;
      height: 28px;
      background: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: white;
      flex-shrink: 0;
      animation: boltPulse 2s ease-in-out infinite;
    }

    @keyframes boltPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
      }

      50% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
      }
    }

    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 8vw, 7.5rem);
      line-height: .88;
      letter-spacing: .01em;
      color: var(--text);
      margin-bottom: 24px;
    }

    .hero-title em {
      font-family: 'Outfit', sans-serif;
      font-style: normal;
      background: var(--accent2);
      font-weight: 700;
      text-transform: uppercase;

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 36px;
      max-width: 540px;
    }

    .hero-info-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 36px;
    }

    .info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      border-color: rgba(22, 163, 74, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08);
    }

    .info-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(22, 163, 74, 0.1);
      border: 1px solid rgba(22, 163, 74, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    .info-card-text {
      min-width: 0;
      flex: 1;
    }

    .info-card-text h5 {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: 0.5px;
    }

    .info-card-text p {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.5;
      word-wrap: break-word;
      word-break: break-all;
    }

    .info-card-text a {
      color: var(--muted);
      transition: color 0.3s;
    }

    .info-card-text a:hover {
      color: var(--accent);
    }

    .hero-socials {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-socials span {
      font-size: 0.75rem;
      color: var(--muted2);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-right: 4px;
    }

    .hero-socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--muted);
      transition: all 0.3s;
    }

    .hero-socials a:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-frame {
      border-radius: var(--radius-lg);
      overflow: hidden;
      width: 80%;
      aspect-ratio: 1/1;
      position: relative;
      background: var(--card2);
      border: 1px solid var(--border);
    }

    .hero-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-image-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #052e16 0%, #14532d 40%, #16a34a 80%, #f97316 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .hero-image-placeholder .big-bolt {
      font-size: 4rem;
      color: rgba(255, 255, 255, 0.15);
      line-height: 1;
    }

    .hero-image-placeholder p {
      font-family: var(--font-head);
      font-size: 0.9rem;
      letter-spacing: 4px;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
    }

    .hero-pill {
      position: absolute;
      top: 16px;
      right: 0px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 10px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: var(--muted);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px var(--shadow);
      z-index: 3;
      white-space: nowrap;
    }

    .hero-pill .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 1.5s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    /* =====================================================
   CONTACT SECTION
===================================================== */
    .contact-section {
      background: var(--bg2);
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }

    .contact-details-head {
      margin-bottom: 40px;
    }

    .contact-details-head p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-top: 12px;
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 36px;
    }

    .ci-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .ci-item:first-child {
      border-top: 1px solid var(--border);
    }

    .ci-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(22, 163, 74, 0.1);
      border: 1px solid rgba(22, 163, 74, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ci-content {
      min-width: 0;
      flex: 1;
    }

    .ci-content h5 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 5px;
    }

    .ci-content p,
    .ci-content a {
      color: var(--text);
      font-size: 0.92rem;
      line-height: 1.6;
      transition: color 0.3s;
      word-wrap: break-word;
      word-break: break-all;
    }

    .ci-content a:hover {
      color: var(--accent);
    }

    .contact-form-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      position: sticky;
      top: 200px;
      transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }

    .contact-form-wrap:hover {
      border-color: rgba(168, 232, 50, 0.28);
      transform: translateY(-3px);
      box-shadow:
        0 0 0 1px rgba(168, 232, 50, 0.06),
        0 12px 40px rgba(168, 232, 50, 0.12),
        0 30px 80px rgba(168, 232, 50, 0.06);
    }

    .form-title {
      font-family: var(--font-head);
      font-size: 1.8rem;
      letter-spacing: 1px;
      color: var(--text);
      margin-bottom: 6px;
    }

    .form-subtitle {
      color: var(--muted);
      font-size: 0.88rem;
      margin-bottom: 30px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 18px;
    }

    .form-group label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--input-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--muted2);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      color-scheme: dark;
    }

    [data-theme="dark"] .form-group select {
      background-color: #13131f;
    }

    [data-theme="dark"] .form-group select option {
      background: #13131f;
      color: #fff;
    }

    [data-theme="light"] .form-group select {
      background-color: #ffffff;
    }

    [data-theme="light"] .form-group select option {
      background: #ffffff;
      color: #0f172a;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    /* WhatsApp submit button */
    .btn-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 12px;
      padding: 16px 28px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 4px;
    }

    .btn-submit:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(37, 211, 102, 0.38);
    }

    .btn-submit i {
      font-size: 1.1rem;
    }

    .form-note {
      text-align: center;
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .form-note.success {
      color: var(--accent);
    }

    .form-note.error {
      color: #dc2626;
    }

    /* Required field indicator */
    .form-group label span.req {
      color: #25D366;
      margin-left: 2px;
    }

    /* =====================================================
   JOIN OUR TEAM SECTION
===================================================== */
    .join-section {
      background: var(--bg);
      padding: 100px 0;
      overflow: hidden;
      position: relative;
    }

    .join-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: var(--accent);
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.05;
      pointer-events: none;
    }

    .join-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .join-left .sec-eyebrow {
      margin-bottom: 10px;
    }

    .join-heading {
      font-family: var(--font-head);
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: 1px;
      color: var(--text);
      margin-bottom: 22px;
    }

    .join-heading em {
      font-family: 'Outfit', sans-serif;
      font-style: normal;
      background: var(--accent2);
      font-weight: 700;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .join-body {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.9;
      margin-bottom: 36px;
    }

    .btn-join {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: white;
      padding: 15px 32px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.92rem;
      transition: all 0.3s;
    }

    .btn-join:hover {
      background: #15803d;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(22, 163, 74, 0.38);
    }

    .btn-join i {
      transition: transform 0.3s;
    }

    .btn-join:hover i {
      transform: translateX(4px);
    }

    .join-perks {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 28px 0;
    }

    .join-perk {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .join-perk i {
      color: var(--accent);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .join-right {
      position: relative;
      height: 500px;
    }

    .join-card-main {
      position: absolute;
      top: 0;
      left: 0;
      right: 60px;
      bottom: 60px;
      border-radius: var(--radius-lg);
      background: linear-gradient(160deg, #052e16 0%, #14532d 40%, #16a34a 80%);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 30px;
      isolation: isolate;
    }

    .join-card-main img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    .join-card-main .big-num {
      font-family: var(--font-head);
      font-size: 8rem;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
      position: absolute;
      bottom: 20px;
      right: 20px;
    }

    .join-card-main-label {
      position: relative;
      z-index: 3;
    }

    .join-card-main-label h4 {
      font-family: var(--font-head);
      font-size: 1.5rem;
      letter-spacing: 1px;
      color: white;
      margin-bottom: 4px;
    }

    .join-card-main-label p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
    }

    /* =====================================================
   MAP SECTION
===================================================== */
   /* ── Three-Map Grid ── */
    .map-three-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 0 5% 70px;
    }
 
    /* ── Individual Map Card ── */
    .map-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
 
    .map-card:hover {
      border-color: rgba(168, 232, 50, 0.28);
      box-shadow: 0 12px 40px rgba(168, 232, 50, 0.08);
      transform: translateY(-4px);
    }
 
    /* ── Card Header ── */
    .map-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 22px 0;
    }
 
    .map-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(168, 232, 50, 0.1);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
 
    .map-card-eyebrow {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 3px;
      opacity: 0.7;
    }
 
    .map-card-title {
      font-family: var(--font-head);
      font-size: 1.3rem;
      letter-spacing: 1px;
      color: var(--text);
      line-height: 1;
    }
 
    /* ── Address Row ── */
    .map-card-address {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 14px 22px;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      border-bottom: 1px solid var(--border);
    }
 
    .map-card-address i {
      color: var(--accent);
      font-size: 1rem;
      margin-top: 1px;
      flex-shrink: 0;
    }
 
    /* ── Embed Container ── */
    .map-card-embed {
      width: 100%;
      height: 260px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
 
    .map-card-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
 
    /* ── Placeholder (Cyber Creative) ── */
    .map-card-placeholder {
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      border-top: 1px dashed var(--border);
      border-bottom: 1px dashed var(--border);
    }
 
    .map-placeholder-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      padding: 24px;
      color: var(--muted);
      pointer-events: none;
      user-select: none;
    }
 
    .map-placeholder-inner i {
      font-size: 2.6rem;
      opacity: 0.25;
      color: #6366f1;
    }
 
    .map-placeholder-inner span {
      font-size: 0.85rem;
      font-weight: 600;
      opacity: 0.5;
    }
 
    .map-placeholder-hint {
      font-size: 0.7rem !important;
      opacity: 0.3 !important;
      font-family: monospace !important;
      background: rgba(255,255,255,0.05);
      padding: 3px 8px;
      border-radius: 4px;
    }
 
    /* ── Directions Button ── */
    .map-card-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin: 16px 22px 20px;
      padding: 11px 20px;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      background: rgba(168, 232, 50, 0.1);
      color: var(--accent);
      border: 1px solid rgba(168, 232, 50, 0.25);
      text-decoration: none;
      transition: all 0.25s;
      font-family: var(--font-body);
    }
 
    .map-card-btn:hover {
      background: var(--accent);
      color: #0a0a0f;
      border-color: var(--accent);
    }
 
    /* ── Light Mode ── */
    [data-theme="light"] .map-card {
      box-shadow: 0 4px 20px rgba(15,23,42,0.07);
    }
 
    [data-theme="light"] .map-card:hover {
      box-shadow: 0 12px 40px rgba(15,23,42,0.12);
    }
 
    [data-theme="light"] .map-card-placeholder {
      background: #f8fafc;
    }
 
    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .map-three-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
 
      /* Third card spans full width on tablet */
      .map-three-grid .map-card:last-child {
        grid-column: 1 / -1;
      }
 
      .map-three-grid .map-card:last-child .map-card-embed {
        height: 220px;
      }
    }
 
    @media (max-width: 700px) {
      .map-three-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 4% 48px;
      }
 
      .map-three-grid .map-card:last-child {
        grid-column: auto;
      }
 
      .map-card-embed {
        height: 220px;
      }
 
      .map-card-title {
        font-size: 1.1rem;
      }
    }

    /* =====================================================
   RESPONSIVE
===================================================== */

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-right {
        display: none;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-wrap {
        position: static;
      }

      .join-inner {
        grid-template-columns: 1fr;
      }

      .join-right {
        display: none;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 160px 5% 30px;
        min-height: auto;
      }

      .contact-form-wrap {
        padding: 24px 20px;
      }

      .hero-title {
        font-size: clamp(2.2rem, 8vw, 4rem);
        margin-bottom: 14px;
      }

      .hero-desc {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
      }

      /* Hide sidebar socials on mobile */
      .sidebar-socials {
        display: none !important;
      }

      .contact-section {
        padding: 40px 0 20px !important;
      }

      .contact-details-head {
        margin-bottom: 20px;
      }

      .contact-details-head p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-top: 8px;
      }

      .ci-item {
        padding: 12px 0;
      }

      .ci-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
      }

      .ci-content h5 {
        font-size: 0.68rem;
      }

      .ci-content p,
      .ci-content a {
        font-size: 0.85rem;
      }

      .contact-info-list {
        margin-bottom: 20px;
      }

      .contact-grid {
        gap: 30px;
      }

      .form-title {
        font-size: 1.4rem;
      }

      .form-subtitle {
        font-size: 0.82rem;
        margin-bottom: 18px;
      }

      .form-group {
        margin-bottom: 12px;
        gap: 5px;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 12px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
      }

      .form-group textarea {
        min-height: 80px;
      }

      .btn-submit {
        padding: 14px 20px;
        font-size: 0.9rem;
      }

      /* Map section compact */
      .map-header {
        padding: 30px 5% 20px;
      }

      .map-embed-wrap {
        height: 280px;
      }

      .map-overlay-info {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero-section {
        padding: 150px 5% 20px;
        min-height: auto;
      }

      .hero-inner {
        gap: 16px;
        padding: 0;
      }

      .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 10px;
      }

      .hero-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 14px;
      }

      .hero-info-cards {
        grid-template-columns: 1fr;
        margin-bottom: 12px;
        gap: 8px;
      }

      .info-card {
        padding: 12px;
        gap: 10px;
      }

      .info-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
      }

      .info-card-text h5 {
        font-size: 0.73rem;
      }

      .info-card-text p {
        font-size: 0.72rem;
      }

      .hero-socials {
        flex-wrap: wrap;
        gap: 8px;
      }

      .contact-section {
        padding: 28px 0 12px !important;
      }

      .contact-grid {
        gap: 20px;
        padding: 0 4px;
      }

      .contact-details-head {
        margin-bottom: 12px;
      }

      .contact-details-head h2 {
        font-size: 2rem !important;
      }

      .ci-item {
        padding: 10px 0;
        gap: 10px;
      }

      .ci-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        font-size: 0.8rem;
      }

      .contact-form-wrap {
        padding: 20px 16px;
      }

      .form-group label {
        font-size: 0.7rem;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 11px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
      }

      .form-group textarea {
        min-height: 70px;
      }

      .form-group {
        margin-bottom: 10px;
        gap: 4px;
      }

      .btn-submit {
        padding: 13px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
        width: 100%;
        justify-content: center;
      }

      .map-header {
        padding: 18px 5% 12px;
      }

      .map-header .sec-heading {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
      }

      .map-embed-wrap {
        height: 220px;
      }

      /* Merged from MOBILE FIX 12 & EXTRA MOBILE POLISH */
      .hero-section {
        padding-top: 155px;
      }
      .hero-inner, .contact-grid {
        padding: 0 10px;
      }
      .info-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        padding: 16px;
      }
      .contact-details-head h2 {
        font-size: 2.2rem;
      }
      .form-title {
        font-size: 1.4rem;
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
      }
      .btn-submit {
        justify-content: center;
      }
    }

    @media (max-width: 400px) {
      .hero-section {
        padding: 140px 4% 16px;
      }

      .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
      }

      .hero-desc {
        font-size: 0.82rem;
        margin-bottom: 10px;
      }

      .contact-form-wrap {
        padding: 16px 12px;
      }
      .contact-form-wrap {
        padding: 20px 14px;
      }

      .contact-section {
        padding: 20px 0 10px !important;
      }

      .map-embed-wrap {
        height: 180px;
      }
    }

    /* ══════════════════════════════════════
       PREMIUM LIGHT MODE OVERRIDES
    ══════════════════════════════════════ */
    [data-theme="light"] .contact-form-wrap {
      box-shadow: 0 8px 40px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.06);
      border-color: rgba(15,23,42,0.09);
    }
    [data-theme="light"] .form-group input,
    [data-theme="light"] .form-group select,
    [data-theme="light"] .form-group textarea {
      background: #ffffff;
      border-color: rgba(15,23,42,0.14);
    }
    [data-theme="light"] .form-group input:focus,
    [data-theme="light"] .form-group select:focus,
    [data-theme="light"] .form-group textarea:focus {
      border-color: #a8e832;
      box-shadow: 0 0 0 3px rgba(168,232,50,0.15);
    }
    [data-theme="light"] .hero-section {
      background: linear-gradient(180deg, #f1f5f9 0%, #e8eef8 100%);
    }
    [data-theme="light"] .map-overlay-info {
      background: #ffffff;
      box-shadow: 0 8px 28px rgba(15,23,42,0.12);
    }
    [data-theme="light"] .join-section {
      background: #f1f5f9;
    }

/* ── Thank You Box ─────────────────────────────────────── */
.form-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 32px;
  gap: 16px;
  animation: ty-fade 0.5s ease forwards;
}
.form-thankyou.active  { display: flex; }
.form-thankyou.leaving { animation: ty-fade-out 0.5s ease forwards; }

@keyframes ty-fade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ty-fade-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-14px); }
}

.ty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(168, 232, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--green, #a8e832);
  margin-bottom: 8px;
}

.ty-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text);
  margin: 0;
}

.ty-body {
  font-size: 0.95rem;
  color: var(--text2);
  max-width: 320px;
  line-height: 1.6;
  margin: 0;
}

/* Uppercase emphasized headings */
.hero-title em,
.sec-heading em,
.join-heading em {
  text-transform: uppercase;
}
