/*
Theme Name: Skinkare Pro
Theme URI: https://skinkare.pro
Author: Skinkare Pro
Description: Custom one-page theme for skinkare.pro with Contact Form 7 booking section.
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: skinkare-pro
*/


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

    :root {
      --main:   #0F172A;
      --second: #475569;
      --bg:     #F8FAFC;
      --hi:     #0EA5E9;
      --hi-dark:#0284C7;
      --white:  #ffffff;
      --soft:   #E2E8F0;
      --text:   #1E293B;
      /* New aesthetic accents */
      --spa-green: #ECFDF5;
      --spa-blush: #FFF1F2;
      --spa-neutral: #F1F5F9;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--main);
      line-height: 1.25;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248,250,252,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--soft);
    }
    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .wordmark {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--main);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .wordmark span { color: var(--hi); }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--second);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--hi); }
    .nav-cta {
      background: var(--hi);
      color: var(--white) !important;
      padding: .45rem 1.1rem;
      border-radius: 999px;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--hi-dark) !important; color: var(--white) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: .25rem;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--main);
      border-radius: 2px;
      transition: all .3s;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--white);
      border-top: 1px solid var(--soft);
      padding: .5rem 0 1rem;
    }
    .mobile-menu a {
      padding: .75rem 1.5rem;
      font-size: .95rem;
      font-weight: 500;
      color: var(--second);
      text-decoration: none;
    }
    .mobile-menu a:hover { color: var(--hi); }
    .mobile-menu.open { display: flex; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #0EA5E9 100%);
      color: var(--white);
      padding: 6rem 1.5rem 5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(14,165,233,.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(14,165,233,.12) 0%, transparent 45%);
      pointer-events: none;
    }
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: .18;
      pointer-events: none;
    }
    .hero-blob-1 {
      width: 420px; height: 420px;
      background: var(--hi);
      top: -80px; right: -80px;
    }
    .hero-blob-2 {
      width: 300px; height: 300px;
      background: #7dd3fc;
      bottom: -60px; left: -60px;
    }
    .hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(14,165,233,.2);
      border: 1px solid rgba(14,165,233,.4);
      color: #7dd3fc;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      color: var(--white);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      margin-bottom: 1.2rem;
    }
    .hero h1 em { color: #7dd3fc; font-style: normal; }
    .hero p {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      color: #CBD5E1;
      max-width: 600px;
      margin: 0 auto 2.2rem;
    }
    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--hi);
      color: var(--white);
      padding: .85rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--hi-dark); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: .85rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,.35);
      transition: border-color .2s, transform .15s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 3.5rem;
      flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
    }
    .stat-label { font-size: .8rem; color: #94A3B8; text-transform: uppercase; letter-spacing: .05em; }

    /* ── SECTION SHELL ── */
    section { padding: 5rem 1.5rem; }
    .container { max-width: 1160px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--hi);
      margin-bottom: .6rem;
    }
    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      margin-bottom: 1rem;
    }
    .section-sub {
      color: var(--second);
      font-size: 1.05rem;
      max-width: 580px;
    }
    .section-header { margin-bottom: 3.5rem; }
    .section-header.centered { text-align: center; }
    .section-header.centered .section-sub { margin: 0 auto; }

    /* ── HOW IT WORKS ── */
    .how { background: var(--white); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }
    .step-card {
      background: var(--bg);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid var(--soft);
      transition: box-shadow .25s, transform .25s;
    }
    .step-card:hover { box-shadow: 0 8px 32px rgba(14,165,233,.12); transform: translateY(-4px); }
    .step-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 1.8rem;
    }
    .step-num {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--hi);
      text-transform: uppercase;
      margin-bottom: .4rem;
    }
    .step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
    .step-card p { font-size: .9rem; color: var(--second); }

    /* ── PRICING ── */
    .pricing { 
      background: linear-gradient(180deg, var(--white) 0%, var(--spa-neutral) 100%); 
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      align-items: stretch;
      max-width: 1160px;
      margin: 0 auto;
    }
    .price-card {
      background: var(--white);
      border: 1px solid var(--soft);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      position: relative;
      transition: transform .3s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    .price-card:hover { 
      transform: translateY(-8px); 
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); 
    }
    .price-card.featured {
      border: 2px solid var(--hi);
      background: linear-gradient(to bottom, var(--white), var(--spa-green));
    }
    .price-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--hi);
      color: var(--white);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .4rem 1.2rem;
      border-radius: 999px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(14, 165, 223, 0.3);
    }
    .price-card h3 {
      color: var(--main);
      font-size: 1.5rem;
      margin-bottom: .5rem;
      text-align: center;
    }
    .price-duration {
      font-size: .9rem;
      font-weight: 600;
      color: var(--second);
      margin-bottom: 1.5rem;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--main);
      line-height: 1;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .price-amount sup { font-size: 1.6rem; vertical-align: top; margin-top: .4rem; }
    .price-desc {
      font-size: 0.95rem;
      color: var(--second);
      text-align: center;
      margin-bottom: 2rem;
      min-height: 3em;
    }
    .price-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 1rem;
      line-height: 1.4;
    }
    .price-features li::before {
      content: '✦';
      color: var(--hi);
      font-weight: 700;
      flex-shrink: 0;
    }
    .price-sub-section {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px dashed var(--soft);
    }
    .price-sub-section h4 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }
    .price-sub-section p {
      font-size: 0.85rem;
      color: var(--second);
      margin-bottom: 0.8rem;
    }
    .btn-book {
      display: block;
      text-align: center;
      background: var(--hi);
      color: var(--white);
      padding: 1rem 1.5rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 12px rgba(14, 165, 223, 0.2);
    }
    .btn-book:hover { background: var(--hi-dark); transform: translateY(-2px); }

    /* ── PRODUCTS ── */
    .products { background: var(--bg); }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.8rem;
    }
    .product-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--soft);
      transition: box-shadow .25s, transform .25s;
    }
    .product-card:hover { box-shadow: 0 12px 36px rgba(14,165,233,.12); transform: translateY(-4px); }
    .product-visual {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }
    .product-visual.v1 { background: var(--spa-green); }
    .product-visual.v2 { background: var(--spa-blush); }
    .product-visual.v3 { background: var(--spa-neutral); }
    .product-visual.v4 { background: #FFF7ED; }
    .product-body { padding: 1.3rem; }
    .product-body h3 { font-size: 1rem; margin-bottom: .3rem; }
    .product-body p { font-size: .85rem; color: var(--second); margin-bottom: .8rem; }
    .product-tag {
      display: inline-block;
      background: #E0F2FE;
      color: #0369A1;
      font-size: .72rem;
      font-weight: 600;
      padding: .2rem .6rem;
      border-radius: 999px;
    }

    /* ── BOOKING FORM ── */
    .booking { background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%); }
    .booking .section-title { color: var(--white); }
    .booking .section-label { color: #7dd3fc; }
    .booking .section-sub { color: #94A3B8; }
    .booking-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .booking-info { color: var(--white); }
    .booking-info ul { list-style: none; margin-top: 1.5rem; }
    .booking-info li {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding: .7rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-size: .95rem;
      color: #CBD5E1;
    }
    .booking-info li span.icon { font-size: 1.2rem; }
    .booking-form-box {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem 2rem;
    }
    .booking-form-box h3 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
    }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--main);
      margin-bottom: .4rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--soft);
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      color: var(--text);
      background: var(--bg);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--hi); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%;
      background: var(--hi);
      color: var(--white);
      border: none;
      padding: .95rem 1.5rem;
      border-radius: 999px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .form-submit:hover { background: var(--hi-dark); transform: translateY(-2px); }

    /* ── FAQ ── */
    .faq { background: var(--bg); }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--soft);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.3rem 0;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .faq-q:hover { color: var(--hi); }
    .faq-arrow {
      font-size: 1.2rem;
      transition: transform .3s;
      flex-shrink: 0;
      color: var(--hi);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s;
      font-size: .95rem;
      color: var(--second);
      line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    /* ── FOOTER ── */
    footer {
      background: var(--main);
      color: #94A3B8;
      padding: 3rem 1.5rem;
      text-align: center;
    }
    .footer-wordmark {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: .5rem;
    }
    .footer-wordmark span { color: var(--hi); }
    footer p { font-size: .9rem; margin-bottom: .4rem; }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin: 1.2rem 0;
    }
    .footer-links a {
      color: #94A3B8;
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--hi); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 1.5rem auto; max-width: 400px; }
    .footer-copy { font-size: .8rem; color: #64748B; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 4rem 1.25rem 3.5rem; }
      .hero-stats { gap: 1.8rem; }
      .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
      section { padding: 3.5rem 1.25rem; }
    }
    @media (max-width: 480px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; align-items: center; }
    }

    /* ── REDUCED MOTION ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
      html { scroll-behavior: auto; }
    }
  

/* --- Contact Form 7 styling inside the booking box --- */
.booking-form-box .wpcf7 { margin: 0; }
.booking-form-box .wpcf7 form > p { margin-bottom: 1.2rem; }
.booking-form-box .wpcf7 label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: .4rem;
}
.booking-form-box .wpcf7 input[type=text],
.booking-form-box .wpcf7 input[type=email],
.booking-form-box .wpcf7 input[type=tel],
.booking-form-box .wpcf7 select,
.booking-form-box .wpcf7 textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  margin-top: .35rem;
}
.booking-form-box .wpcf7 textarea { min-height: 90px; resize: vertical; }
.booking-form-box .wpcf7 input:focus,
.booking-form-box .wpcf7 select:focus,
.booking-form-box .wpcf7 textarea:focus { outline: none; border-color: var(--hi); }
.booking-form-box .wpcf7 input[type=submit] {
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--hi);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  transition: background .2s, transform .2s;
}
.booking-form-box .wpcf7 input[type=submit]:hover { background: var(--hi-dark); transform: translateY(-2px); }
.booking-form-box .wpcf7-not-valid-tip { color: #FCA5A5; font-size: .8rem; }
.booking-form-box .wpcf7-response-output {
  color: #E2E8F0;
  border-color: rgba(255,255,255,.2) !important;
  border-radius: 10px;
  font-size: .9rem;
}
.booking-form-box .skinkare-form-note {
  color: #94A3B8;
  font-size: .9rem;
  line-height: 1.6;
}
.booking-form-box .skinkare-form-note code {
  color: #fff;
  background: rgba(255,255,255,.08);
  padding: .15rem .4rem;
  border-radius: 5px;
}
