/* Vivo Pilates — Kurumsal Tasarım Sistemi */
:root{
  /* Vivo Pilates Kurumsal Renk Paleti */
  --vivo-sage:#828877;        /* Ana marka rengi - sage yeşil */
  --vivo-taupe:#C9B197;       /* Warm taupe - CTA ve vurgular */
  --vivo-beige:#BBAC9D;       /* Soft beige - destekleyici */
  --vivo-warm-gray:#A29482;   /* Warm gray - secondary */
  --vivo-cream:#E3DBD2;       /* Light cream - backgrounds */
  --vivo-dark:#3A3929;        /* Koyu yeşil - metinler ve kontrast */
  
  /* Sistem Renkleri */
  --ink:#3A3929;              /* Ana metin - vivo-dark */
  --paper:#FBFBF9;            /* Sayfa arkaplanı */
  --card:#FFFFFF;             /* Kart arkaplanı */
  --teal:#828877;             /* Sage - vivo-sage */
  --teal-dark:#3A3929;        /* Koyu - vivo-dark */
  --teal-tint:#E3DBD2;        /* Açık - vivo-cream */
  --coral:#C9B197;            /* CTA - vivo-taupe */
  --coral-dark:#A29482;       /* CTA dark - vivo-warm-gray */
  --coral-tint:rgba(201,177,151,0.12); /* CTA tint - vivo-taupe açık */
  --sun:#BBAC9D;              /* Accent - vivo-beige */
  --sun-tint:rgba(187,172,157,0.15);   /* Accent tint */
  --line:#E9E7E0;             /* Border rengi */
  --muted:#A29482;            /* Secondary metin - vivo-warm-gray */
}
*{box-sizing:border-box; margin:0; padding:0;}
html{overflow-x:hidden; width:100%;}
body{
  background:var(--paper); color:var(--ink);
  font-family:'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden; width:100%;
}
.wrap{max-width:1180px; margin:0 auto; padding:0 40px;}
@media (max-width:640px){
  .wrap{padding:0 20px;}
  nav.site-nav{padding:16px 20px;}
  .mobile-menu{padding:6px 20px 20px;}
}
img{max-width:100%; display:block;}
a{color:inherit;}

/* NAV */
nav.site-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 40px; max-width:1180px; margin:0 auto;
  position:sticky; top:0; z-index:100; background:rgba(251,251,249,0.92);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.nav-inner-shadow{position:sticky; top:0; z-index:99; height:0;}
