/* ============================================
   BAKE YOU HAPPY — Brand Theme
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Great+Vibes&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Warm Rose Gold palette matched to brand logo */
  --bg-primary: #FBF5F0;
  --bg-secondary: #F5E6E0;
  --bg-card: #FFFFFF;
  --bg-elevated: #F0E0D8;

  --gold: #B76E79;
  --gold-light: #C9868F;
  --gold-dark: #9A5A63;
  --warm-gold: #C9A96E;
  --warm-gold-light: #D4B87E;
  --rose: #E8A0B5;
  --rose-light: #F0BCC9;
  --teal: #2A6B6B;
  --teal-light: #3A8585;
  --cream: #2C2420;
  --cream-muted: #4A3F38;

  --text-primary: #2C2420;
  --text-secondary: #5C4F46;
  --text-muted: #8A7E75;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Section Title System ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  font-style: italic;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 169, 110, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose);
  color: #fff;
}

.btn-rose:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 120, 138, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(242, 237, 230, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.navbar.scrolled .nav-logo {
  width: 40px;
  height: 40px;
}

.nav-brand-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 400;
  color: #F5F0E8;
  letter-spacing: 0;
  transition: color 0.4s var(--ease-smooth);
}

.nav-brand-text span {
  color: var(--warm-gold);
  transition: color 0.4s var(--ease-smooth);
}

.navbar.scrolled .nav-brand-text {
  color: var(--text-primary);
}

.navbar.scrolled .nav-brand-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4cfc7;
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease-smooth);
}

.navbar.scrolled .nav-links a {
  color: var(--cream-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  background: var(--gold) !important;
  color: #2C2420 !important;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #F5F0E8;
  transition: all 0.3s var(--ease-out);
  display: block;
}

.navbar.scrolled .hamburger span {
  background: var(--text-primary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(242, 237, 230, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 32, 0.45) 0%,
    rgba(44, 36, 32, 0.6) 40%,
    rgba(44, 36, 32, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-content .section-label {
  font-size: 12px;
  letter-spacing: 6px;
  margin-bottom: 24px;
  animation: fadeInUp 1s var(--ease-out) 0.3s both;
  color: #FFFFFF;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: italic;
  color: #F5D5A0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #F0EBE3;
  font-style: italic;
  margin-bottom: 48px;
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

.hero .section-label {
  color: #FFFFFF;
}

.hero .btn-outline {
  color: #F5F0E8;
  border-color: rgba(245, 240, 232, 0.4);
}

.hero .btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero .btn-primary {
  color: #2C2420;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9A8E85;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transition: all 0.5s var(--ease-out);
}

.service-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #F5F0E8;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: #d4cfc7;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.service-card:hover .service-card-desc {
  max-height: 100px;
  opacity: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #F5F0E8;
  margin-bottom: 4px;
}

.gallery-item-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #F5F0E8;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: inherit;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.booking-image {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);  
}

.booking-form-container {
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  position: relative;
}

.booking-form-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.booking-form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.booking-form-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a96e' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.deposit-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.1);
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.deposit-info .deposit-icon {
  font-size: 1.2rem;
}

.deposit-info strong {
  color: var(--gold);
}

.booking-submit {
  width: 100%;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-value {
  padding: 24px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-value-icon {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--warm-gold), rgba(201,169,110,0.3));
  margin-bottom: 16px;
  font-size: 0;
  overflow: hidden;
  line-height: 0;
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.about-value p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease-smooth);
  width: 100%;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-event {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s var(--ease-out);
  background: none;
  cursor: pointer;
}

.testimonial-nav-btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 28px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT / FOOTER SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0 60px;
  background: var(--bg-primary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--warm-gold), rgba(201,169,110,0.2));
  flex-shrink: 0;
  font-size: 0;
  overflow: hidden;
  line-height: 0;
}

.contact-detail-text {
  font-size: 0.95rem;
  color: var(--cream-muted);
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-areas {
  margin-top: 40px;
}

.contact-areas h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--cream-muted);
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-out);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

/* Stagger animations */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
}

.stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .container {
    padding: 0 30px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-image {
    height: 400px;
  }

  .booking-image::after {
    display: none;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    height: 400px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 380px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 10px;
  }

  .booking-form-container {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    padding: 36px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .booking-image {
    height: 300px;
  }
}

/* ============================================
   BOOKING SUCCESS MODAL
   ============================================ */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 36, 32, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.booking-modal.active {
  opacity: 1;
  pointer-events: all;
}

.booking-modal-content {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 60px;
  max-width: 520px;
  text-align: center;
  position: relative;
}

.booking-modal-content::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.modal-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.modal-close {
  padding: 14px 40px;
}

/* ============================================
   SPECIAL TOUCHES
   ============================================ */

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

/* Design number badge on gallery items */
.gallery-design-number {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(44, 36, 32, 0.75);
  color: var(--warm-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float-label {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #fff;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp CTA Button */
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* WhatsApp Booking Section */
.booking-whatsapp-cta {
  text-align: center;
  padding: 40px;
}

.booking-whatsapp-cta .whatsapp-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.booking-whatsapp-cta .whatsapp-icon-large svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.booking-whatsapp-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.booking-whatsapp-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ============================================
   REAL PORTFOLIO — internal marker only
   (no visible badge; class used for code-level tracking)
   ============================================ */
.gallery-item.real-creation {
  /* intentionally blank — marker class only */
}

/* intentionally removed — real photos integrated directly into gallery grid */

/* intentionally removed — real photos integrated directly into gallery grid */
