/* =========================================================
   FARAS — Main Stylesheet
   =========================================================
   TABLE OF CONTENTS
   1. CSS Variables (Design Tokens)
   2. Font Imports
   3. Reset & Base
   4. Typography
   5. Utilities (Container, Buttons, Sections)
   6. Navigation
   7. Hero (Homepage)
   8. Page Hero (Sub-pages)
   9. Services Preview Grid
   10. Stats Strip
   11. About Teaser
   12. CTA Banner
   13. Services Full Page
   14. Team Page
   15. Price List Page
   16. Bookings Page
   17. Footer
   18. Animations
   19. Media Queries (Mobile)
   ========================================================= */


/* =========================================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ✏️ SWAP: Replace these with your actual brand colors
   ========================================================= */
:root {
  /* Primary brand colors */
  --primary:       #1A1A2E;   /* Deep navy — main brand color */
  --primary-light: #16213E;   /* Slightly lighter navy */
  --accent:        #C9A84C;   /* Gold accent — CTA, highlights */
  --accent-hover:  #b8943d;   /* Darker gold on hover */
  --accent-light:  #f5e6c0;   /* Soft gold tint for badges */

  /* Surface & background */
  --bg:            #FAFAF8;   /* Page background */
  --surface:       #F3F1EC;   /* Card / section alt background */
  --surface-dark:  #EBEBEB;   /* Borders, dividers */

  /* Text */
  --text:          #1A1A2E;   /* Body text */
  --text-muted:    #6B6B7B;   /* Secondary text */
  --text-light:    #FFFFFF;   /* White text on dark backgrounds */

  /* WhatsApp */
  --whatsapp:      #25D366;
  --whatsapp-hover:#1ebe5d;

  /* UI */
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.15);
  --transition:    all 0.3s ease;

  /* Spacing */
  --section-py:    5rem;
  --nav-height:    72px;
}


/* =========================================================
   2. FONT IMPORTS
   ✏️ SWAP: If using local fonts from assets/fonts/, replace
   these @font-face blocks. If using Google Fonts, keep the
   @import lines and remove @font-face blocks.
   ========================================================= */

/* Option A — Google Fonts (delete if using local fonts) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/*
  Option B — Local fonts (uncomment and fill in your actual filenames)
  ✏️ SWAP: Replace font file names and paths

  @font-face {
    font-family: 'YourDisplayFont';
    src: url('assets/fonts/YourDisplayFont-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'YourBodyFont';
    src: url('assets/fonts/YourBodyFont-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
*/

/* Font variables — update names if using local fonts */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;  /* ✏️ SWAP heading font */
  --font-body:    'DM Sans', system-ui, sans-serif;       /* ✏️ SWAP body font */
}


/* =========================================================
   3. RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}


/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.accent {
  color: var(--accent);
  font-style: italic;
}


/* =========================================================
   5. UTILITIES
   ========================================================= */

/* Container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-ghost--dark {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost--dark:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}
.btn-whatsapp img { width: 20px; height: 20px; }

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-full { width: 100%; justify-content: center; }


/* =========================================================
   6. NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
}

.logo-img {
  height: 75px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

/* CTA nav button */
.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   7. HERO (HOMEPAGE)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.85) 0%,
    rgba(26,26,46,0.55) 60%,
    rgba(26,26,46,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  max-width: 780px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}


/* =========================================================
   8. PAGE HERO (SUB-PAGES)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  /* Default: uses the primary color if no bg image is set */
  background-color: var(--primary);
  padding-bottom: 4rem;
  padding-top: var(--nav-height);
}

.page-hero--short {
  min-height: 40vh;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-light);
  animation: fadeUp 0.8s ease 0.2s both;
}

.page-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 0.25rem;
}


/* =========================================================
   9. SERVICES PREVIEW GRID (HOMEPAGE)
   ========================================================= */
.services-preview { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--surface-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-name {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.service-link:hover { color: var(--accent-hover); }

/* CTA card */
.service-card--cta {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
}
.service-card--cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-style: italic;
}
.service-card--cta::before { background: var(--accent); }


/* =========================================================
   10. STATS STRIP
   ========================================================= */
.stats-strip {
  background: var(--primary);
  padding: 3.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}


/* =========================================================
   11. ABOUT TEASER (HOMEPAGE)
   ========================================================= */
.about-teaser { background: var(--bg); }

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-teaser-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-teaser-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.about-teaser-content {
  padding-right: 1rem;
}

.about-teaser-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}


