@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1e293b;
  --primary-light: #334155;
  --primary-dark: #0f172a;
  --accent: #0f766e;
  --accent-light: #14b8a6;
  --accent-bg: #f0fdfa;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --white: #ffffff;
  --text-main: #475569;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(15, 118, 110, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(15, 118, 110, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0b5952;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--slate-100, #f1f5f9);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  font-size: 15px;
  padding: 16px 32px;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
  max-width: 700px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

.divider {
  height: 1px;
  background-color: var(--border);
  margin: 0;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-btn:hover {
  background-color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-card);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-nav-btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--accent);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(240, 253, 250, 0.7) 0%, rgba(248, 250, 252, 0.2) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-top: 8px;
}

.hero-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 40px;
}

.strip-item {
  display: flex;
  flex-direction: column;
}

.strip-item .num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.strip-item .lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-photo-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.hero-photo-wrap:hover .hero-photo {
  transform: scale(1.05);
}

.hero-badges-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
  pointer-events: auto;
}

.badge-1 {
  bottom: 20px;
  left: -20px;
}

.badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-intro-card {
  background-color: var(--accent-bg);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.about-intro-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
}

.about-intro-lead {
  font-size: 14px;
  color: var(--text-main);
  margin-top: 16px;
  line-height: 1.6;
}

.about-text {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--primary-dark);
}

.lang-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lang-badge {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
}

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.spec-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-hover);
}

.spec-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
}

.spec-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.spec-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works */
.how-bg {
  background-color: var(--primary-dark);
  color: var(--white);
}

.how-bg .section-label {
  color: var(--gold);
}

.how-bg .section-title {
  color: var(--white);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.step-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.step-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Session Details */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.detail-box .d-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.detail-box .d-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.detail-box .d-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Credentials */
.credentials-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.credentials-sidebar {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.qual-list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 2px;
  background-color: var(--border);
}

.qual-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-left: 24px;
}

.qual-dot {
  position: absolute;
  left: 3px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg-main);
  box-shadow: 0 0 0 4px var(--accent-bg);
}

.qual-text {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.qual-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Consent & Confidentiality */
.consent-bg {
  background-color: var(--slate-100);
}

.consent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.consent-block {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.consent-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consent-block p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.7;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

.booking-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.booking-submit-wrap {
  margin-top: 32px;
}

.booking-success {
  text-align: center;
  padding: 24px 0 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #059669;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.booking-success p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.success-steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.s-step {
  display: flex;
  gap: 16px;
}

.s-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.s-step div strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.s-step div p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
  margin-top: 2px;
}

.success-actions {
  display: flex;
  justify-content: center;
}

/* Payment Section */
.payment-bg {
  background-color: var(--primary-dark);
  color: var(--white);
}

.payment-bg .section-label {
  color: var(--gold);
}

.payment-bg .section-title {
  color: var(--white);
}

.payment-card-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.payment-desc-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-desc-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.pay-steps {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-steps p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pay-steps span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}

.payment-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
}

.payment-card .pay-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.payment-card .pay-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-top: 8px;
}

.payment-card .pay-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

.qr-container {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  background-color: var(--bg-main);
  display: inline-block;
}

.qr-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.pay-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.pay-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Media Queries (Responsive Styling) */
@media (max-width: 992px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    order: 1;
    align-items: center;
  }

  .hero-photo-container {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-badges-wrap {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
    height: auto;
    pointer-events: auto;
    align-self: stretch;
  }

  .hero-name {
    font-size: 42px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-strip {
    width: 100%;
  }

  .about-grid,
  .payment-card-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .credentials-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .qual-list {
    order: 1;
  }

  .credentials-sidebar {
    order: 2;
  }

  .header {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .hero-section {
    padding: 40px 0 50px;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .floating-badge {
    position: static;
    display: inline-flex;
    margin: 0;
    animation: none !important;
    transform: none !important;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero-photo-wrap {
    max-width: 220px;
    border-width: 4px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background-color: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
  }

  .strip-item {
    text-align: center !important;
    align-items: center !important;
  }

  .strip-item .lbl,
  .strip-item .num {
    text-align: center !important;
    width: 100%;
  }

  .spec-card,
  .about-intro-card,
  .credentials-sidebar,
  .booking-card,
  .consent-block,
  .payment-card {
    padding: 20px !important;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .step-num {
    flex-shrink: 0;
  }

  .consent-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .qr-container {
    padding: 12px;
  }

  .qr-img {
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .detail-box {
    padding: 16px;
  }

  .detail-box .d-value {
    font-size: 15px;
  }

  .detail-box .d-sub {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-name {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .hero-name {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .strip-item .num {
    font-size: 20px;
  }

  .strip-item .lbl {
    font-size: 9px;
  }
}

/* Lucide Icons Custom Styling */
.lucide {
  stroke-width: 2px;
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  vertical-align: middle;
}

.spec-icon-box .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.floating-badge .lucide {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.lang-badge .lucide {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.consent-block h4 .lucide {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.cred-check-icon {
  stroke: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   SLOT PICKER — Client-facing booking form
══════════════════════════════════════════════════════════════ */

.form-group--full {
  grid-column: 1 / -1;
}

.slot-picker-hint {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.slot-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .slot-picker-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .slot-picker-grid { grid-template-columns: repeat(2, 1fr); }
}

.slot-pick-card {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1.5px solid;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spc-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.spc-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.slot-pick--available {
  background: #f0fdfa;
  border-color: #0f766e55;
  cursor: pointer;
}
.slot-pick--available .spc-time { color: #0f5249; }
.slot-pick--available .spc-status { color: #0f766e; }
.slot-pick--available:hover {
  background: #ccfbf1;
  border-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

.slot-pick--available.selected {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
}
.slot-pick--available.selected .spc-time,
.slot-pick--available.selected .spc-status {
  color: white;
}

.slot-pick--booked {
  background: #fef3c7;
  border-color: #d9770655;
  cursor: not-allowed;
  opacity: 0.8;
}
.slot-pick--booked .spc-time { color: #92400e; }
.slot-pick--booked .spc-status { color: #d97706; }

.slot-pick--blocked {
  background: #fef2f2;
  border-color: #dc262655;
  cursor: not-allowed;
  opacity: 0.75;
}
.slot-pick--blocked .spc-time { color: #991b1b; }
.slot-pick--blocked .spc-status { color: #dc2626; }

.slot-picker-none {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  margin-top: 10px;
}
