/* ========================================
   LADIES SALON NEAR ME - Global Styles
   Migrated from Wix to Static HTML
   ======================================== */

/* Google Fonts loaded via <link> in HTML <head> for non-blocking render */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #acb39b;
  /* Olive green - header, accents */
  --color-primary-dark: #8a9278;
  /* Darker olive for hover */
  --color-bg-cream: #f2f1e1;
  /* Cream - main backgrounds */
  --color-bg-cream-light: #f8f7ee;
  /* Lighter cream variant */
  --color-text-dark: #2c2c2c;
  /* Near black - body text */
  --color-text-heading: #1a1a2e;
  /* Deep navy-black - headings */
  --color-text-muted: #666666;
  /* Muted gray */
  --color-white: #ffffff;
  --color-footer-bg: #2a2a2a;
  /* Dark gray footer */
  --color-footer-text: #cccccc;
  --color-whatsapp: #25d366;
  --color-cta-dark: #333333;
  /* Dark CTA buttons */
  --color-accent-dark: #3d3d3d;
  /* Dark accent sections */
  --color-link-hover: #d4a574;
  /* Warm gold hover */

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.7;
  background-color: var(--color-bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.3;
  font-weight: 400;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- HEADER / NAVIGATION --- */
.site-header {
  background-color: var(--color-primary);
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-heading);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-heading);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-text-heading);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-text-heading);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* --- HERO SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background-color: var(--color-bg-cream);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 50px;
  background-color: var(--color-bg-cream-light);
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--color-text-heading);
  margin: 15px auto;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-desc {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

.hero-phones {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hero-phones a {
  color: var(--color-text-heading);
  text-decoration: underline;
  text-decoration-color: transparent;
}

.hero-phones a:hover {
  text-decoration-color: var(--color-text-heading);
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.btn-primary {
  display: inline-block;
  background: var(--color-cta-dark);
  color: var(--color-white);
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- SCROLLING MARQUEE --- */
.marquee-bar {
  background: var(--color-primary);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
  gap: 0;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-heading);
  padding: 0 30px;
  letter-spacing: 1px;
}

.marquee-content span::after {
  content: ' ✦';
  margin-left: 30px;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- STANDARD CONTENT SECTIONS --- */
.section {
  padding: var(--section-padding);
}

.section-center {
  text-align: center;
  background: var(--color-bg-cream-light);
}

.section-center h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-center .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.section-center p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* --- SPLIT SECTIONS (Image + Text) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-height: 500px;
  overflow: hidden;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

.split-image {
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.split-text.bg-cream {
  background: var(--color-bg-cream-light);
}

.split-text.bg-dark {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.split-text.bg-dark h2,
.split-text.bg-dark h3 {
  color: var(--color-white);
}

.split-text.bg-dark p {
  color: var(--color-footer-text);
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.split-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.split-text .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose {
  padding: 70px 50px;
  background: var(--color-bg-cream-light);
}

.why-choose h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.why-choose .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.why-choose .intro-text {
  margin-bottom: 25px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.benefits-list {
  list-style: none;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 0.93rem;
  padding: 6px 0;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-list li .benefit-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
  display: inline-block;
  stroke: #8a9278;
  vertical-align: middle;
  margin-top: -2px;
}

.why-choose .summary-text {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  background: var(--color-bg-cream);
}

.testimonials .split-text {
  padding: 60px 50px;
}

.testimonials p.testimony-detail {
  margin-top: 15px;
}

/* --- BOOKING SECTION --- */
.booking-section {
  text-align: center;
  padding: 70px 40px;
  background: var(--color-bg-cream-light);
}

.booking-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.booking-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--color-bg-cream-light);
  padding: 60px 40px 30px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-icon {
  width: 24px;
  height: 24px;
  opacity: 0.65;
  margin: 0 auto 15px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-text-heading);
  margin-bottom: 25px;
}

.footer-contact {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--color-text-heading);
  text-decoration: underline;
}

.footer-contact a:hover {
  color: var(--color-link-hover);
}

.footer-email {
  margin-bottom: 25px;
}

.footer-email a {
  color: var(--color-text-heading);
  text-decoration: underline;
  font-size: 0.9rem;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 25px;
}

.footer-locations {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto 30px;
}

.footer-locations a {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: var(--color-text-heading);
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}

.footer-copyright a {
  text-decoration: underline;
  color: var(--color-text-heading);
}

/* --- PAGE HERO (Services & Areas) --- */
.page-hero {
  text-align: center;
  padding: 80px 40px 60px;
  background: var(--color-bg-cream-light);
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.page-hero .btn-primary {
  margin-top: 10px;
}

.page-hero-image {
  max-width: 800px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 8px;
}

.page-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- SERVICES PAGE SECTIONS --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse>* {
  direction: ltr;
}

.service-image {
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 45px;
  background: var(--color-bg-cream-light);
}

.service-text h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--color-text-heading);
}

.service-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* --- AREAS PAGE --- */
.areas-hero {
  text-align: center;
  padding: 80px 40px 40px;
  background: var(--color-bg-cream-light);
}

.areas-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.areas-hero h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-text-heading);
  margin-bottom: 25px;
  font-weight: 400;
}

.areas-contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.areas-contact-bar .whatsapp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}

.areas-contact-bar .phone-info {
  font-size: 0.95rem;
  line-height: 1.6;
}

.areas-contact-bar .phone-info a {
  display: block;
  color: var(--color-text-heading);
  font-weight: 500;
}

.areas-hero>p {
  max-width: 750px;
  margin: 0 auto 20px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* Service Zones Table */
.service-zones {
  padding: 60px 40px;
  background: var(--color-bg-cream);
}

.service-zones h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 35px;
}

.zones-table {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.zones-table th {
  background: var(--color-primary);
  color: var(--color-text-heading);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.zones-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--color-text-dark);
}

.zones-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

.zones-table tr:hover td {
  background: rgba(172, 179, 155, 0.1);
}

/* Area Sections */
.area-section {
  padding: 60px 40px;
}

.area-section.bg-cream {
  background: var(--color-bg-cream-light);
}

.area-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.area-section p {
  max-width: 750px;
  margin: 0 auto 20px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  text-align: center;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto 0;
}

.area-card {
  background: var(--color-white);
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.area-card p {
  font-size: 0.87rem;
  text-align: left;
  margin: 0;
}

/* Villa & Emirates Sections */
.villa-section {
  padding: 60px 40px;
  background: var(--color-bg-cream);
}

.villa-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.villa-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.villa-list,
.emirates-list {
  max-width: 600px;
  margin: 20px auto;
  list-style: none;
}

.villa-list li,
.emirates-list li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.villa-list li::before {
  content: '▸';
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.emirates-list li::before {
  content: '◆';
  color: var(--color-primary-dark);
  font-size: 0.6rem;
}

.ready-book {
  text-align: center;
  padding: 50px 40px;
  background: var(--color-primary);
}

.ready-book h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-text-heading);
}

.ready-book p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.ready-book a {
  font-weight: 600;
  text-decoration: underline;
}

/* --- LANDING PAGE DESIGN SYSTEM --- */

/* Split-screen Hero */
.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.landing-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: var(--color-cream);
}

