  :root {
        --navy: #020617;
        /* deeper black-blue */
        --navy-light: #0B1F3A;
        --gold: #25b847;
        /* brighter gold */
        --gold-light: #25b847;
        /* highlight gold */
        --gold-strong: #25b847;
        /* accent */
        --cream: #F9F5EF;
        --white: #FFFFFF;
        --gray: #9CA3AF;
        --border: rgba(255, 255, 255, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--cream);
        color: var(--navy);
        overflow-x: hidden;
    }

    /* NAV */
    nav {
        background: var(--navy);
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 2px solid var(--gold);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-emblem {
        width: 36px;
        height: 36px;
        background: var(--gold);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: 16px;
        color: var(--navy);
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-title {
        font-family: 'Playfair Display', serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
    }

    .logo-sub {
        font-size: 10px;
        color: var(--gold-light);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1.4;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.02em;
        transition: color .2s;
    }

    .nav-links a:hover {
        color: var(--gold-light);
    }

    .nav-cta {
        background: var(--gold);
        color: var(--navy) !important;
        font-weight: 500 !important;
        padding: 8px 18px;
        border-radius: 6px;
        transition: background .2s !important;
    }

    .nav-cta:hover {
        background: var(--gold-light) !important;
        color: var(--navy) !important;
    }

    /* HERO */
    /* HERO MAIN */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;

  background:
    radial-gradient(circle at 15% 20%, rgba(255,184,0,0.25), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255,184,0,0.15), transparent 40%),
    linear-gradient(135deg, rgba(2,6,23,0.9), rgba(11,31,58,0.9)),
    url('../images/transport-concept-with-train.jpg'); /* 👈 your image */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* GLOW EFFECT */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,184,0,0.2), transparent);
  filter: blur(140px);
  top: -150px;
  left: -150px;
}

