/* Spa Elysium — Layout (sections, grids, spacing) */

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background-color: var(--bg);
  background-image:
    linear-gradient(to bottom, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.70) 60%, rgba(6,6,6,0.88) 100%),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=80&fit=crop');
  background-size: cover; background-position: center;
  position: relative;
}
.hero-content { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.hero-logo-large { display: flex; justify-content: center; margin-bottom: 20px; animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
.hero-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--green); border: 1px solid var(--green); padding: 6px 20px; display: inline-block; margin-bottom: 20px; animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: 56px; color: var(--text); line-height: 1.15; margin: 0; animation: fadeUp 0.6s ease both; animation-delay: 0.7s; }
.hero-h1 .highlight { color: var(--green); }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: #777; letter-spacing: 1px; margin-top: 12px; animation: fadeUp 0.6s ease both; animation-delay: 0.8s; }
.hero-subtext { font-family: 'Inter', sans-serif; font-size: 15px; color: #666; max-width: 560px; margin: 16px auto 28px; line-height: 1.9; animation: fadeUp 0.6s ease both; animation-delay: 0.9s; }
.hero-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; font-family: 'Inter', sans-serif; font-size: 12px; color: #555; margin-bottom: 28px; animation: fadeUp 0.6s ease both; animation-delay: 1.0s; }
.hero-trust-divider { color: #222; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.6s ease both; animation-delay: 1.1s; }
.hero-note { font-family: 'Inter', sans-serif; font-size: 12px; color: #444; margin-top: 16px; animation: fadeUp 0.6s ease both; animation-delay: 1.2s; }
.hero-arrow { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--green); font-size: 22px; animation: bounce 2s infinite; }

/* ── STATS ── */
#stats { background: #0D0D0D; padding: 36px 0; border-top: 1px solid #1A1A1A; border-bottom: 1px solid #1A1A1A; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); text-align: center; }
.stat-item { padding: 8px 16px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: var(--green); opacity: 0.3; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--green); line-height: 1.2; }
.stat-label { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: #555; margin-top: 4px; }

/* ── OFFER BANNER ── */
#offer { background: linear-gradient(#0A1A0C, #0A0A0A); border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); padding: 28px 0; }
.offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.offer-badge { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--green); text-transform: uppercase; animation: pulse-opacity 2s infinite; }
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); margin: 8px 0 4px; }
.offer-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #555; }

/* ── ABOUT ── */
#about { background: var(--bg); padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 60fr 40fr; gap: 56px; align-items: start; }
.about-para { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; line-height: 2; margin-bottom: 16px; }
.about-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 20px 0; }
.about-mini-item { font-family: 'Inter', sans-serif; font-size: 13px; color: #666; }
.about-ctarow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.about-img-wrapper { position: relative; }
.about-img-wrapper img { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; }
.about-float-card { position: absolute; bottom: -1px; left: -1px; background: var(--green); padding: 18px 22px; border-radius: 0 4px 0 4px; }
.about-float-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #fff; line-height: 1.3; }
.about-float-sub { font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── SERVICES ── */
#services { background: #0D0D0D; padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #111; border: 1px solid #1A1A1A; border-radius: 4px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.service-card:hover { border-color: var(--green); transform: translateY(-5px); }
.service-card img { width: 100%; height: 280px; object-fit: cover; }
.service-card-content { padding: 28px; }
.service-badge { font-family: 'Inter', sans-serif; font-size: 10px; color: var(--green); letter-spacing: 2px; text-transform: uppercase; }
.service-h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--text); margin: 8px 0 10px; }
.service-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 18px; }
.service-duration { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--green); margin-bottom: 18px; }

