:root {
      --dark: #0d0a1a;
      --dark2: #130e24;
      --light: #faf8f4;
      --light2: #f2ede8;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-pale: #f5ead2;
      --purple: #7a4fa3;
      --purple-light: #9b72c2;
      --purple-pale: #ede8f8;
      --text-dark: #f0ebff;
      --muted-dark: rgba(240, 235, 255, 0.55);
      --dim-dark: rgba(240, 235, 255, 0.32);
      --text-light: #1a1228;
      --muted-light: #5a5070;
      --dim-light: #9590a8;
      --border-dark: rgba(201, 168, 76, 0.15);
      --border-light: rgba(26, 18, 40, 0.1);
    }

    .sec-light {
      background: var(--light);
      color: var(--text-light);
    }

    .sec-light2 {
      background: var(--light2);
      color: var(--text-light);
    }

    .sec-dark {
      background: var(--dark);
      color: var(--text-dark);
    }

    .sec-dark2 {
      background: var(--dark2);
      color: var(--text-dark);
    }

    .label-light {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--purple);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .label-light::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(122, 79, 163, 0.18);
    }

    .label-dark {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .label-dark::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border-dark);
    }

    /* ══ 1. FORM + INFO — LIGHT ══ */
    .contact-sec {
      padding: 86px 0;
    }

    .info-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border: 1px solid var(--border-light);
      border-radius: 12px;
      background: #fff;
      text-decoration: none;
      transition: border-color .2s;
    }

    .info-item:hover {
      border-color: rgba(122, 79, 163, 0.3);
    }

    .info-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple);
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .info-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--dim-light);
      margin-bottom: 3px;
    }

    .info-value {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-light);
    }

    .hours-card {
      padding: 20px 22px;
      border: 1px solid var(--border-light);
      border-radius: 12px;
      background: #fff;
      margin-bottom: 24px;
    }

    .hours-card h4 {
      
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 14px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 0.84rem;
    }

    .hours-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .hours-row .day {
      color: var(--muted-light);
    }

    .hours-row .time {
      color: var(--text-light);
      font-weight: 500;
    }

    .hours-row .time.closed {
      color: var(--dim-light);
    }

    .social-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--dim-light);
      margin-bottom: 10px;
    }

    .social-row {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border-light);
      background: #fff;
      color: var(--muted-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      text-decoration: none;
      transition: all .2s;
    }

    .social-btn:hover {
      background: var(--purple-pale);
      color: var(--purple);
      border-color: rgba(122, 79, 163, 0.25);
    }

    /* Form */
    .form-wrap {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 18px;
      padding: 40px 36px;
    }

    .form-wrap h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 6px;
    }

    .form-wrap h3 em {
      font-style: italic;
      color: var(--purple);
    }

    .form-wrap .form-sub {
      font-size: 0.88rem;
      color: var(--muted-light);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--dim-light);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 7px;
      display: block;
    }

    .form-control-custom {
      width: 100%;
      padding: 12px 16px;
      background: var(--light);
      border: 1px solid var(--border-light);
      border-radius: 9px;
      color: var(--text-light);
      
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
    }

    .form-control-custom::placeholder {
      color: var(--dim-light);
    }

    .form-control-custom:focus {
      border-color: rgba(122, 79, 163, 0.4);
      background: #fff;
    }

    textarea.form-control-custom {
      resize: vertical;
      min-height: 108px;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .select-custom {
      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='%237a4fa3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
    }

    .select-custom option {
      background: #fff;
      color: var(--text-light);
    }

    .radio-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .radio-opt {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.86rem;
      color: var(--muted-light);
      cursor: pointer;
      padding: 9px 16px;
      border: 1px solid var(--border-light);
      border-radius: 8px;
      background: var(--light);
      transition: all .2s;
    }

    .radio-opt:hover {
      border-color: rgba(122, 79, 163, 0.3);
      background: var(--purple-pale);
      color: var(--purple);
    }

    .radio-opt input {
      accent-color: var(--purple);
    }

    .btn-submit {
      width: 100%;
      padding: 14px;
      border-radius: 9px;
      background: var(--purple);
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      
      cursor: pointer;
      transition: background .2s;
      margin-top: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-submit:hover {
      background: var(--purple-light);
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--dim-light);
      text-align: center;
      margin-top: 12px;
      line-height: 1.6;
    }


    /* ══ 2. MAP — DARK ══ */
    .map-sec {
      padding: 86px 0;
    }

    .map-sec h2 {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .map-sec h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .map-sec .map-sub {
      color: var(--muted-dark);
      font-size: 0.93rem;
      line-height: 1.75;
      max-width: 400px;
      margin-bottom: 28px;
    }

    .detail-chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border-radius: 99px;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.03);
      font-size: 0.81rem;
      color: var(--muted-dark);
    }

    .chip i {
      color: var(--gold);
      font-size: 0.75rem;
    }

    .map-frame {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-dark);
      height: 360px;
      background: #1e1830;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .map-frame iframe {
        width: 100%;
        height: 360px;
    }

    .map-placeholder {
      text-align: center;
    }

    .map-placeholder i {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
      opacity: 0.6;
    }

    .map-placeholder strong {
      display: block;
      font-size: 1rem;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .map-placeholder p {
      font-size: 0.82rem;
      color: var(--dim-dark);
    }


    /* ══ 3. QUICK REACH — LIGHT2 ══ */
    .quick-sec {
      padding: 86px 0;
    }

    .quick-sec h2 {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 8px;
    }

    .quick-sec h2 em {
      font-style: italic;
      color: var(--purple);
    }

    .quick-sec .intro {
      color: var(--muted-light);
      font-size: 0.93rem;
      line-height: 1.75;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .quick-card {
      padding: 28px 22px;
      border: 1px solid rgba(122, 79, 163, 0.13);
      border-radius: 14px;
      background: #fff;
      text-align: center;
      text-decoration: none;
      transition: border-color .2s, box-shadow .2s;
      display: block;
    }

    .quick-card:hover {
      border-color: rgba(122, 79, 163, 0.3);
      box-shadow: 0 4px 20px rgba(122, 79, 163, 0.07);
    }

    .qc-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.3rem;
    }

    .quick-card h4 {
      
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 6px;
    }

    .quick-card p {
      font-size: 0.82rem;
      color: var(--muted-light);
      line-height: 1.65;
      margin-bottom: 14px;
    }

    .quick-card .qc-action {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--purple);
    }

    @media(max-width: 768px) {
      .form-row-2 {
        grid-template-columns: 1fr;
      }

      .quick-grid {
        grid-template-columns: 1fr;
      }

      .form-wrap {
        padding: 26px 20px;
      }
    }