/* GRID LAYOUT */
.hero-inner {
  max-width: 1450px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

/* LEFT SIDE */
.hero-left {
  text-align: left;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  /*background: rgba(255,184,0,0.15);*/
  /*border: 1px solid rgba(255,184,0,0.3);*/
  /*color: var(--gold-light);*/
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* TITLE */
.hero h1 {
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 18px;

  background: linear-gradient(180deg,#fff,#25b847);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

/* DESC */
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 520px;
}

/* META */
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.hero-meta-item .label {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.hero-meta-item .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
}

/* FLOATING CARD - PREMIUM */
.floating-card {
  padding: 30px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);

  transition: 0.4s;
}

.floating-card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* CARDS SIDE BY SIDE */
.card-options {
  display: flex;
  gap: 12px;
}

.select-card {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  cursor: pointer;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);

  transition: 0.3s;
}

.select-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* TEXT */
.card-top {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.card-price {
  font-size: 24px;
  font-weight: 700;
  color: #25b847
}

.card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .card-options {
    flex-direction: column;
  }
}
    /* REGISTRATION CARDS SECTION */
    .section {
        padding: 64px 40px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 34px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 15px;
        color: var(--gray);
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 820px;
        margin: 0 auto;
    }

    .reg-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 18px;
        padding: 36px 32px;
        cursor: pointer;
        transition: all .3s ease;
        position: relative;
    }

    .reg-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        border-color: var(--gold);
    }

    .reg-card.featured {
        border-color: var(--navy);
    }

    .featured-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--navy);
        color: var(--gold);
        font-size: 10px;
        font-weight: 500;
        padding: 4px 10px;
        border-radius: 100px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .card-icon.teal {
        background: #E0F2FE;
    }

    .card-icon.amber {
        background: #FEF3C7;
    }

    .card-type {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 6px;
    }

    .card-type.teal {
        color: #0369A1;
    }

    .card-type.amber {
        color: #92400E;
    }

    .reg-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .reg-card p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .price-row {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 6px;
    }

    .price {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 700;
        color: var(--navy);
    }

    .price-currency {
        font-size: 18px;
        color: var(--gray);
        font-weight: 400;
    }

    .price-note {
        font-size: 11px;
        color: var(--gray);
        margin-bottom: 20px;
    }

    .perks {
        list-style: none;
        margin-bottom: 28px;
    }

    .perks li {
        font-size: 12px;
        color: var(--gray);
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .perks li::before {
        content: '✓';
        font-weight: 700;
        font-size: 11px;
        color: var(--success);
        flex-shrink: 0;
    }

    .btn-register {
        display: block;
        width: 100%;
        padding: 14px 20px;
        border: none;
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all .2s;
        text-align: center;
    }

    .btn-register.primary {
        background: var(--navy);
        color: var(--white);
    }

    .btn-register.primary:hover {
        background: #16304F;
    }

    .btn-register.secondary {
        background: var(--gold);
        color: var(--navy);
    }

    .btn-register.secondary:hover {
        background: var(--gold-light);
    }

    /* MODAL / FORM */
    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 58, 0.6);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 20px;
        backdrop-filter: blur(4px);
    }

    .modal-overlay.open {
        display: flex;
    }

    .modal {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border-radius: 22px;
        width: 100%;
        max-width: 1000px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    }

    /* TITLE */
    .card-title {
        text-align: center;
        color: white;
        margin-bottom: 20px;
        font-size: 18px;
    }

    /* GRID */
    .card-options {
        display: flex;
        /* flex-direction: column; */
        gap: 14px;
    }

    /* CARD DESIGN */
    .select-card {
        padding: 18px 16px;
        border-radius: 14px;
        cursor: pointer;
        transition: 0.3s;

        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.2);

        backdrop-filter: blur(12px);
    }

    /* HOVER EFFECT */
    .select-card:hover {
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(255, 184, 0, 0.7);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    /* MEMBER STYLE */
    .select-card.member {
        background: linear-gradient(135deg,
                rgba(255, 184, 0, 0.2),
                rgba(255, 255, 255, 0.05));
    }

    /* NON MEMBER */
    .select-card.nonmember {
        background: rgba(255, 255, 255, 0.05);
    }

    /* TEXT */
    .card-top {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 6px;
    }

    .card-price {
        font-size: 26px;
        font-weight: 700;
        color: #25b847;
    }

    .card-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 4px;
    }

    @keyframes slideUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-header {
        background: var(--navy);
        padding: 28px 32px 24px;
        border-radius: 20px 20px 0 0;
        position: relative;
    }

    .modal-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 4px;
    }

    .modal-header p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 24px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: var(--white);
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .modal-price-bar {
        background: rgba(200, 150, 62, 0.12);
        border-top: 1px solid rgba(200, 150, 62, 0.2);
        padding: 10px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modal-price-bar .label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
    }

    .modal-price-bar .amount {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--gold);
    }

    .modal-body {
        padding: 28px 32px 32px;
    }

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

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid var(--border);
        border-radius: 9px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: var(--navy);
        background: var(--white);
        transition: border-color .2s, box-shadow .2s;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #C4C4C4;
    }

    .form-group select {
        appearance: none;
        cursor: pointer;
    }

    .member-id-field {
        display: none;
    }

    .member-id-field.show {
        display: block;
    }

    .member-id-note {
        font-size: 11px;
        color: var(--gray);
        margin-top: 4px;
    }

    .divider-form {
        border: none;
        border-top: 1px solid var(--border);
        margin: 20px 0;
    }

    .payment-info {
        background: #F0FDF4;
        border: 1px solid #BBF7D0;
        border-radius: 10px;
        padding: 14px 16px;
        margin-bottom: 20px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .payment-info-icon {
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .payment-info-text {
        font-size: 12px;
        color: #166534;
        line-height: 1.6;
    }

    .btn-pay {
        width: 100%;
        padding: 15px 20px;
        background: linear-gradient(135deg, #C8963E, #E8B86D);
        color: var(--navy);
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all .25s ease;
    }

    .btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(200, 150, 62, 0.4);
    }

    .btn-pay:active {
        transform: translateY(0);
    }

    .terms-text {
        text-align: center;
        font-size: 11px;
        color: var(--gray);
        margin-top: 12px;
        line-height: 1.5;
    }

    /* SUCCESS STATE */
    .success-screen {
        display: none;
        padding: 40px 32px;
        text-align: center;
    }

    .success-screen.show {
        display: block;
    }

    .success-icon {
        width: 72px;
        height: 72px;
        background: #DCFCE7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto 20px;
    }

    .success-screen h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .success-screen p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .qr-mockup {
        width: 120px;
        height: 120px;
        background: var(--navy);
        border-radius: 10px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 10px;
        flex-direction: column;
        gap: 4px;
    }

    .qr-inner {
        display: grid;
        grid-template-columns: repeat(7, 10px);
        grid-template-rows: repeat(7, 10px);
        gap: 2px;
    }

    .qr-dot {
        border-radius: 1px;
        background: var(--white);
    }

    /* ABOUT SECTION */
    .about-section {
        background: var(--navy);
        color: var(--white);
        padding: 64px 40px;
    }

    .about-inner {
        max-width: 820px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .about-left h2 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .about-left h2 span {
        color: var(--gold);
    }

    .about-left p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
        font-weight: 300;
    }

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

    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 20px;
    }

    .stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--gold);
        display: block;
    }

    .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 4px;
        display: block;
    }

    /* FOOTER */
    footer {
        background: #060F1C;
        color: rgba(255, 255, 255, 0.5);
        padding: 28px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        border-top: 1px solid rgba(200, 150, 62, 0.2);
    }

    footer .logo-title {
        font-size: 13px;
    }

    footer .logo-sub {
        font-size: 9px;
    }

    .floating-card {
        margin: 30px auto 0;
        padding: 30px;
        border-radius: 20px;

        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.2);

        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
        /* width: 320px; */
    }

    .glass-btn {
        width: 100%;
        margin-top: 15px;
        padding: 14px;
        border-radius: 12px;
        border: none;

        background: linear-gradient(135deg, #C8963E, #E8B86D);
        color: #0B1F3A;
        font-weight: 600;
        cursor: pointer;

        transition: 0.3s;
    }

    .glass-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(200, 150, 62, 0.5);
    }

    .glass-btn.alt {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }

    @media (max-width: 768px) {

        .hero h1 {
            font-size: 32px;
        }

        .hero-meta {
            flex-direction: column;
            gap: 10px;
        }

        .floating-card {
            width: 100%;
        }

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

        nav {
            padding: 0 16px;
        }

        .section,
        .about-section {
            padding: 40px 16px;
        }

    }
    
    /* =========================
   GLOBAL RESPONSIVE FIX
========================= */

/* HERO FIX */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-desc {
    margin: auto;
  }
}

/* MOBILE FIX */
@media (max-width: 768px) {

  /* TITLE */
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  /* LOGO FIX */
  .logo-left {
    height: 40px !important;
  }

  .logo-right {
    height: 35px !important;
  }

  /* CARDS STACK */
  .card-options {
    flex-direction: column !important;
  }

  .select-card {
    width: 100%;
  }

  /* SPACING */
  .hero {
    padding: 50px 15px;
  }

  .floating-card {
    margin-top: 20px;
    padding: 20px;
  }

  /* META FIX */
  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .card-price {
    font-size: 22px;
  }
}