/* ── MASSAGE MENU ── */
#massages { padding: 90px 0; }
.massage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.massage-card { background: #111; border: 1px solid #1A1A1A; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.massage-card:hover { border-color: var(--green); transform: translateY(-5px); }
.massage-img-wrap { position: relative; flex-shrink: 0; }
.massage-img-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; }
.massage-badge { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.75); color: var(--green); font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.massage-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.massage-duration { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--green); letter-spacing: 1px; margin-bottom: 6px; }
.massage-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); margin: 0 0 10px; }
.massage-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: #666; line-height: 1.8; flex: 1; margin-bottom: 12px; }
.massage-confirm { font-family: 'Inter', sans-serif; font-size: 11px; color: #555; margin-bottom: 14px; }
.massage-btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.massage-btn-row .btn-wa { flex: 1; min-width: 0; text-align: center; padding: 9px 10px; font-size: 12px; }
.massage-btn-row .btn-outline { flex: 1; min-width: 0; text-align: center; padding: 9px 10px; font-size: 12px; }

/* ── SERVICE DETAIL ── */
#service-detail { background: var(--bg); padding: 90px 0; }
.detail-header { text-align: center; margin-bottom: 64px; }
.detail-block { display: grid; grid-template-columns: 60fr 40fr; gap: 56px; align-items: center; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(45,122,58,0.15); }
.detail-block.reverse { grid-template-columns: 40fr 60fr; direction: rtl; }
.detail-block.reverse > * { direction: ltr; }
.detail-block:last-of-type { border-bottom: none; margin-bottom: 0; }
.detail-h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--text); margin: 0 0 16px; }
.detail-para { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; line-height: 2; margin-bottom: 20px; }
.detail-benefits { list-style: none; padding: 0; margin: 0 0 16px; }
.detail-benefits li { font-family: 'Inter', sans-serif; font-size: 13px; color: #666; padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.detail-benefits li::before { content: '●'; color: var(--green); font-size: 8px; flex-shrink: 0; }
.detail-duration { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--green); margin-bottom: 20px; }
.detail-ctarow { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-img { height: 320px; width: 100%; object-fit: cover; border-radius: 4px; }
.detail-cta-center { text-align: center; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* ── WHY CHOOSE US ── */
#why { background: #0D0D0D; padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.why-card { background: #111; border: 1px solid #1A1A1A; padding: 24px 20px; border-radius: 2px; transition: border-left 0.3s, border-color 0.3s; }
.why-card:hover { border-left: 3px solid var(--green); border-color: var(--green); }
.why-emoji { font-size: 24px; }
.why-h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--text); margin: 10px 0 6px; }
.why-desc { font-family: 'Inter', sans-serif; font-size: 12px; color: #555; line-height: 1.7; }

/* ── BENEFITS ── */
#benefits { background: var(--bg); padding: 90px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green); margin: 0 0 18px; }
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li { font-family: 'Inter', sans-serif; font-size: 13px; color: #555; padding: 7px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #111; }
.benefit-list li::before { content: '●'; color: var(--green); font-size: 8px; flex-shrink: 0; }

/* ── FACILITIES ── */
#facilities { background: #0D0D0D; padding: 90px 0; }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.facility-card { background: #111; border: 1px solid #1A1A1A; border-radius: 4px; overflow: hidden; transition: border-color 0.3s; }
.facility-card:hover { border-color: var(--green); }
.facility-card-img { overflow: hidden; }
.facility-card-img img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s; }
.facility-card:hover .facility-card-img img { transform: scale(1.04); }
.facility-card-name { padding: 14px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text); }

