/*
Theme Name: Curvy & Curly
Theme URI: https://curvyandcurly.com
Author: Ash
Author URI: https://curvyandcurly.com
Description: A warm, elegant single-page theme for Curvy & Curly — Ash. Fully customisable via the WordPress Customizer. Features hero, about, guidelines, services, contact and social sections.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: curvy-and-curly
Tags: one-page, custom-colors, custom-header, custom-menu, featured-images, full-width-template
*/

/* ───────────────────────────────────────
   Base reset & fonts
─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--cc-text-dark);
  background: var(--cc-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
nav#mainNav.scrolled {
  background: rgba(253,254,249,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cc-text-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--cc-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cc-sage-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cc-text-dark);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cc-sage-pale) 0%, var(--cc-sage-light) 40%, var(--cc-sage) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,230,195,0.5), transparent 70%);
  animation: floatBlob 12s ease-in-out infinite alternate;
}
@keyframes floatBlob {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cc-text-muted);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--cc-text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--cc-text-muted);
  max-width: 440px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--cc-text-dark);
  color: var(--cc-cream);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-cta:hover {
  background: var(--cc-sage-dark);
  transform: translateY(-2px);
}
.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 40px 40px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  display: block;
}
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 40px 40px;
  background: linear-gradient(160deg, var(--cc-sage) 0%, var(--cc-sage-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.hero-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 195px 195px 35px 35px;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── SECTIONS COMMON ─── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-sage-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cc-text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ─── ABOUT ─── */
.about { background: var(--cc-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  display: block;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--cc-sage-light), var(--cc-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.about-content p {
  color: var(--cc-text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ─── GUIDELINES ─── */
.guidelines { background: var(--cc-sage-pale); }
.guidelines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.guide-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.guide-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.guide-card h3 .icon { font-size: 1.3rem; }
.guide-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.guide-card ul li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--cc-text-muted);
  font-size: 0.95rem;
}
.guide-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.guide-do ul li::before   { background: var(--cc-sage-dark); }
.guide-dont ul li::before { background: var(--cc-accent-rose); }

/* ─── SERVICES ─── */
.services { background: var(--cc-cream); }
.services-intro {
  max-width: 600px;
  color: var(--cc-text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--cc-sage-pale);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(138,171,110,0.15);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cc-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-card p { color: var(--cc-text-muted); font-size: 0.9rem; }

/* ─── CONTACT ─── */
.contact { background: var(--cc-sage-pale); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: var(--cc-text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cc-sage);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--cc-text-dark);
  background: var(--cc-cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cc-sage-dark);
  box-shadow: 0 0 0 3px rgba(138,171,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--cc-text-dark);
  color: var(--cc-cream);
  border: none;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s, transform 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--cc-sage-dark); transform: translateY(-1px); }

/* ─── SOCIALS BAR ─── */
.socials-strip { text-align: center; padding: 3rem 2rem; background: var(--cc-cream); }
.socials-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cc-text-light);
  margin-bottom: 1.2rem;
}
.social-icons { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cc-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cc-text-dark);
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--cc-sage-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(138,171,110,0.3);
}
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }

/* ─── FOOTER ─── */
footer {
  background: var(--cc-text-dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cc-sage); }
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--cc-sage); }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-inner { padding-top: 7rem; }
  .hero-image-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cc-cream);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 1rem;
  }
  .nav-toggle { display: flex; }
  .services-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 1.2rem; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; }

/* ─── NAV BOOK BUTTON ─── */
.nav-book {
  background: var(--cc-text-dark) !important;
  color: var(--cc-cream) !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 4px;
  transition: background 0.3s !important;
}
.nav-book:hover { background: var(--cc-sage-dark) !important; }

/* ─── HERO CTA GROUP ─── */
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.hero-cta--wa { background: #25D366; color: #fff; }
.hero-cta--wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.hero-cta--phone { background: var(--cc-text-dark); color: var(--cc-cream); }
.hero-cta--phone:hover { background: var(--cc-sage-dark); transform: translateY(-2px); }

/* ─── ABOUT CTA ─── */
.about-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}
.about-cta--wa { background: #25D366; color: #fff; }
.about-cta--wa:hover { background: #1ebe5d; }
.about-cta--phone { background: transparent; color: var(--cc-text-dark); border: 1.5px solid var(--cc-sage-dark); }
.about-cta--phone:hover { background: var(--cc-sage-pale); }

/* ─── RATES GRID ─── */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.rate-card {
  background: var(--cc-sage-pale);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rate-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(138,171,110,0.15); }
.rate-card--featured {
  background: var(--cc-text-dark);
  color: #fff;
}
.rate-card--featured .rate-card__desc,
.rate-card--featured .rate-duration { color: rgba(255,255,255,0.7); }
.rate-card--featured .rate-price { color: var(--cc-sage); }
.rate-card--featured h3 { color: #fff; }
.rate-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cc-sage-dark);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.rate-card__icon { font-size: 2rem; }
.rate-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
}
.rate-card__desc { color: var(--cc-text-muted); font-size: 0.9rem; }
.rate-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.rate-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(138,171,110,0.2);
}
.rate-card--featured .rate-list li { border-bottom-color: rgba(255,255,255,0.1); }
.rate-duration { font-size: 0.9rem; color: var(--cc-text-muted); }
.rate-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--cc-sage-dark); }
.rate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
  margin-top: auto;
}
.rate-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.rate-btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ─── VIRTUAL MENU ─── */
.virtual { background: var(--cc-text-dark); color: #fff; }
.virtual .section-label { color: var(--cc-sage); }
.virtual .section-title { color: #fff; }
.virtual .services-intro { color: rgba(255,255,255,0.6); }
.virtual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.virtual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s, transform 0.3s;
}
.virtual-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.virtual-card__emoji { font-size: 1.8rem; flex-shrink: 0; }
.virtual-card__body { flex: 1; }
.virtual-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.virtual-card__body p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.virtual-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cc-sage);
  flex-shrink: 0;
  white-space: nowrap;
}
.virtual-cta { text-align: center; margin-top: 3rem; }

/* ─── CONTACT CTA SECTION ─── */
.contact-cta { background: var(--cc-sage-pale); }
.contact-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-cta__inner p { color: var(--cc-text-muted); margin-bottom: 0.8rem; }
.contact-note { font-style: italic; color: var(--cc-sage-dark) !important; }
.contact-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ─── FOOTER WA LINK ─── */
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 0.8rem;
  transition: opacity 0.3s;
}
.footer-wa:hover { opacity: 0.8; }

/* ─── RESPONSIVE — new sections ─── */
@media (max-width: 900px) {
  .rates-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .virtual-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta { justify-content: center; }
  .virtual-grid { grid-template-columns: 1fr; }
  .virtual-card { flex-direction: column; gap: 0.5rem; }
  .virtual-card__price { font-size: 1.2rem; }
  .about-cta-group { flex-direction: column; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
}
