
/* ─── Section wrapper ─── */
    .contact-section {
      padding: 96px 0 80px;
      background: #f7f7fb;
      position: relative;
      overflow: hidden;
    }

    /* Decorative background blobs */
    .contact-section::before,
    .contact-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      opacity: .06;
      pointer-events: none;
    }
    .contact-section::before {
      width: 520px; height: 520px;
      background: #ed952b;
      top: -160px; left: -120px;
    }
    .contact-section::after {
      width: 400px; height: 400px;
      background: #4f73eb;
      bottom: -120px; right: -80px;
    }

    /* ─── Section header ─── */
    .section-eyebrow {
     
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #ed952b;
      margin-bottom: .6rem;
    }

    .section-title {
   
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800;
      line-height: 1.15;
      color: #1a1a2e;
      margin-bottom: 1rem;
    }

    .section-title span {
      position: relative;
      display: inline-block;
      color: #ed952b;
    }

    .section-divider {
      width: 56px; height: 4px;
      background: linear-gradient(90deg, #ed952b, #007BFF);
      border-radius: 4px;
      margin: 0 auto 1.4rem;
    }

    .section-lead {
      font-size: 1.05rem;
      color: #4a4a6a;
      line-height: 1.7;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ─── Info card — attractive light design ─── */
    .info-card {
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid #e2e2ee;
      box-shadow: 0 6px 32px rgba(0,0,0,.10);
      padding: 0;
      height: 100%;
      overflow: hidden;
      position: relative;
    }

    /* Coloured top accent bar */
    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, #FF6600, #4f73eb);
      border-radius: 14px 14px 0 0;
    }

    .info-card-inner {
      padding: 2.4rem 2rem;
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* Header */
    .info-card-header { margin-bottom: 1.8rem; }

    .info-card-eyebrow {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #ed952b;
      margin-bottom: .4rem;
    }

    .info-card-title {
     
      font-size: 1.4rem;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: .3rem;
      line-height: 1.2;
    }

    .info-card-subtitle {
      font-size: .85rem;
      color: #8a8aaa;
      line-height: 1.55;
    }

    /* ── Contact rows ── */
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: .95rem;
      padding: .9rem 1rem;
      border-radius: 12px;
      background: #f7f7fb;
      border: 1.5px solid transparent;
      margin-bottom: .65rem;
      transition: border-color .25s, background .25s, box-shadow .25s, transform .2s;
      cursor: default;
    }

    .contact-item:hover {
      border-color: rgba(255,102,0,.25);
      background: rgba(255,102,0,.04);
      box-shadow: 0 4px 16px rgba(255,102,0,.08);
      transform: translateX(3px);
    }

    .contact-icon-wrap {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      transition: transform .25s, box-shadow .25s;
    }

    .contact-icon-wrap.orange {
      background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(255,102,0,.06));
      color: #ed952b;
      box-shadow: 0 2px 8px rgba(255,102,0,.15);
    }
    .contact-icon-wrap.blue {
      background: linear-gradient(135deg, rgba(79, 115, 235, .15), rgba(79, 115, 235, .06));
      color: #4f73eb;
      box-shadow: 0 2px 8px rgba(79, 115, 235, .15);
    }

    .contact-item:hover .contact-icon-wrap {
      transform: scale(1.1) rotate(-5deg);
    }

    .contact-item-label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #8a8aaa;
      margin-bottom: .18rem;
    }

    .contact-item-value {
      font-size: .93rem;
      color: #4a4a6a;
      line-height: 1.55;
    }

    .contact-item-value a {
      color: #4a4a6a;
      text-decoration: none;
      transition: color .2s;
    }
    .contact-item-value a:hover { color: #ed952b; }
.contact-icon-wrap{
  color:#4f73eb
}
    /* Hours badge */
    .hours-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(0,180,90,.08);
      border: 1px solid rgba(0,180,90,.22);
      border-radius: 50px;
      padding: .28rem .85rem;
      font-size: .76rem;
      color: #0a9e5a;
      font-weight: 600;
      margin-top: .4rem;
    }

    .hours-badge .dot {
      width: 6px; height: 6px;
      background: #0a9e5a;
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .45; transform: scale(.65); }
    }

    /* Divider */
    .info-divider {
      border: none;
      border-top: 1.5px solid #e2e2ee;
      margin: 1.4rem 0 1.2rem;
    }

    /* Social */
    .social-title {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #8a8aaa;
      margin-bottom: .85rem;
    }

    .social-links { display: flex; gap: .55rem; flex-wrap: wrap; }

    .social-btn {
      width: 38px; height: 38px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem;
      border: 1.5px solid #e2e2ee;
      color: #8a8aaa;
      background: #f7f7fb;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s, transform .22s, box-shadow .2s;
    }
    .social-btn:hover {
      background: #ed952b;
      color: #fff;
      border-color: #ed952b;
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(255,102,0,.3);
    }

    /* ─── Form card ─── */
    .form-card {
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid #e2e2ee;
      box-shadow: 0 6px 32px rgba(0,0,0,.10);
      padding: 2.4rem 2rem;
    }

    .form-card-title {
     
      font-size: 1.35rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 1.5rem;
    }

    /* Custom form controls */
    .form-label {
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .04em;
      color: #4a4a6a;
      margin-bottom: .4rem;
    }

    .form-control,
    .form-select {
      border-radius: 10px;
      border: 1.5px solid #e2e2ee;
      padding: .65rem 1rem;
    
      font-size: .95rem;
      color: #1a1a2e;
      background: #f7f7fb;
      transition: border-color .2s, box-shadow .2s, background .2s;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #ed952b;
      box-shadow: 0 0 0 3.5px rgba(255,102,0,.13);
      background: #ffffff;
      outline: none;
    }

    .form-control::placeholder { color: #bbb; }

    textarea.form-control { resize: vertical; min-height: 130px; }

    /* Character counter */
    .char-counter {
      font-size: .75rem;
      color: #8a8aaa;
      text-align: right;
      margin-top: .25rem;
    }

    /* Submit button */
    .btn-submit {
     
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: .04em;
      background: #ed952b;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: .75rem 2.2rem;
      position: relative;
      overflow: hidden;
      transition: background .25s, transform .2s, box-shadow .25s;
    }
    .btn-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,.0);
      transition: background .2s;
    }
    .btn-submit:hover {
      background: #ed952b;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255,102,0,.35);
    }
    .btn-submit:active { transform: translateY(0); }
    .btn-submit .btn-icon { margin-left: .5rem; }

    /* Success / reset strip */
    .form-notice {
      border-radius: 10px;
      padding: .85rem 1.1rem;
      font-size: .9rem;
      display: none;
    }

    /* ─── Map section ─── */
    .map-section {
      padding: 0 0 80px;
      background: #f7f7fb;
    }
    .map-wrapper {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 16px 56px rgba(0,0,0,.13);
      border: 1.5px solid #e2e2ee;
      position: relative;
    }
    .map-wrapper iframe {
      display: block;
      width: 100%;
      height: 400px;
      border: none;
    }
    .map-label {
      position: absolute;
      top: 16px; left: 16px;
      background: #ffffff;
      border-radius: 10px;
      padding: .5rem .9rem;
      display: flex; align-items: center; gap: .5rem;
      font-size: .82rem; font-weight: 600;
      color: #1a1a2e;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
      pointer-events: none;
    }
    .map-label i { color: #ed952b; }

    .map-itinerary-btn {
      --map-itin-bg: #ed952b;
      --map-itin-bg-hover: #d98320;
      background: var(--map-itin-bg);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: .5rem 1.15rem;
      border-radius: 10px;
      font-size: .9rem;
      box-shadow: 0 4px 14px rgba(237, 149, 43, .35);
      transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    }
    .map-itinerary-btn:hover {
      background: var(--map-itin-bg-hover);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(237, 149, 43, .45);
    }
    .map-itinerary-btn:focus-visible {
      outline: 2px solid #c46a12;
      outline-offset: 2px;
    }

    /* ─── Responsive tweaks ─── */
    @media (max-width: 767px) {
      .contact-section { padding: 64px 0 56px; }
      .info-card-inner, .form-card { padding: 1.8rem 1.4rem; }
      .map-wrapper iframe { height: 280px; }
    }

    /* ─── Fade-in animation ─── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
    }
    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }
    [data-reveal-delay="1"] { transition-delay: .1s; }
    [data-reveal-delay="2"] { transition-delay: .2s; }
    [data-reveal-delay="3"] { transition-delay: .3s; }