.landing-hero-content h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--color-text-heading);
}

.landing-hero-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.landing-hero-image {
  overflow: hidden;
  position: relative;
}

.landing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image-text alternating sections */
.landing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
}

.landing-section.reverse {
  direction: rtl;
}

.landing-section.reverse>* {
  direction: ltr;
}

.landing-section-image {
  overflow: hidden;
  position: relative;
}

.landing-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.landing-section-image:hover img {
  transform: scale(1.03);
}

.landing-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 45px;
}

.landing-section-content .btn-primary,
.landing-hero-content .btn-primary {
  align-self: flex-start;
}

.landing-section-content h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--color-text-heading);
}

.landing-section-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* Pricing Card */
.pricing-card {
  background: #fff;
  border: 1px solid rgba(172, 179, 155, 0.3);
  border-radius: 12px;
  padding: 30px 28px;
  margin: 30px auto;
  max-width: 700px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-heading);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.pricing-table thead th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.pricing-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.pricing-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.pricing-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-dark);
}

.pricing-table tbody tr:hover {
  background: rgba(172, 179, 155, 0.06);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:last-child {
  font-weight: 600;
  color: var(--color-primary-dark, #6b7a5e);
  white-space: nowrap;
}

/* Full-width pricing section */
.pricing-section {
  padding: 60px 40px;
  background: var(--color-cream);
}

.pricing-section.alt {
  background: var(--color-white);
}

.pricing-section h2 {
  text-align: center;
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.pricing-section>p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 10px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.pricing-section .cta-button {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
}

/* Responsive */
@media (max-width: 900px) {

  .landing-hero,
  .landing-section {
    grid-template-columns: 1fr;
  }

  .landing-hero-image {
    height: 280px;
    order: -1;
  }

  .landing-hero-content {
    padding: 35px 24px;
  }

  .landing-hero-content h1 {
    font-size: 1.5rem;
  }

  .landing-section.reverse {
    direction: ltr;
  }

  .landing-section-image {
    height: 260px;
  }

  .landing-section-content {
    padding: 30px 24px;
  }

  .pricing-section {
    padding: 40px 20px;
  }

  .pricing-card {
    padding: 20px 16px;
    margin: 20px 12px;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 10px 10px;
  }
}


/* --- FAQ SECTION (GEO / AI / LLM Optimization) --- */
.faq-section {
  padding: 60px 40px;
  background: var(--color-white);
}

.faq-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}

.faq-section .faq-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 35px;
  color: var(--color-text-muted);
  font-size: 0.93rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-heading);
  transition: color 0.2s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-primary-dark, #8a9a7e);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* --- CORE WEB VITALS: Layout Containment --- */
.split-section,
.service-block,
.area-section,
.villa-section,
.booking-section,
.service-zones,
.testimonials {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 30px;
    order: 1;
  }

  .hero-image {
    min-height: 400px;
    order: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .split-section,
  .service-block {
    grid-template-columns: 1fr;
  }

  .split-section.reverse,
  .service-block.reverse {
    direction: ltr;
  }

  .split-image,
  .service-image {
    min-height: 350px;
  }

  .split-text,
  .service-text {
    padding: 45px 30px;
  }

  .area-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .section-center h2,
  .page-hero h1,
  .areas-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  .site-header {
    padding: 15px 20px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.3rem;
    font-family: var(--font-heading);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-image {
    min-height: 300px;
  }

  .split-text,
  .service-text {
    padding: 35px 20px;
  }

  .split-text h2,
  .service-text h2 {
    font-size: 1.5rem;
  }

  .page-hero {
    padding: 60px 20px 40px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .booking-section,
  .area-section,
  .villa-section,
  .service-zones {
    padding: 50px 20px;
  }

  .why-choose {
    padding: 50px 20px;
  }

  .site-footer {
    padding: 40px 20px 25px;
  }

  .zones-table {
    font-size: 0.8rem;
  }

  .zones-table th,
  .zones-table td {
    padding: 10px 12px;
  }

  .areas-contact-bar {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.35rem;
    padding-right: 70px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-center h2,
  .split-text h2,
  .service-text h2 {
    font-size: 1.35rem;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  /* Landing page hero mobile fixes */
  .landing-hero-content h1 {
    font-size: 1.35rem;
  }

  .landing-hero-content p {
    font-size: 0.88rem;
  }

  .landing-section-content h2 {
    font-size: 1.25rem;
  }

  /* Pricing card mobile */
  .pricing-card {
    padding: 18px 14px;
  }

  .pricing-table {
    font-size: 0.82rem;
  }

  .pricing-table thead th {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .pricing-table td {
    padding: 10px 8px;
  }

  /* Prevent WhatsApp button overlap */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  /* Footer mobile */
  .footer-locations {
    font-size: 0.72rem;
  }
}