/* =========================================================
   12. CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* =========================================================
   13. SERVICES — FULL PAGE
   ========================================================= */
.services-full-grid {
  display: grid;
  gap: 1.5rem;
}

.service-full-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border: 1px solid var(--surface-dark);
  align-items: start;
  transition: var(--transition);
}

.service-full-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateX(4px);
}

.sfc-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sfc-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.sfc-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.sfc-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}


/* =========================================================
   14. TEAM PAGE
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-dark);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.06);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-card-overlay a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.team-card-overlay a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.team-card-overlay img { width: 18px; height: 18px; filter: brightness(10); }

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem !important;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* About story grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-story-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Values section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-icon img { width: 30px; height: 30px; object-fit: contain; }

.value-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.92rem; line-height: 1.7; }

.values-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-top: 0.25rem;
}

.values-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.values-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.6rem;
  top: 0.5rem;
}


/* =========================================================
   15. PRICE LIST PAGE
   ========================================================= */
.price-category {
  margin-bottom: 3.5rem;
}

.price-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.75rem;
}

.price-cat-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-dark);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table thead {
  background: var(--primary);
}

.price-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--surface-dark);
  transition: background 0.2s ease;
}

.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--surface); }

.price-table td {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  vertical-align: middle;
}

.price-table td:last-child { text-align: right; }

.price-amount {
  font-weight: 700;
  color: var(--primary) !important;
  font-family: var(--font-display);
  font-size: 1.05rem !important;
}

.price-row--featured {
  background: linear-gradient(to right, rgba(201,168,76,0.06), transparent) !important;
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.pricing-note {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.pricing-note p {
  font-size: 0.92rem;
  color: var(--primary);
}


/* =========================================================
   16. BOOKINGS PAGE
   ========================================================= */
.bookings-section { background: var(--bg); }

.bookings-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Booking Form */
.booking-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--surface-dark);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--surface-dark);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
}

.form-group input.error,
.form-group select.error {
  border-color: #e55;
}

.form-error {
  font-size: 0.8rem;
  color: #e55;
  min-height: 1rem;
  display: block;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  margin-bottom: 0.75rem;
}

/* Contact cards (right column) */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--surface-dark);
  box-shadow: var(--shadow-sm);
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--surface-dark);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.contact-action-btn:last-of-type { margin-bottom: 0; }

.contact-action-btn:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-action-btn--phone:hover { border-color: var(--primary); }
.contact-action-btn--email:hover { border-color: #4285f4; }
.contact-action-btn--whatsapp:hover { border-color: var(--whatsapp); }

.contact-btn-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-action-btn strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-action-btn small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Working hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--surface-dark);
}

.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

.hours-list span { color: var(--text-muted); }
.hours-list strong { color: var(--primary); }


/* =========================================================
   17. FOOTER
   ========================================================= */
.footer {
  background: var(--primary-light);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-link img { width: 18px; height: 18px; filter: brightness(10); }

.footer-nav h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a,
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}


/* =========================================================
   18. ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* =========================================================
   19. MEDIA QUERIES — MOBILE RESPONSIVE
   ========================================================= */

/* Large tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-grid { gap: 3rem; }
  .bookings-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height));
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: 0.75rem;
    padding: 0.9rem;
  }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Services preview */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { flex-wrap: wrap; }
  .stat-item { padding: 1rem 1.5rem; flex: 1 1 40%; }
  .stat-divider { display: none; }

  /* About teaser */
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-teaser-image img { height: 320px; }
  .about-teaser-badge { bottom: -0.75rem; right: -0.75rem; width: 90px; height: 90px; }

  /* About story */
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-image img { height: 280px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Services full page */
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-card-image { height: 240px; }

  /* Price table */
  .price-table thead { display: none; }
  .price-table tbody tr { display: flex; flex-wrap: wrap; padding: 1rem; gap: 0.5rem; }
  .price-table td { display: block; padding: 0.1rem 0; border: none; width: 100%; }
  .price-table td:last-child { text-align: left; }
  .price-amount { font-size: 1.1rem !important; }

  /* Bookings */
  .booking-form-wrap { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .booking-form-wrap { padding: 1.5rem 1rem; }
}
