:root {
      --gold:        #C9A84C;
      --gold-light:  #F0D080;
      --gold-dark:   #8B6914;
      --navy:        #0D1B2A;
      --navy-mid:    #142232;
      --navy-soft:   #1C2E42;
      --cream:       #FDF6E3;
      --text-light:  #E8D9B5;
      --text-muted:  #8FA3B8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Noto Sans Bengali', sans-serif;
      background: var(--navy);
      color: #fff;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Noto Serif Bengali', serif;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(13,27,42,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold) !important;
      letter-spacing: .5px;
    }
    .navbar-brand span { color: #fff; }
    .nav-link {
      color: var(--text-light) !important;
      font-size: .92rem;
      font-weight: 500;
      padding: 6px 14px !important;
      transition: color .2s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-link.active { color: var(--gold) !important; }
    .btn-nav-login {
      border: 1.5px solid var(--gold);
      color: var(--gold);
      border-radius: 6px;
      padding: 6px 18px;
      font-size: .88rem;
      font-weight: 600;
      transition: all .25s;
      background: transparent;
    }
    .btn-nav-login:hover { background: var(--gold); color: var(--navy); }
    .btn-nav-reg {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--navy);
      border: none;
      border-radius: 6px;
      padding: 6px 18px;
      font-size: .88rem;
      font-weight: 700;
      transition: opacity .25s;
    }
    .btn-nav-reg:hover { opacity: .85; color: var(--navy); }

    /* ── TICKER ── */
    .ticker-bar {
      background: var(--navy-mid);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      font-size: .8rem;
      color: var(--text-muted);
      padding: 6px 0;
      overflow: hidden;
    }
    .ticker-inner {
      display: flex;
      gap: 40px;
      animation: tickerScroll 30s linear infinite;
      white-space: nowrap;
    }
    .ticker-item { display: flex; gap: 8px; align-items: center; }
    .ticker-item .label { color: var(--text-muted); }
    .ticker-item .value { color: var(--gold-light); font-weight: 600; }
    .ticker-item .up   { color: #4ade80; }
    .ticker-item .down { color: #f87171; }
    @keyframes tickerScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── PAGE HERO ── */
    .page-hero {
      background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 65%),
        var(--navy);
      padding: 72px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .breadcrumb-nav {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .8rem;
      color: var(--text-muted);
      margin-bottom: 18px;
    }
    .breadcrumb-nav a { color: var(--gold); text-decoration: none; }
    .breadcrumb-nav a:hover { text-decoration: underline; }
    .page-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }
    .page-hero h1 span {
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-hero p {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ── GOLD DIVIDER ── */
    .gold-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.2;
    }

    /* ── SECTION LABELS ── */
    .section-label {
      font-size: .78rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    /* ── CONTACT INFO CARDS ── */
    .info-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .info-card:hover {
      border-color: rgba(201,168,76,0.35);
      background: rgba(201,168,76,0.05);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(201,168,76,0.1);
    }
    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      opacity: 0;
      transition: opacity .3s;
    }
    .info-card:hover::before { opacity: 1; }
    .info-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }
    .info-card h5 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
    }
    .info-card p {
      font-size: .88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }
    .info-card .contact-value {
      display: block;
      color: var(--gold-light);
      font-weight: 600;
      font-size: .95rem;
      margin-top: 6px;
      text-decoration: none;
      transition: color .2s;
    }
    .info-card .contact-value:hover { color: var(--gold); }

    /* ── FORM CARD ── */
    .form-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }
    .form-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .form-card .sub {
      font-size: .9rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* Form fields */
    .form-label {
      font-size: .85rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 7px;
    }
    .form-control, .form-select {
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid rgba(255,255,255,0.1) !important;
      border-radius: 10px !important;
      color: #fff !important;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: .9rem;
      padding: 11px 16px;
      transition: border-color .25s, box-shadow .25s;
    }
    .form-control:focus, .form-select:focus {
      border-color: rgba(201,168,76,0.6) !important;
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
      background: rgba(201,168,76,0.04) !important;
      outline: none;
    }
    .form-control::placeholder { color: var(--text-muted) !important; font-size: .87rem; }
    .form-select option { background: var(--navy-mid); color: #fff; }
    textarea.form-control { resize: vertical; min-height: 130px; }

    /* Submit Button */
    .btn-submit {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--navy);
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 10px;
      padding: 13px 36px;
      width: 100%;
      box-shadow: 0 4px 24px rgba(201,168,76,0.25);
      transition: all .25s;
      font-family: 'Noto Sans Bengali', sans-serif;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(201,168,76,0.4);
      color: var(--navy);
    }
    .btn-submit:active { transform: translateY(0); }

    /* ── SIDEBAR INFO ── */
    .sidebar-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 20px;
    }
    .sidebar-box h6 {
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-box h6 i { color: var(--gold); }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row .cr-icon {
      width: 36px; height: 36px;
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .contact-row .cr-label { font-size: .75rem; color: var(--text-muted); margin-bottom: 2px; }
    .contact-row .cr-val {
      font-size: .88rem;
      color: var(--text-light);
      font-weight: 500;
      text-decoration: none;
    }
    .contact-row .cr-val:hover { color: var(--gold); }

    /* Office hours */
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: .85rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: var(--text-muted); }
    .hours-row .time { color: var(--text-light); font-weight: 500; }
    .hours-row .badge-open {
      background: rgba(74,222,128,0.15);
      color: #4ade80;
      font-size: .7rem;
      padding: 2px 8px;
      border-radius: 20px;
      font-weight: 600;
    }
    .hours-row .badge-closed {
      background: rgba(248,113,113,0.15);
      color: #f87171;
      font-size: .7rem;
      padding: 2px 8px;
      border-radius: 20px;
      font-weight: 600;
    }

    /* Social links */
    .social-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 1rem;
      transition: all .2s;
      text-decoration: none;
    }
    .social-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

    /* FAQ Section */
    .faq-section { background: var(--navy-mid); padding: 80px 0; }
    .accordion-item {
      background: rgba(255,255,255,0.03) !important;
      border: 1px solid rgba(255,255,255,0.07) !important;
      border-radius: 12px !important;
      margin-bottom: 10px;
      overflow: hidden;
    }
    .accordion-button {
      background: transparent !important;
      color: #fff !important;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      padding: 18px 22px;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
      color: var(--gold-light) !important;
      background: rgba(201,168,76,0.05) !important;
    }
    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    }
    .accordion-body {
      background: transparent;
      color: var(--text-muted);
      font-size: .88rem;
      line-height: 1.75;
      padding: 0 22px 20px;
    }

    /* Map placeholder */
    .map-placeholder {
      background: var(--navy-soft);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 16px;
      height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-muted);
      position: relative;
      overflow: hidden;
    }
    .map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .map-pin-anim {
      font-size: 2.5rem;
      animation: pinBounce 1.6s ease-in-out infinite;
    }
    @keyframes pinBounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }
    .map-placeholder p { font-size: .85rem; color: var(--text-muted); position: relative; }
    .map-placeholder .btn-map {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--navy);
      border: none;
      border-radius: 8px;
      padding: 9px 22px;
      font-size: .85rem;
      font-weight: 700;
      position: relative;
      font-family: 'Noto Sans Bengali', sans-serif;
      cursor: pointer;
      transition: opacity .2s;
    }
    .map-placeholder .btn-map:hover { opacity: .85; }

    /* Support channels */
    .support-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 24px;
      text-align: center;
      transition: all .28s;
      height: 100%;
    }
    .support-card:hover {
      border-color: rgba(201,168,76,0.3);
      background: rgba(201,168,76,0.05);
      transform: translateY(-3px);
    }
    .support-card .s-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      display: block;
    }
    .support-card h6 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .support-card p { font-size: .82rem; color: var(--text-muted); margin: 0 0 14px; line-height: 1.6; }
    .support-card .btn-support {
      border: 1.5px solid rgba(201,168,76,0.35);
      color: var(--gold-light);
      background: transparent;
      border-radius: 7px;
      padding: 6px 18px;
      font-size: .82rem;
      font-weight: 600;
      transition: all .2s;
      font-family: 'Noto Sans Bengali', sans-serif;
      cursor: pointer;
    }
    .support-card .btn-support:hover {
      background: rgba(201,168,76,0.12);
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Toast / Success */
    .toast-custom {
      position: fixed;
      bottom: 28px; right: 28px;
      background: rgba(20,34,50,0.97);
      border: 1px solid rgba(74,222,128,0.4);
      border-radius: 14px;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 9999;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      transform: translateY(80px);
      opacity: 0;
      transition: all .4s cubic-bezier(.34,1.56,.64,1);
      max-width: 340px;
    }
    .toast-custom.show { transform: translateY(0); opacity: 1; }
    .toast-icon {
      width: 40px; height: 40px;
      background: rgba(74,222,128,0.15);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      color: #4ade80;
      flex-shrink: 0;
    }
    .toast-custom h6 { font-size: .9rem; font-weight: 700; margin: 0 0 2px; color: #fff; }
    .toast-custom p { font-size: .8rem; color: var(--text-muted); margin: 0; }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }

    /* FOOTER */
    footer {
      background: #080F17;
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 60px 0 24px;
    }
    .footer-brand {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .footer-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
    .footer-heading { font-size: .8rem; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
    .footer-link {
      display: block;
      font-size: .85rem;
      color: var(--text-muted);
      text-decoration: none;
      margin-bottom: 9px;
      transition: color .2s;
    }
    .footer-link:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 48px;
      padding-top: 22px;
      font-size: .8rem;
      color: var(--text-muted);
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }