/* =========================================================
   PAGE-SPECIFIC STYLES FOR INDEX.PHP
   ========================================================= */
:root {
  --saffron-light: rgba(255, 153, 51, 0.10);
  --green-light: rgba(19, 136, 8, 0.10);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* Background gradient for the main page body */
body {
  background-image:
    radial-gradient(circle at 8% 35%, var(--saffron-light), transparent 40%),
    radial-gradient(circle at 92% 65%, var(--green-light), transparent 40%);
  background-attachment: fixed;
}

/* =========================================================
   PRELOADER — CINEMATIC WITH WAVE ANIMATION
   ========================================================= */
#preloader {
  position: fixed; inset: 0; background: var(--bg-dark, #05070a); z-index: 999999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .9s cubic-bezier(.25,1,.5,1), visibility .9s cubic-bezier(.25,1,.5,1);
  overflow: hidden;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-ring-wrap { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.pre-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  background: conic-gradient(var(--saffron) 0%, var(--white) 33%, var(--green) 66%, var(--saffron) 100%);
  animation: preRingSpin 2.4s linear infinite;
  -webkit-mask: radial-gradient(transparent 62%, black 63%);
  mask: radial-gradient(transparent 62%, black 63%);
  filter: drop-shadow(0 0 12px var(--saffron-glow));
}
.pre-ring-inner {
  position: absolute; inset: 2px; border-radius: 50%;
  background: conic-gradient(var(--green) 0%, var(--white) 33%, var(--saffron) 66%, var(--green) 100%);
  animation: preRingSpin 3.6s linear infinite reverse;
  -webkit-mask: radial-gradient(transparent 68%, black 69%);
  mask: radial-gradient(transparent 68%, black 69%);
  opacity: .5;
}
@keyframes preRingSpin { to { transform: rotate(360deg); } }

.pre-logo {
  width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.12);
  animation: preLogoPulse 2.4s ease-in-out infinite;
  z-index: 2; position: relative;
}
@keyframes preLogoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.pre-dots-left, .pre-dots-right {
  position: absolute; display: flex; flex-direction: column; gap: 6px; top: 50%; transform: translateY(-50%);
}
.pre-dots-left { left: -36px; }
.pre-dots-right { right: -36px; }
.pre-dot {
  width: 6px; height: 6px; border-radius: 50%;
  animation: preDotsWave 1.4s ease-in-out infinite;
}
.pre-dot:nth-child(1) { background: var(--saffron); animation-delay: .0s; }
.pre-dot:nth-child(2) { background: var(--white); animation-delay: .15s; }
.pre-dot:nth-child(3) { background: var(--green); animation-delay: .3s; }
.pre-dot:nth-child(4) { background: var(--white); animation-delay: .45s; }
.pre-dot:nth-child(5) { background: var(--saffron); animation-delay: .6s; }
@keyframes preDotsWave { 0%, 100% { transform: scaleX(1); opacity: .5; } 50% { transform: scaleX(2.5); opacity: 1; } }

.pre-brand {
  margin-top: 32px; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 5vw, 28px); letter-spacing: 6px; text-transform: uppercase;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: preBrandFade 1.8s ease-in-out infinite alternate;
}
@keyframes preBrandFade { from { opacity: .5; letter-spacing: 4px; } to { opacity: 1; letter-spacing: 8px; } }

.pre-wave {
  position: absolute; bottom: 0; left: 0; width: 100%;
  display: flex; flex-direction: column; gap: 0; pointer-events: none;
}
.pre-wave svg { display: block; width: 100%; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero { position: relative; width: 100%; height: calc(100svh - 80px); min-height: 520px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.06);
  background-size: cover; background-position: center;
  transition: opacity 1.6s cubic-bezier(.25,1,.5,1), transform 4.5s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,7,10,.45) 0%, rgba(5,7,10,.75) 60%, var(--bg-dark, #05070a) 100%);
}
.slide-1 { background-image: url('/../assets/salon/parturimain.jpg'); }
.slide-2 { background-image: url('/../assets/salon/parturimain2.jpg'); }
.slide-3 { background-image: url('/../assets/salon/parturimain3.jpg'); }

.hero-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 18px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--white); font-weight: 600;
  animation: slideDown .9s cubic-bezier(.25,1,.5,1) both;
}
.hero-badge span { color: var(--saffron); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 88px); color: var(--white); line-height: 1.05;
  margin-bottom: 16px; opacity: 0; animation: riseUp 1.1s .3s cubic-bezier(.25,1,.5,1) forwards;
  text-shadow: 0 20px 40px rgba(0,0,0,.6); font-weight: 700;
}
.hero-sub {
  font-size: clamp(14px, 2.2vw, 17px); color: rgba(255,255,255,.8);
  max-width: 580px; line-height: 1.7; margin-bottom: 32px;
  opacity: 0; animation: riseUp 1.1s .5s cubic-bezier(.25,1,.5,1) forwards;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: riseUp 1.1s .7s cubic-bezier(.25,1,.5,1) forwards;
}
.btn-primary, .btn-outline {
  padding: 14px 28px; border-radius: 50px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.4s ease;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #ffba6b);
  color: #000; box-shadow: 0 8px 24px var(--saffron-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,153,51,.55); color: #000; }
.btn-outline {
  background: rgba(19, 136, 8, .12); backdrop-filter: blur(10px);
  border: 1.5px solid var(--green); color: var(--white);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.dot { width: 24px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.2); cursor: pointer; transition: all 0.4s ease; }
.dot.active { width: 52px; background: var(--saffron); box-shadow: 0 0 8px var(--saffron-glow); }

@keyframes slideDown { from { opacity: 0; transform: translateY(-25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes riseUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.section { padding: 72px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.glass-card {
  background: var(--glass-bg, rgba(15,18,25,.7));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border, rgba(255,255,255,.08)); border-radius: 20px;
  transition: all 0.4s ease;
}
.section-label { display: block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--saffron); font-weight: 700; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 50px); color: var(--white); margin-bottom: 14px; font-weight: 700; }
.section-title span { color: var(--green); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head p { color: var(--txt-m, #8a95a5); font-size: 15px; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.fu { opacity: 0; transform: translateY(32px) scale(.98); transition: opacity .75s cubic-bezier(.25,1,.5,1), transform .75s cubic-bezier(.25,1,.5,1); }
.fu.vis { opacity: 1; transform: translateY(0) scale(1); }

/* =========================================================
   STAT BAR
   ========================================================= */
.stat-bar { margin-top: -32px; position: relative; z-index: 10; border-top: 2px solid var(--saffron); }
.stat-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); padding: 28px 16px; gap: 0; }
.stat-item { text-align: center; padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,.05); }
.stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.05); }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 7vw, 44px); font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px;
}
.stat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--txt-m, #8a95a5); font-weight: 600; }

@media(min-width: 600px) {
  .stat-bar-inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,.05); }
  .stat-item:last-child { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.05); }
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(min-width: 700px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media(min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.service-card { display: flex; flex-direction: column; cursor: pointer; position: relative; overflow: hidden; padding: 0; }
.svc-img-wrap { width: 100%; height: 150px; position: relative; overflow: hidden; }
@media(min-width: 600px) { .svc-img-wrap { height: 200px; } }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,1,.5,1); }
.svc-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--glass-bg, rgba(15,18,25,.7)) 0%, transparent 100%); }
.service-card:hover .svc-img-wrap img { transform: scale(1.1); }
.service-card:hover { transform: translateY(-6px); border-color: var(--saffron); box-shadow: 0 16px 32px rgba(0,0,0,.5), 0 0 16px var(--saffron-light); }

.svc-content { padding: 14px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 2; margin-top: -24px; }
.svc-icon-badge {
  width: 42px; height: 42px; border-radius: 12px; background: var(--bg-dark, #05070a);
  border: 1px solid var(--glass-border, rgba(255,255,255,.08)); display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--saffron); margin-bottom: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: all 0.4s ease; flex-shrink: 0;
}
.service-card:hover .svc-icon-badge { background: var(--saffron); color: #000; transform: rotate(5deg); }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 3vw, 22px); color: var(--white); margin-bottom: 6px; font-weight: 700; }
.svc-desc { font-size: 12px; color: var(--txt-m, #8a95a5); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.svc-price-tag {
  display: inline-block; padding: 6px 12px; border-radius: 7px;
  background: rgba(255,255,255,.04); font-size: 12px; color: var(--txt, #edf0f5); font-weight: 600;
  border-left: 2px solid var(--green);
}
.svc-price-tag span { color: var(--saffron); margin-left: 4px; }

/* =========================================================
   EXPERIENCE SECTION
   ========================================================= */
.exp-section { background: linear-gradient(135deg, rgba(15,18,25,.9), rgba(5,7,10,1)); border-top: 1px solid var(--glass-border, rgba(255,255,255,.08)); border-bottom: 1px solid var(--glass-border, rgba(255,255,255,.08)); }
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media(min-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.exp-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.75); }
.exp-image img { width: 100%; height: auto; }
.exp-image::before { content: ''; position: absolute; inset: 0; border: 2px solid rgba(255,255,255,.08); border-radius: 20px; z-index: 2; pointer-events: none; }
.exp-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 46px); margin-bottom: 18px; font-weight: 700;}
.exp-text p { font-size: 15px; line-height: 1.8; color: var(--txt-m, #8a95a5); margin-bottom: 16px; }
.exp-list { list-style: none; margin-top: 24px; padding-left: 0; }
.exp-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 15px; font-weight: 500; }
.exp-list i { color: var(--green); font-size: 18px; background: var(--green-light); padding: 9px; border-radius: 50%; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.2fr; gap: 50px; } }
.about-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.6); }
.about-img-wrap img { width: 100%; height: auto; transition: transform .8s cubic-bezier(.25,1,.5,1); }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 4vw, 42px); color: var(--white); margin-bottom: 16px; font-weight: 700;}
.about-content p { font-size: 15px; color: var(--txt-m, #8a95a5); line-height: 1.8; margin-bottom: 16px; }
.founder-strip {
  display: flex; align-items: center; gap: 14px; margin: 24px 0;
  padding: 18px; border-radius: 14px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05); border-left: 3px solid var(--saffron);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--saffron);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700;
  background: rgba(255,153,51,.12); color: var(--saffron);
}
.founder-name { font-size: 18px; font-family: 'Cormorant Garamond', serif; color: var(--white); font-weight: 700; }
.founder-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 4px; font-weight: 600; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width: 700px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-list-card { padding: 28px 24px; position: relative; overflow: hidden; }
.price-list-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--saffron), var(--green)); }
.price-list-head { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; margin-bottom: 20px; }
.price-list-head h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 4vw, 28px); color: var(--white); font-weight: 700; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,.07); font-size: 14px; transition: all 0.4s ease; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { padding-left: 8px; color: var(--white); border-bottom-color: var(--saffron); }
.price-row-name { font-weight: 500; }
.price-row-val { font-weight: 700; color: var(--saffron); font-size: 17px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-section { overflow: hidden; padding-bottom: 100px; }
.testi-track-wrap { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); }
.testi-track-wrap::before, .testi-track-wrap::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; pointer-events: none; }
@media(min-width: 600px) { .testi-track-wrap::before, .testi-track-wrap::after { width: 140px; } }
.testi-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-dark, #05070a), transparent); }
.testi-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-dark, #05070a), transparent); }
.testi-track { display: flex; width: max-content; gap: 16px; animation: scrollLeft 35s linear infinite; padding: 16px 0; }
@media(min-width: 600px) { .testi-track { gap: 24px; } }
.testi-track:hover { animation-play-state: paused; }
.testi-card { width: 290px; padding: 24px; flex-shrink: 0; border-top: 1px solid var(--green-glow, rgba(19, 136, 8, 0.35)); }
@media(min-width: 600px) { .testi-card { width: 380px; padding: 32px; } }
.testi-stars { color: var(--saffron); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--txt-m, #8a95a5); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--white); font-size: 15px; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================================
   BOOKING MODAL — MOBILE-FIRST
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 88888;
  background: rgba(0,0,0,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0; opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

@media(min-width: 640px) {
  .modal-overlay { align-items: center; padding: 16px; }
}

.modal-box {
  width: 100%; max-width: 680px;
  max-height: 92svh; overflow-y: auto;
  padding: 24px 16px calc(24px + var(--safe-bottom));
  transform: translateY(100%); transition: all 0.4s ease;
  scrollbar-width: none; position: relative;
  border-top: 3px solid var(--saffron);
  border-radius: 24px 24px 0 0;
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-overlay.active .modal-box { transform: translateY(0); }

@media(min-width: 640px) {
  .modal-box { padding: 36px 32px; border-radius: 24px; transform: translateY(30px) scale(.96); }
  .modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
}

.modal-handle { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); margin: 0 auto 20px; }
@media(min-width: 640px) { .modal-handle { display: none; } }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--txt-m, #8a95a5); cursor: pointer; transition: all 0.4s ease; border: none;
}
.modal-close:hover { background: var(--saffron); color: #000; transform: rotate(90deg); }

.modal-logo-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.modal-logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--saffron); box-shadow: 0 0 12px var(--saffron-glow); }
.modal-logo-text { text-align: left; }
.modal-logo-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); margin-bottom: 2px; font-weight: 700;}
.modal-logo-text p { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); font-weight: 600; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media(min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.fg { margin-bottom: 0; }
.fg-full { margin-bottom: 14px; }
label.fg-label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--txt-m, #8a95a5); margin-bottom: 7px; font-weight: 600; }
.fc {
  width: 100%; padding: 13px 14px; background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.09); border-radius: 10px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: all 0.4s ease;
  -webkit-appearance: none; appearance: none;
}
.fc:focus { border-color: var(--saffron); background: rgba(255,153,51,.05); box-shadow: 0 0 0 3px rgba(255,153,51,.12); }
.fc option { background: #0a0d14; color: var(--white); }
textarea.fc { resize: none; }

.services-section-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--txt-m, #8a95a5); font-weight: 600; display: block; margin-bottom: 10px; }
.services-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.svc-check-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px;
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(255,255,255,.07);
  border-radius: 10px; cursor: pointer; transition: all 0.4s ease; user-select: none;
}
.svc-check-item:hover { border-color: rgba(19,136,8,.5); background: var(--green-light); }
.svc-check-item:has(input:checked) { background: rgba(255,153,51,.08); border-color: var(--saffron); }
.svc-check-item input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.2); border-radius: 5px;
  background: transparent; cursor: pointer; transition: all 0.4s ease; position: relative;
}
.svc-check-item input:checked { background: var(--saffron); border-color: var(--saffron); }
.svc-check-item input:checked::after {
  content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #000; font-weight: 900; line-height: 1;
}
.svc-check-name { font-size: 12px; font-weight: 600; color: var(--white); line-height: 1.2; }
.svc-check-price { font-size: 11px; color: var(--saffron); margin-top: 2px; }

.btn-book-modal {
  width: 100%; padding: 16px; margin-top: 8px;
  background: linear-gradient(135deg, var(--saffron), #ffba6b);
  color: #000; border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.4s ease; box-shadow: 0 8px 24px var(--saffron-glow);
}
.btn-book-modal:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,153,51,.5); }
.btn-book-modal:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.err-box {
  background: rgba(255,50,50,.1); border: 1px solid rgba(255,50,50,.3);
  color: #ff7b7b; padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-size: 14px;
}


/*....................................*/

/*About page */

/*....................................*/



/* About Page Specific styles in style.css */
.banner-header { height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.banner-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,7,10,0.4) 0%, var(--bg) 100%); }
.banner-caption { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 20px; }
.banner-caption h5 { font-family: 'DM Sans', sans-serif; font-size: 14px; letter-spacing: 5px; text-transform: uppercase; color: var(--saffron); margin-bottom: 16px; }
.banner-caption h1 { font-size: clamp(48px, 8vw, 80px); text-shadow: 0 10px 40px rgba(0,0,0,0.8); margin-bottom: 20px; }
.tech-ownership { text-align: center; padding-bottom: 60px; border-bottom: 1px dashed rgba(255,255,255,0.1); margin-bottom: 80px; }
.tech-ownership-logo { max-height: 80px; width: auto; margin: 25px auto 35px; display: block; transition: var(--r); filter: drop-shadow(0 0 10px rgba(255,255,255,0.05)); }
.tech-link-inline { color: var(--saffron); text-decoration: none; font-weight: 600; }
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 120px; }
.story-block.reverse { direction: rtl; }
.story-block.reverse .story-text { direction: ltr; }
@media(max-width: 991px) { .story-block, .story-block.reverse { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; direction: ltr; } }
.story-img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--bezier); }
.story-text { padding: 20px 0; }
.story-quote { padding-left: 24px; border-left: 3px solid var(--saffron); margin: 32px 0; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--white); }
.founder-sign-box { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.founder-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--saffron); }
.promise-section { background: linear-gradient(135deg, rgba(15,18,25,0.8), rgba(5,7,10,0.9)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 100px 0; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
@media(max-width: 900px){ .promise-grid { grid-template-columns: 1fr; } }
.promise-card { background: var(--glass-bg); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px 30px; text-align: center; }
.promise-icon { width: 70px; height: 70px; margin: 0 auto 24px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--saffron); }