/* ═══════════════════════════════════════════════════════
   Contact page — page-specific styles
   herbelleremedies.co.uk/contact/
   ═══════════════════════════════════════════════════════ */

    /* ── CONTACT PAGE CUSTOM STYLES ─── */

    /* Override page-hero to dark forest */
    .page-hero {
      background: var(--forest) !important;
    }
    .page-hero::before {
      background: url('../images/contact.jpg') center/cover no-repeat !important;
      opacity: 0.12 !important;
    }
    .page-hero .page-eyebrow { color: var(--bronze-lt) !important; letter-spacing: 0.2em; }
    .page-hero .page-heading { color: #fff !important; }
    .page-hero .page-heading em { color: var(--parchment) !important; }
    .page-hero .page-intro { color: rgba(243,224,198,0.88) !important; opacity: 1 !important; }

    /* ── CONTACT SPLIT LAYOUT ─── */
    .contact-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 780px) {
      .contact-split { grid-template-columns: 1fr; gap: 3rem; }
    }

    /* Left column */
    .contact-info-col {}

    .contact-block {
      margin-bottom: 2.5rem;
    }
    .contact-block:last-child { margin-bottom: 0; }

    .contact-block-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bronze);
      margin-bottom: 0.8rem;
    }

    .contact-email-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1rem;
      color: var(--forest);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }
    .contact-email-link:hover { color: var(--forest-mid); }
    .contact-email-link svg { flex-shrink: 0; }

    .contact-free-call {
      background: var(--parchment-lt);
      border: 1px solid rgba(45,69,48,0.12);
      border-radius: 3px;
      padding: 1.2rem 1.4rem;
      margin-top: 0.8rem;
      font-size: 0.88rem;
      color: var(--ink-soft);
      line-height: 1.65;
    }
    .contact-free-call strong { color: var(--forest); }

    /* Social links */
    .contact-social-links {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .contact-social-item {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 0.85rem 1.1rem;
      border: 1px solid var(--mist);
      border-radius: 3px;
      background: var(--parchment-lt);
      transition: border-color 0.2s, background 0.2s;
      text-decoration: none;
    }
    .contact-social-item:hover {
      border-color: rgba(45,69,48,0.25);
      background: var(--parchment);
    }
    .contact-social-icon {
      width: 36px;
      height: 36px;
      background: var(--forest);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-social-text {}
    .contact-social-text strong {
      display: block;
      font-size: 0.88rem;
      color: var(--forest);
      font-weight: 600;
    }
    .contact-social-text span {
      font-size: 0.78rem;
      color: var(--ink-soft);
      opacity: 0.6;
    }

    /* Right column, booking CTA panel */
    .contact-booking-col {}
    .booking-panel {
      background: var(--forest);
      border-radius: 4px;
      padding: clamp(2rem, 4vw, 3rem);
      position: relative;
      overflow: hidden;
    }
    .booking-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/header-image.jpg') center top/cover no-repeat;
      opacity: 0.06;
      mix-blend-mode: luminosity;
    }
    .booking-panel-inner { position: relative; z-index: 1; }

    .booking-panel .eyebrow { color: var(--bronze-lt) !important; margin-bottom: 0.8rem; }
    .booking-panel h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      font-weight: 400;
      color: var(--parchment-lt);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .booking-panel h2 em { color: var(--parchment); }
    .booking-panel p {
      font-size: 0.9rem;
      color: rgba(243,224,198,0.65);
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .booking-panel .btn-primary {
      background: var(--parchment);
      color: var(--forest);
      border: 1px solid var(--parchment);
      width: 100%;
      justify-content: center;
      text-align: center;
      display: block;
      padding: 1rem 1.5rem;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .booking-panel .btn-primary:hover {
      background: transparent;
      color: var(--parchment);
      border-color: var(--parchment);
    }

    .booking-panel-divider {
      border: none;
      border-top: 1px solid rgba(243,224,198,0.12);
      margin: 1.8rem 0;
    }

    .booking-availability {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.82rem;
      color: rgba(243,224,198,0.55);
    }
    .availability-dot {
      width: 7px;
      height: 7px;
      background: #6fcf97;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── WHAT TO EXPECT ─── */
    .expect-section {
      background: var(--parchment);
      padding: clamp(3rem, 6vw, 5rem) 0;
    }
    .expect-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .expect-header .eyebrow { margin-bottom: 0.8rem; }
    .expect-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 400;
      color: var(--forest);
    }
    .expect-header h2 em { color: var(--forest-mid); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    @media (max-width: 860px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    }
    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
    }

    /* Connecting line between steps on desktop */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 22px;
      left: calc(12.5% + 22px);
      right: calc(12.5% + 22px);
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(45,69,48,0.2) 15%, rgba(45,69,48,0.2) 85%, transparent);
      pointer-events: none;
    }
    @media (max-width: 680px) {
      .steps-grid::before { display: none; }
    }

    .step-item {
      padding: 0 1.5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    @media (max-width: 680px) {
      .step-item {
        padding: 1.2rem 0;
        flex-direction: row;
        text-align: left;
        gap: 1.2rem;
        align-items: flex-start;
      }
    }

    .step-number {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--forest);
      color: var(--parchment);
      font-family: var(--font-display);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 680px) {
      .step-number { margin-bottom: 0; }
    }

    .step-content {}
    .step-content h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--forest);
      margin-bottom: 0.5rem;
    }
    .step-content p {
      font-size: 0.875rem;
      color: var(--ink-soft);
      opacity: 0.75;
      line-height: 1.65;
    }

    /* ── FAQ SECTION (contact-specific) ─── */
    .contact-faq-section {
      padding: clamp(3rem, 5vw, 4.5rem) 0;
    }

    /* ── INSTAGRAM FEED ─── */
    .instagram-section {
      background: var(--forest);
      padding: clamp(2.5rem, 5vw, 4rem) 0;
    }
    .instagram-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .instagram-header .eyebrow { color: var(--bronze-lt) !important; margin-bottom: 0.6rem; }
    .instagram-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2vw, 1.8rem);
      font-weight: 400;
      color: var(--parchment-lt);
    }
    .instagram-header h2 em { color: var(--parchment); }
    .instagram-header a {
      color: var(--bronze-lt);
      text-decoration: none;
    }

    /* Featured latest post */
    .instagram-featured-wrap {
      margin-bottom: 2.5rem;
    }
    .ig-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      background: rgba(0,0,0,0.18);
      border-radius: 3px;
      overflow: hidden;
    }
    @media (max-width: 640px) {
      .ig-featured { grid-template-columns: 1fr; }
    }
    .ig-featured-thumb {
      display: block;
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 2px;
    }
    .ig-featured-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.2s;
    }
    .ig-featured-thumb:hover img { transform: scale(1.03); }
    .ig-featured-body {
      padding: 1.8rem 2rem 1.8rem 0.5rem;
    }
    @media (max-width: 640px) {
      .ig-featured-body { padding: 1.4rem 1.4rem 1.8rem; }
    }
    .ig-featured-caption {
      font-size: 0.9rem;
      color: rgba(243,224,198,0.75);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .ig-featured-link {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bronze-lt);
      text-decoration: none;
      transition: color 0.2s;
    }
    .ig-featured-link:hover { color: var(--parchment-lt); }
    .ig-featured-type-badge {
      position: absolute;
      top: 0.6rem;
      left: 0.6rem;
      background: rgba(0,0,0,0.55);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 2px;
    }

    /* 5-post feed strip */
    .instagram-feed {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    @media (max-width: 860px) {
      .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 560px) {
      .instagram-feed {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .instagram-feed::-webkit-scrollbar { display: none; }
      .ig-post {
        flex: 0 0 calc(85vw - 2rem);
        max-width: 280px;
        scroll-snap-align: start;
      }
    }

    /* Individual post */
    .ig-post {
      display: block;
      text-decoration: none;
      position: relative;
    }
    .ig-thumb {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 2px;
      background: rgba(0,0,0,0.2);
    }
    .ig-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.2s;
    }
    .ig-post:hover .ig-thumb img { transform: scale(1.04); }

    /* Caption overlay on hover */
    .ig-caption-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,38,22,0.72);
      display: flex;
      align-items: flex-end;
      padding: 0.7rem;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .ig-post:hover .ig-caption-overlay { opacity: 1; }
    .ig-caption-overlay span,
    .ig-caption-overlay a {
      font-size: 0.72rem;
      color: rgba(243,224,198,0.9);
      line-height: 1.5;
      text-decoration: none;
    }

    /* Play button overlay (Reels) */
    .ig-play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .ig-post:hover .ig-play-overlay { opacity: 0.7; }

    /* Reel label */
    .ig-reel-label {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      background: rgba(0,0,0,0.52);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.45rem;
      border-radius: 2px;
    }

    /* Carousel post */
    .ig-carousel-thumb { position: relative; }
    .ig-carousel-img { display: none; }
    .ig-carousel-img--active { display: block; }

    .ig-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.45);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 2;
      line-height: 1;
      padding: 0;
      transition: background 0.2s;
    }
    .ig-carousel-btn:hover { background: rgba(0,0,0,0.7); }
    .ig-carousel-btn--prev { left: 0.35rem; }
    .ig-carousel-btn--next { right: 0.35rem; }

    .ig-carousel-indicator {
      position: absolute;
      bottom: 0.5rem;
      right: 0.5rem;
      background: rgba(0,0,0,0.52);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 600;
      padding: 0.2rem 0.5rem;
      border-radius: 20px;
      z-index: 2;
    }

    /* Skeleton loading */
    @keyframes ig-pulse {
      0%, 100% { opacity: 0.35; }
      50% { opacity: 0.6; }
    }
    .ig-skeleton {
      aspect-ratio: 1 / 1;
      background: rgba(243,224,198,0.12);
      border-radius: 2px;
      animation: ig-pulse 1.4s ease-in-out infinite;
    }
    .ig-skeleton--featured {
      aspect-ratio: 2 / 1;
      width: 100%;
      margin-bottom: 2.5rem;
    }

    /* View more link */
    .instagram-view-more {
      text-align: center;
      margin-top: 1.2rem;
    }
    .instagram-view-link {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bronze-lt);
      text-decoration: none;
      transition: color 0.2s;
    }
    .instagram-view-link:hover { color: var(--parchment-lt); }