.logo{display:inline-block; text-decoration:none;}
.logo-nav-img, .logo-img{
  height:80px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.logo-footer-img{
  height:90px;
  width:auto;
  max-width:200px;
  object-fit:contain;
  display:block;
  margin-bottom:12px;
}

@media (max-width:768px){
  .logo-nav-img, .logo-img{height:62px; max-width:150px;}
  .logo-footer-img{height:82px; max-width:160px;}
}
.navlinks{display:flex; gap:34px; font-size:14.5px; font-weight:500;}
.navlinks a{text-decoration:none; color:var(--ink);}
.navlinks a.active{color:var(--teal-dark); font-weight:700;}
.cta-btn{
  background:var(--coral); color:#fff !important; border:none; text-decoration:none;
  padding:13px 24px; border-radius:100px; font-size:14px; font-weight:700;
  box-shadow:0 10px 24px -8px rgba(201,177,151,0.45); display:inline-block;
}
.cta-btn:hover, .cta-btn:focus{
  color:#fff !important;
  text-decoration:none;
  filter:brightness(0.95);
}

/* PAGE HEADER (iç sayfalar için) */
.page-hero{
  background:var(--teal-tint); padding:64px 0 56px; margin-bottom:64px;
}
.page-hero .eyebrow{font-size:13px; font-weight:700; color:var(--teal-dark); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:14px; display:block;}
.page-hero h1{font-size:34px; font-weight:800; color:var(--teal-dark); letter-spacing:-0.02em; max-width:700px; line-height:1.2;}
.page-hero p{margin-top:16px; font-size:15.5px; color:#3A3929; max-width:560px; line-height:1.6; opacity:0.85;}
.page-hero .hero-description, .page-hero .eyebrow + p{color:#3A3929; opacity:0.85;}

/* PILL */
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; padding:8px 16px; border-radius:100px;
}
.pill-sun{background:var(--sun-tint); color:#8A5A0E;}
.pill-teal{background:var(--teal-tint); color:var(--teal-dark);}
.pill-coral{background:var(--coral-tint); color:var(--coral-dark);}

/* SECTION */
section{padding:56px 0;}
h2.section-title{font-size:28px; font-weight:800; color:var(--teal-dark); letter-spacing:-0.02em; margin-bottom:16px;}
.section-desc{font-size:15px; color:var(--muted); line-height:1.65; max-width:640px;}

/* CARDS */
.card{background:var(--card); border:1px solid var(--line); border-radius:20px; padding:28px;}
a.card{display:flex; flex-direction:column; height:100%;}
a.card .service-desc{flex-grow:1;}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:stretch;}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:20px;}

.service-icon{width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:800; margin-bottom:18px;}
.icon-coral{background:var(--coral-tint); color:var(--coral-dark);}
.icon-teal{background:var(--teal-tint); color:var(--teal-dark);}
.icon-sun{background:var(--sun-tint); color:#8A5A0E;}

.service-name{font-size:17px; font-weight:700; margin-bottom:8px;}
.service-desc{font-size:13.5px; color:var(--muted); line-height:1.55; margin-bottom:16px;}
.service-link{font-size:13px; font-weight:700; color:var(--teal-dark); text-decoration:none;}

/* LISTS */
ul.check-list{list-style:none;}
ul.check-list li{display:flex; gap:12px; padding:10px 0; font-size:14.5px; color:var(--ink); border-bottom:1px solid var(--line);}
ul.check-list li:before{content:"●"; color:var(--coral); font-size:8px; margin-top:7px;}

.note-box{background:var(--coral-tint); border-radius:14px; padding:18px 20px; font-size:13.5px; color:var(--coral-dark); line-height:1.6; margin:24px 0;}

/* METHODS */
.method-item{padding:20px 0; border-bottom:1px solid var(--line);}
.method-item:last-child{border-bottom:none;}
.method-title{font-weight:700; font-size:15.5px; margin-bottom:6px;}
.method-desc{font-size:13.5px; color:var(--muted); line-height:1.6;}

/* FAQ */
details.faq-item{border-bottom:1px solid var(--line); padding:16px 0;}
details.faq-item summary{font-weight:700; font-size:14.5px; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center;}
details.faq-item summary::-webkit-details-marker{display:none;}
details.faq-item summary:after{content:"+"; color:var(--teal-dark); font-size:18px; font-weight:400;}
details.faq-item[open] summary:after{content:"–";}
details.faq-item p{margin-top:10px; font-size:13.5px; color:var(--muted); line-height:1.65;}

/* CTA BAND */
.cta-band{background:var(--teal-dark); border-radius:24px; padding:48px 44px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.cta-band h2{color:#fff; font-size:22px; font-weight:800; margin-bottom:6px;}
.cta-band p{color:rgba(255,255,255,0.8); font-size:14px;}

/* FOOTER */
footer{margin-top:80px; border-top:1px solid var(--line); background:#fff;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding:64px 0;}
.footer-grid h4{font-size:13.5px; font-weight:700; margin-bottom:16px;}
.footer-grid a{display:block; font-size:13.5px; color:var(--muted); text-decoration:none; margin-bottom:10px;}
.footer-grid li{font-size:13.5px; color:var(--muted); margin-bottom:10px; list-style:none;}
.footer-bottom{border-top:1px solid var(--line); text-align:center; padding:20px 0; font-size:12px; color:var(--muted);}

@media (max-width:600px){
  .footer-grid{grid-template-columns:1fr; gap:32px; padding:48px 0;}
}

@media (max-width:640px){
  .about-preview-img{height:260px;}
  .about-preview{padding:40px 0;}
  .page-hero h1{font-size:26px;}
  .page-hero{padding:40px 0 36px; margin-bottom:40px;}
}
/* PLACEHOLDER IMAGE BLOB */
.photo-placeholder{
  background:linear-gradient(160deg,#E3DBD2,#C9B197);
  border-radius:42% 58% 65% 35% / 46% 40% 60% 54%;
  display:flex; align-items:center; justify-content:center; text-align:center;
  color:var(--vivo-dark); font-weight:600; font-size:13.5px; line-height:1.5; padding:30px;
}
.photo-blob-img{
  width:100%; height:100%; object-fit:cover;
  border-radius:60% 40% 50% 50% / 55% 45% 55% 45%;
  display:block;
}
.hero-photo{
  border-radius:60% 40% 50% 50% / 55% 45% 55% 45%;
  overflow:hidden;
}
@media (max-width:768px){
  .hero-photo, .photo-blob-img{border-radius:50%;}
}
.rect-photo{
  width:100%; height:100%; object-fit:cover; border-radius:20px; display:block;
}

@media (max-width:900px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .navlinks{display:none;}
  .process-grid{grid-template-columns:1fr !important;}
  .whobenefit-grid{grid-template-columns:1fr !important;}
}

/* LANDING PAGE EK BÖLÜMLERİ */
.subhead{font-size:16.5px; color:var(--muted); line-height:1.6; max-width:620px; margin-top:14px;}
.breadcrumb{font-size:12.5px; color:#3A3929; opacity:0.85; margin-bottom:14px;}
.breadcrumb a{color:var(--teal-dark); text-decoration:none; font-weight:600;}

.whobenefit-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:28px;}
.who-card{background:var(--teal-tint); border-radius:20px; padding:30px;}
.benefit-card{background:var(--coral-tint); border-radius:20px; padding:30px;}
.who-card h3, .benefit-card h3{font-size:16px; font-weight:800; margin-bottom:16px; color:var(--ink);}
.who-card ul, .benefit-card ul{list-style:none;}
.who-card li, .benefit-card li{display:flex; gap:10px; font-size:14px; padding:8px 0; line-height:1.5;}
.who-card li:before{content:"✓"; font-weight:800; color:var(--teal-dark); flex-shrink:0;}
.benefit-card li:before{content:"✓"; font-weight:800; color:var(--coral-dark); flex-shrink:0;}

.process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:28px;}
.process-step{position:relative; padding:26px 20px 20px; border:1px solid var(--line); border-radius:18px; background:#fff;}
.process-num{font-size:28px; font-weight:800; color:var(--teal-tint); -webkit-text-stroke:1.5px var(--teal-dark); margin-bottom:10px; display:block;}
.process-step h4{font-size:14.5px; font-weight:700; margin-bottom:8px;}
.process-step p{font-size:12.5px; color:var(--muted); line-height:1.55;}
.process-arrow{position:absolute; right:-14px; top:50%; transform:translateY(-50%); color:var(--line); font-size:18px; display:none;}
@media (min-width:901px){ .process-arrow{display:block;} }

.midcta{display:flex; align-items:center; justify-content:space-between; gap:20px; background:var(--paper); border:1.5px dashed var(--teal); border-radius:18px; padding:22px 26px; margin-top:36px; flex-wrap:wrap;}
.midcta p{font-size:14px; font-weight:700; color:var(--teal-dark);}

.related-links{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;}
.related-links a{background:#fff; border:1px solid var(--line); border-radius:100px; padding:9px 16px; font-size:12.5px; font-weight:600; text-decoration:none; color:var(--ink);}
.related-links a:hover{border-color:var(--teal);}

/* MEGA MENÜ (masaüstü) */
.nav-item-mega{position:static;}
.mega-trigger{display:flex; align-items:center; gap:6px; text-decoration:none; color:var(--ink); font-size:14.5px; font-weight:500; cursor:pointer; background:none; border:none; font-family:inherit;}
.chevron{transition:transform .25s ease; flex-shrink:0;}
.nav-item-mega:hover .chevron{transform:rotate(180deg);}
.mega-menu{
  position:absolute; left:0; right:0; top:calc(100% + 16px);
  background:#fff; border-radius:24px; box-shadow:0 40px 90px -30px rgba(19,42,37,0.30);
  padding:36px; display:grid; grid-template-columns:260px 1fr; gap:36px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
  transform:translateY(8px);
  z-index:150;
}
.nav-item-mega:hover .mega-menu{opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);}
.mega-left img{width:100%; height:210px; object-fit:cover; border-radius:18px; display:block;}
.mega-tagline{font-size:13px; color:var(--muted); line-height:1.6; margin-top:16px;}
.mega-right{display:grid; grid-template-columns:repeat(4,1fr); gap:10px; align-content:start;}
.mega-service{display:flex; flex-direction:column; align-items:flex-start; gap:14px; padding:20px 18px; border-radius:16px; text-decoration:none; color:inherit; transition:background .15s;}
.mega-service:hover{background:var(--teal-tint);}
.mega-icon{width:42px; height:42px; border-radius:12px; background:var(--teal-tint); color:var(--teal-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.mega-service:hover .mega-icon{background:#fff;}
.mega-icon svg{width:20px; height:20px;}
.mega-service strong{display:block; font-size:13.5px; font-weight:700; color:var(--ink); line-height:1.3;}
.mega-service small{display:block; font-size:11.5px; color:var(--muted); line-height:1.45; margin-top:5px;}
.mega-all-link{grid-column:1/-1; text-align:center; margin-top:8px; padding-top:20px; border-top:1px solid var(--line); font-size:13px; font-weight:700; color:var(--teal-dark); text-decoration:none;}

@media (max-width:1150px){
  .mega-menu{grid-template-columns:1fr; padding:28px;}
  .mega-left{display:none;}
  .mega-right{grid-template-columns:repeat(3,1fr);}
}

/* MOBİL MENÜ */
.mobile-toggle{display:none; background:none; border:none; cursor:pointer; padding:8px; color:var(--teal-dark); flex-shrink:0;}
@media (max-width:900px){
  .mobile-toggle{display:flex; align-items:center; justify-content:center;}
}
.mobile-menu{display:none; flex-direction:column; padding:6px 40px 20px; background:rgba(251,251,249,0.98); position:sticky; top:66px; z-index:98; border-bottom:1px solid var(--line);}
.mobile-menu.open{display:flex;}
.mobile-menu a{padding:13px 0; font-size:14.5px; font-weight:600; color:var(--ink); text-decoration:none; border-bottom:1px solid var(--line);}
.mobile-menu a:last-of-type{border-bottom:none;}
.mobile-menu .cta-btn{text-align:center; margin-top:12px;}

@media (max-width:900px){
  .mega-menu{display:none !important;}
}

/* HAKKIMIZDA ÖNİZLEME */
.about-preview{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center; padding:70px 0;}
.about-preview-img{position:relative; height:420px; border-radius:24px; overflow:hidden;}
.about-preview-img img{width:100%; height:100%; object-fit:cover;}
.about-mission{background:var(--teal-tint); border-radius:16px; padding:18px 20px; margin:20px 0;}
.about-mission strong{display:block; font-size:12.5px; color:var(--teal-dark); margin-bottom:4px;}
.about-mission p{font-size:13px; color:var(--ink); line-height:1.55;}
.about-points{margin:20px 0;}
.about-points li{display:flex; gap:10px; padding:8px 0; font-size:14px; list-style:none;}
.about-points li:before{content:"✓"; color:var(--teal-dark); font-weight:800;}

/* NEDEN BİZ - YENİDEN TASARIM */
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:36px;}
.why-card{background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px 24px; transition:transform .2s, box-shadow .2s;}
.why-card:hover{transform:translateY(-4px); box-shadow:0 24px 50px -24px rgba(19,42,37,0.25);}
.why-icon{width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.why-card h3{font-size:15.5px; font-weight:800; margin-bottom:8px;}
.why-card p{font-size:13px; color:var(--muted); line-height:1.55;}
.stat-strip{display:flex; justify-content:space-around; text-align:center; margin-top:44px; padding:32px; background:var(--teal-dark); border-radius:22px; flex-wrap:wrap; gap:20px;}
.stat-item{flex:1; min-width:130px;}
.stat-item strong{display:block; font-size:26px; font-weight:800; color:#fff;}
.stat-item span{font-size:12px; color:rgba(255,255,255,0.75);}

/* BLOG */
.blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:36px;}
.blog-card{background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden; display:flex; flex-direction:column;}
.blog-card img{width:100%; height:180px; object-fit:cover;}
.blog-card-body{padding:22px;}
.blog-cat{font-size:11px; font-weight:800; color:var(--coral-dark); text-transform:uppercase; letter-spacing:.04em;}
.blog-card h3{font-size:16px; font-weight:800; margin:10px 0 8px; line-height:1.35;}
.blog-card p{font-size:13px; color:var(--muted); line-height:1.55; margin-bottom:16px;}
.blog-card a.readmore{font-size:12.5px; font-weight:700; color:var(--teal-dark); text-decoration:none;}

/* ONLINE RANDEVU WIDGET */
.booking-section{background:var(--teal-dark); border-radius:32px; padding:56px 44px; margin:70px 0; color:#fff;}
.booking-head{text-align:center; max-width:600px; margin:0 auto 40px;}
.booking-head span.pill{background:rgba(255,255,255,0.12); color:#fff;}
.booking-head h2{font-size:30px; font-weight:800; margin:16px 0 10px;}
.booking-head p{font-size:14.5px; color:rgba(255,255,255,0.75);}
.booking-widget{background:#fff; border-radius:24px; padding:0; overflow:hidden; display:grid; grid-template-columns:1fr 1.2fr; color:var(--ink);}
.booking-side{position:relative; min-height:100%;}
.booking-side img{width:100%; height:100%; object-fit:cover; display:block; min-height:420px;}
.booking-steps{display:flex; gap:8px; padding:24px 28px 0;}
.b-step{flex:1; height:4px; background:var(--line); border-radius:4px; overflow:hidden;}
.b-step-fill{height:100%; width:0%; background:var(--coral); transition:width .3s;}
.booking-main{padding:12px 32px 32px;}
.booking-panel{display:none;}
.booking-panel.active{display:block;}
.cal-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
.cal-head strong{font-size:15px;}
.cal-nav{background:var(--teal-tint); border:none; width:30px; height:30px; border-radius:8px; cursor:pointer; color:var(--teal-dark); font-weight:800;}
.cal-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:6px; margin-bottom:8px;}
.cal-dow{font-size:10.5px; text-align:center; color:var(--muted); font-weight:700;}
.cal-day{aspect-ratio:1; display:flex; align-items:center; justify-content:center; border-radius:10px; font-size:13px; cursor:pointer; border:1px solid transparent; background:none;}
.cal-day.disabled{color:#D5D8D1; cursor:not-allowed;}
.cal-day.available:hover{background:var(--teal-tint); border-color:var(--teal);}
.cal-day.selected{background:var(--teal-dark); color:#fff; font-weight:700;}
.cal-day.empty{visibility:hidden;}
.slot-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:6px;}
.slot{padding:12px 8px; border-radius:12px; text-align:center; font-size:13px; font-weight:700; border:1.5px solid var(--line); cursor:pointer; background:#fff;}
.slot.available{border-color:var(--teal); color:var(--teal-dark);}
.slot.available:hover{background:var(--teal-tint);}
.slot.available.picked{background:var(--teal-dark); color:#fff; border-color:var(--teal-dark);}
.slot.booked{border-color:var(--coral-tint); color:#E0A79A; cursor:not-allowed; background:#FFF7F5; text-decoration:line-through;}
.b-nav-buttons{display:flex; justify-content:space-between; margin-top:24px;}
.b-btn-back{background:none; border:none; color:var(--muted); font-size:13px; font-weight:700; cursor:pointer;}
.b-btn-next{background:var(--coral); color:#fff; border:none; padding:12px 22px; border-radius:100px; font-size:13.5px; font-weight:700; cursor:pointer;}
.b-btn-next:disabled{background:var(--line); color:#fff; cursor:not-allowed;}
.b-summary{background:var(--teal-tint); border-radius:14px; padding:14px 18px; font-size:13px; color:var(--teal-dark); font-weight:600; margin-bottom:18px;}
.b-confirm{text-align:center; padding:30px 0;}
.b-confirm .check-circle{width:60px; height:60px; border-radius:50%; background:var(--teal-tint); color:var(--teal-dark); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:28px;}

/* TESTIMONIALS */
.testimonial-note{text-align:center; font-size:11.5px; color:var(--muted); margin-top:14px; margin-bottom:30px;}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px;}
.testi-card{background:#fff; border:1px solid var(--line); border-radius:20px; padding:26px;}
.testi-stars{color:var(--sun); font-size:14px; margin-bottom:14px; letter-spacing:2px;}
.testi-card p{font-size:13.5px; color:var(--ink); line-height:1.65; margin-bottom:16px; font-style:italic;}
.testi-author{display:flex; align-items:center; gap:10px;}
.testi-avatar{width:36px; height:36px; border-radius:50%; background:var(--teal-tint); color:var(--teal-dark); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:12px;}
.testi-author strong{font-size:13px; display:block;}
.testi-author span{font-size:11px; color:var(--muted);}

/* FORM ALANLARI (İletişim + Randevu Widget ortak kullanır) */
.form-field{margin-bottom:20px;}
.form-field label{display:block; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:9px;}
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--line); border-radius:12px;
  font-family:inherit; font-size:14px; background:var(--paper); color:var(--ink);
  transition:border-color .15s, background .15s; appearance:none; -webkit-appearance:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color:var(--teal); background:#fff; box-shadow:0 0 0 3px var(--teal-tint);
}
.form-field select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7570' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat; background-position:right 14px center; background-size:16px; padding-right:40px; cursor:pointer;
}
.form-field textarea{resize:vertical; min-height:96px; line-height:1.5;}
.form-field input::placeholder, .form-field textarea::placeholder{color:#A8AFA9;}

@media (max-width:900px){
  .about-preview{grid-template-columns:1fr; gap:28px;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .blog-grid{grid-template-columns:1fr;}
  .booking-widget{grid-template-columns:1fr;}
  .booking-side{display:none;}
  .testi-grid{grid-template-columns:1fr;}
  .stat-strip{display:grid; grid-template-columns:1fr 1fr; gap:28px 16px; text-align:left;}
  .stat-item{min-width:0;}
}
@media (max-width:640px){
  .booking-section{padding:36px 20px; border-radius:24px; margin:48px 0;}
  .booking-head h2{font-size:22px;}
  .booking-head p{font-size:13.5px;}
  .booking-main{padding:8px 4px 8px;}
  .slot-grid{grid-template-columns:repeat(2,1fr);}
}



/* FLOATING CONTACT WIDGET */
.floating-contact{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:1000;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.floating-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px -6px rgba(58,57,41,0.25);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  cursor:pointer;
  text-decoration:none;
  border:none;
}
.floating-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px -8px rgba(58,57,41,0.35);
}
.floating-btn svg{
  width:24px;
  height:24px;
  fill:currentColor;
}
.floating-phone{
  background:#C9B197;
  color:#fff;
}
.floating-whatsapp{
  background:#25D366;
  color:#fff;
}
.floating-instagram{
  background:linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color:#fff;
}

@media (max-width:640px){
  .floating-contact{
    left:16px;
    bottom:16px;
    gap:10px;
  }
  .floating-btn{
    width:50px;
    height:50px;
  }
  .floating-btn svg{
    width:22px;
    height:22px;
  }
}


/* Location SEO Section */
.location-seo-section { background: var(--vivo-cream, #E3DBD2); border-radius: 16px; margin: 0 auto 24px; padding: 36px !important; }
.location-seo-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.location-seo-title { font-size: 22px; font-weight: 700; color: var(--vivo-dark, #3A3929); margin-bottom: 10px; }
.location-seo-desc { font-size: 14px; color: #555; margin-bottom: 20px; line-height: 1.6; }
.location-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.location-tag { background: #fff; color: var(--vivo-dark, #3A3929); border: 1.5px solid var(--vivo-beige, #BBAC9D); border-radius: 100px; padding: 7px 18px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; }
.location-tag:hover { background: var(--vivo-taupe, #C9B197); color: #fff; border-color: var(--vivo-taupe, #C9B197); }

/* Service CTA Section */
.service-cta-section { margin-bottom: 40px; }
.service-cta-inner { text-align: center; }
.service-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-phone { background: var(--vivo-dark, #3A3929) !important; color: #fff !important; }
.cta-whatsapp { background: #25D366 !important; color: #fff !important; }
.cta-phone:hover { background: #2a2a1a !important; }
.cta-whatsapp:hover { background: #128C7E !important; }
@media (max-width: 600px) {
  .service-cta-btns { flex-direction: column; align-items: center; }
  .service-cta-btns .cta-btn { width: 100%; max-width: 340px; text-align: center; }
  .location-seo-section { padding: 24px 16px !important; }
}
