/* ===========================
   CSS Variables & Reset
=========================== */
:root {
  --primary: #C9A96E;
  --primary-dark: #A8863A;
  --primary-light: #E8D5B0;
  --secondary: #2D1B35;
  --secondary-light: #3E2A50;
  --accent: #E8899E;
  --accent-dark: #C96080;
  --accent-light: #FDEEF2;
  --bg: #FAF8F5;
  --bg-dark: #F7EDF2;
  --white: #FFFFFF;
  --text: #1E1E2E;
  --text-muted: #6B6B80;
  --border: #E8E0D8;
  --shadow-sm: 0 2px 8px rgba(45, 27, 53, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 27, 53, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 27, 53, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.25);
  --shadow-pink: 0 8px 32px rgba(232, 137, 158, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --nav-height: 80px;
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ===========================
   Typography
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Layout Utilities
=========================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--bg-dark);
}

.section-dark {
  background: linear-gradient(135deg, var(--secondary) 0%, #4A1028 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.6;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 137, 158, 0.5);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ===========================
   Navigation
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-logo-text {
  color: var(--secondary);
}

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

.navbar.scrolled .nav-link:hover {
  color: var(--accent);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

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

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

.nav-link.active,
.navbar.scrolled .nav-link.active {
  color: var(--accent);
}

.nav-cta {
  margin-left: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--secondary);
}

/* ===========================
   Hero Section
=========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, #3D0E23 50%, var(--accent-dark) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,53,0.92) 0%, rgba(45,27,53,0.6) 50%, rgba(45,27,53,0.85) 100%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
  pointer-events: none;
}

.hero-decoration-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -200px;
}

.hero-decoration-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 137, 158, 0.12);
  border: 1px solid rgba(232, 137, 158, 0.35);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  animation: rotate 6s linear infinite;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3E2A50 0%, #2D1B35 50%, #1a0f22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(45,27,53,0.8) 100%);
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-1 {
  bottom: 40px;
  left: -40px;
}

.hero-card-2 {
  top: 60px;
  right: -40px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.hero-card-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   Services Overview
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 137, 158, 0.07) 0%, rgba(201, 169, 110, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
  border-color: var(--accent-light);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 96px;
  height: 96px;
  background: rgba(232, 137, 158, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.service-icon img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.service-card:hover .service-icon img {
  transform: scale(1.08);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}

/* ===========================
   Why Choose Us
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  overflow: hidden;
  transition: var(--transition);
}

.feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 24px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.feature-card:hover .feature-img img {
  transform: scale(1.05) translateZ(0);
}

.feature-card h3,
.feature-card p {
  padding: 0 28px;
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232, 137, 158, 0.45);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.why-visual {
  position: relative;
}

.why-image-stack {
  position: relative;
  height: 520px;
}

.why-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-img-main {
  width: 75%;
  height: 380px;
  bottom: 0;
  left: 0;
  background: var(--secondary-light);
}

.why-img-secondary {
  width: 55%;
  height: 260px;
  top: 0;
  right: 0;
  background: var(--accent-light);
}

.why-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.why-badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 80px;
  line-height: 1.4;
}

/* ===========================
   Testimonials
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-4px);
  border-color: var(--accent-light);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.translate-btn {
  margin-top: 16px;
  background: none;
  border: 1px solid var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.translate-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ===========================
   Packages
=========================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.package-card.featured {
  background: linear-gradient(160deg, var(--secondary) 0%, #1a0f22 100%);
  border-color: var(--primary);
  transform: translateY(-16px);
  box-shadow: var(--shadow-gold);
}

.package-card.featured:hover {
  transform: translateY(-24px);
  box-shadow: 0 30px 80px rgba(201, 169, 110, 0.3);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-card.featured .package-name {
  color: var(--white);
}

.package-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-card.featured .package-description {
  color: rgba(255,255,255,0.65);
}

.package-price {
  margin-bottom: 28px;
}

.package-price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-card.featured .package-price-label {
  color: rgba(255,255,255,0.5);
}

.package-price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.package-price-amount .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.package-features {
  margin-bottom: 32px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-feature {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.package-feature:last-child {
  border-bottom: none;
}

.package-feature-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   Gallery
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,53,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

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

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

.gallery-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* ===========================
   CTA Section
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 100px solid rgba(255,255,255,0.03);
  top: -200px;
  right: -200px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.03);
  bottom: -150px;
  left: -150px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   Footer
=========================== */
.footer {
  background: #1a0f22;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

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

.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   Page Hero (Interior Pages)
=========================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #3D0E23 50%, var(--accent-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 137, 158, 0.30) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 137, 158, 0.20) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.page-hero-label {
  display: inline-block;
  background: rgba(232, 137, 158, 0.12);
  border: 1px solid rgba(232, 137, 158, 0.35);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero-title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

/* ===========================
   Services Page
=========================== */
.services-category {
  margin-bottom: 80px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: rgba(232, 137, 158, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--accent-light);
}

.service-detail-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-detail-body {
  padding: 24px;
}

.service-detail-name {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-detail-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-benefits {
  margin-bottom: 20px;
}

.service-detail-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}

.service-detail-benefit::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.service-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-detail-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===========================
   About Page
=========================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img:first-child {
  grid-row: span 2;
}

.about-text .section-label {
  display: block;
  margin-bottom: 12px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  text-align: center;
}

.mission-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.mission-card h3 {
  margin-bottom: 12px;
  color: var(--accent);
}

.mission-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

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

.team-photo {
  height: 240px;
  position: relative;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.team-info {
  padding: 20px 24px 28px;
}

.team-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

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

/* ===========================
   Booking Page
=========================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-label .required {
  color: #E53E3E;
  margin-left: 3px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 137, 158, 0.15);
}

.form-input.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.form-input::placeholder {
  color: #B0A8B0;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: #E53E3E;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.success-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.success-message.visible {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  animation: scaleIn 0.4s ease;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-text {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.sidebar-info-icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.sidebar-info-label {
  font-weight: 600;
  margin-bottom: 2px;
}

.sidebar-info-value {
  color: var(--text-muted);
}

/* ===========================
   Contact Page
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(232, 137, 158, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon-wrap {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-info-subvalue {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.map-placeholder {
  height: 300px;
  background: linear-gradient(160deg, #f0e8f0 0%, #e8e0f0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  border: 2px dashed var(--border);
  color: var(--text-muted);
  gap: 12px;
  font-size: 0.9rem;
}

.map-placeholder-icon {
  font-size: 2.5rem;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ===========================
   Contact Page — Info Cards
=========================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.contact-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-card-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.contact-card-link:hover {
  color: var(--accent-dark);
}

/* Contact page sidebar */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

/* ===========================
   FAQ Accordion
=========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow-pink);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

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

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(232, 137, 158, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

[dir="rtl"] .faq-question {
  text-align: right;
  flex-direction: row-reverse;
}

/* ===========================
   Scroll Animations
=========================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* ===========================
   Language Toggle Button
=========================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-right: 8px;
}

.lang-toggle::before {
  content: '🌐';
  font-size: 0.9rem;
}

.navbar.scrolled .lang-toggle {
  border-color: rgba(45,27,53,0.3);
  color: var(--text);
}

.lang-toggle:hover {
  background: rgba(232, 137, 158, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* ===========================
   Image Display Utilities
=========================== */
.why-img { overflow: hidden; }
.team-photo { overflow: hidden; }

.hero-image-wrapper img,
.service-icon img,
.service-detail-image img,
.category-icon img,
.why-img img,
.about-img img,
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-image-wrapper img,
.team-photo img { object-position: center top; }

.service-detail-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05) translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.gallery-item:hover img { transform: scale(1.05) translateZ(0); }

/* ===========================
   RTL Support
=========================== */
[dir="rtl"] {
  font-family: 'Tajawal', 'Inter', 'Segoe UI', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .nav-logo-text,
[dir="rtl"] .footer-heading,
[dir="rtl"] .package-name,
[dir="rtl"] .form-title {
  font-family: 'Tajawal', Georgia, serif;
}

[dir="rtl"] .section-label::before { content: '—'; margin: 0 0 0 8px; }
[dir="rtl"] .section-label::after  { content: '—'; margin: 0 8px 0 0; }

[dir="rtl"] .hero-stats { direction: rtl; }

[dir="rtl"] .service-link { flex-direction: row-reverse; }

[dir="rtl"] .footer-link:hover { transform: translateX(-4px); }

[dir="rtl"] .nav-cta { margin-right: 16px; margin-left: 0; }

[dir="rtl"] .lang-toggle { margin-left: 8px; margin-right: 0; }

[dir="rtl"] select.form-input {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 44px;
}

[dir="rtl"] .package-badge {
  right: auto;
  left: 0;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
}

[dir="rtl"] .sidebar-info-item,
[dir="rtl"] .contact-info-item,
[dir="rtl"] .footer-contact-item,
[dir="rtl"] .feature-card,
[dir="rtl"] .testimonial-author,
[dir="rtl"] .service-detail-footer,
[dir="rtl"] .category-header {
  direction: rtl;
}

[dir="rtl"] .hero-badge { direction: rtl; }

[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 24px;
}

[dir="rtl"] .breadcrumb { direction: rtl; }

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

  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-sidebar { position: static; }

  .about-story { grid-template-columns: 1fr; }
  .about-image-grid { display: none; }

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

  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }

  .contact-layout { grid-template-columns: 1fr; }
}

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

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 15, 34, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: rgba(255,255,255,0.9);
  }

  .nav-cta { margin-left: 0; margin-top: 16px; }

  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .booking-form-wrapper { padding: 28px 20px; }
  .contact-form-wrapper { padding: 28px 20px; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }

  .contact-cards-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Numeric Typography
   Applies Inter + lining tabular numerals to all numeric elements.
   Does NOT change font-size, weight, color, or spacing.
=========================== */

/* Counter/stat elements that previously used the heading font (Playfair Display).
   Override to Inter so digits are clear and modern. */
.hero-stat-number,
.why-badge-number,
.stat-number,
.package-price-amount {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
}

/* Utility class — wrap any standalone number in <span class="numeric-value"> */
.numeric-value {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
}

/* Elements that already use Inter — add lining-nums only so digits
   render in their proportional lining form instead of old-style. */
.service-detail-price,
.hero-card-title,
.hero-card-subtitle,
.sidebar-info-value {
  font-variant-numeric: lining-nums tabular-nums;
}