/* ── COUPLE ── */
#couple { padding: 90px 0; background: linear-gradient(to right, #0A0A0A 55%, #071008 100%); }
.couple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.couple-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.couple-badge { border: 1px solid var(--green); padding: 6px 14px; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--green); letter-spacing: 1px; border-radius: 2px; }
.couple-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; border: 1px solid var(--green); }
.couple-note { font-family: 'Inter', sans-serif; font-size: 12px; color: #444; margin-top: 10px; }

/* ── GALLERY ── */
#gallery { background: var(--bg); padding: 90px 0; }
.gallery-masonry { columns: 4; column-gap: 16px; margin-bottom: 36px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 4px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; border-radius: 4px; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(45,122,58,0); transition: background 0.3s; border-radius: 4px; }
.gallery-item:hover::after { background: rgba(45,122,58,0.1); }

/* ── AREAS ── */
#areas { background: #0D0D0D; padding: 90px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 36px; }
.area-badge { background: #111; border: 1px solid #1A1A1A; padding: 12px 18px; font-family: 'Inter', sans-serif; font-size: 13px; color: #555; text-align: center; border-radius: 2px; transition: border-color 0.3s, color 0.3s; }
.area-badge:hover { border-color: var(--green); color: var(--text); }
.areas-seo { max-width: 780px; margin: 0 auto; padding-top: 36px; }
.areas-seo p { font-family: 'Inter', sans-serif; font-size: 14px; color: #444; line-height: 2; margin-bottom: 16px; }

/* ── CONTACT ── */
#contact { background: #0D0D0D; padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info-block { border-left: 3px solid var(--green); padding-left: 22px; }
.contact-spa-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); margin-bottom: 4px; }
.contact-spa-tag { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--green); letter-spacing: 1px; margin-bottom: 20px; }
.contact-address { font-family: 'Inter', sans-serif; font-size: 14px; color: #555; line-height: 2.4; }
.contact-links { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-links a, .contact-links span { font-family: 'Inter', sans-serif; font-size: 14px; }
.contact-links a:hover { opacity: 0.8; }
.contact-map iframe { width: 100%; height: 420px; border: 0; border-radius: 4px; filter: grayscale(15%); display: block; }
.contact-btns { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

/* ── BOOKING ── */
#booking { background: var(--bg); padding: 90px 0; }
.booking-form-wrap { max-width: 640px; margin: 0 auto; background: #0D0D0D; border: 1px solid #1A1A1A; padding: 40px 36px; border-radius: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 4px; }
.form-label { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #555; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  background: #111; border: 1px solid #1A1A1A; color: var(--text);
  padding: 13px 15px; font-family: 'Inter', sans-serif; font-size: 14px;
  border-radius: 2px; width: 100%; outline: none; transition: border-color 0.2s; margin-bottom: 4px;
}
.form-input::placeholder, .form-textarea::placeholder { color: #333; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-select option { background: #111; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { font-family: 'Inter', sans-serif; font-size: 11px; color: #e05555; min-height: 16px; margin-bottom: 8px; }
.form-success { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green); text-align: center; margin-top: 16px; }
.booking-below { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.booking-urgency { font-family: 'Inter', sans-serif; font-size: 12px; color: #444; text-align: center; margin-top: 14px; line-height: 2; }

/* ── LOCAL SEO ── */
#seo-content { background: #060606; padding: 80px 0; }
.seo-inner { max-width: 860px; margin: 0 auto; }
.seo-main-h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text); margin-bottom: 40px; }
.seo-block { margin-bottom: 32px; }
.seo-h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #777; margin-bottom: 10px; }
.seo-p { font-family: 'Inter', sans-serif; font-size: 14px; color: #444; line-height: 2; }

/* ── FINAL CTA ── */
#final-cta {
  padding: 100px 0; text-align: center; background: #071008;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(45,122,58,0.12) 0%, transparent 65%);
}
.final-cta-h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--text); margin: 12px 0 20px; }
.final-cta-para { font-family: 'Inter', sans-serif; font-size: 15px; color: #555; max-width: 480px; margin: 0 auto 36px; line-height: 1.9; }
.final-cta-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.final-cta-btns a { min-width: 280px; }
.final-cta-note { font-family: 'Inter', sans-serif; font-size: 12px; color: #333; margin-top: 14px; line-height: 2; }

/* ── FOOTER ── */
footer { background: #060606; border-top: 1px solid #111; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 40px; }
.footer-col-title { font-family: 'Inter', sans-serif; font-size: 10px; color: #555; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-link { display: block; font-family: 'Inter', sans-serif; font-size: 13px; color: #444; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: var(--green); }
.footer-divider { border: none; border-top: 1px solid #0D0D0D; margin: 0 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-bottom: 24px; }
.footer-copy { font-family: 'Inter', sans-serif; font-size: 11px; color: #333; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: 'Inter', sans-serif; font-size: 11px; color: #333; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--green); }
