/* =============================================
   EJ Pet Styles – CSS
   Theme: Warm luxury | Earthy amber + deep teal
============================================= */

:root {
  --amber: #E8A838;
  --amber-light: #F5C96A;
  --amber-dark: #C88820;
  --teal: #1A5F5E;
  --teal-light: #2A8280;
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --dark: #1C1A17;
  --dark2: #2D2A24;
  --text: #3D3830;
  --text-muted: #7A7060;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(28,26,23,0.12);
  --shadow-sm: 0 4px 20px rgba(28,26,23,0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 30px; height: 30px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-paw {
  font-size: 64px;
  animation: pawBounce 0.8s ease-in-out infinite alternate;
}
.loader p {
  font-family: 'Playfair Display', serif;
  color: var(--amber);
  font-size: 24px;
  letter-spacing: 4px;
  animation: fadeInUp 0.8s 0.2s both;
}
@keyframes pawBounce {
  from { transform: scale(0.8) rotate(-10deg); }
  to { transform: scale(1.1) rotate(10deg); }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,168,56,0.12);
  color: var(--amber-dark);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before { content: '✦'; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--amber-dark);
}
.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 500px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 2px solid var(--amber);
  cursor: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232,168,56,0.4);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,168,56,0.5);
}
.btn-primary.full-width {
  width: 100%; justify-content: center; font-size: 16px;
}
.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  cursor: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-3px);
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0 32px;
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  height: 80px; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--amber);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(232,168,56,0.4);
}
.nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--amber-dark); background: rgba(232,168,56,0.08); }

.header-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.call-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  transition: color 0.2s;
}
.call-btn:hover { color: var(--amber-dark); }
.book-btn {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  transition: all 0.3s;
  white-space: nowrap;
}
.book-btn:hover {
  background: var(--amber);
  color: var(--dark);
  transform: translateY(-2px);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 32px 60px;
  position: relative; 
  overflow: hidden;
    background: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob1 {
  width: 500px; height: 500px;
  background: var(--amber-light);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.blob2 {
  width: 350px; height: 350px;
  background: var(--teal-light);
  bottom: 0; left: 20%;
  animation-delay: 2s; opacity: 0.2;
}
.blob3 {
  width: 250px; height: 250px;
  background: var(--cream-dark);
  top: 50%; left: -80px;
  animation-delay: 4s; opacity: 0.6;
}
@keyframes blobFloat {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(20px, -20px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  flex: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,94,0.1);
  color: var(--teal);
  padding: 8px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.5s both;
}
.hero-title em { font-style: italic; color: var(--amber-dark); }
.hero-desc {
  font-size: 18px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.7s both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.9s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeInUp 0.8s 1.1s both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--amber-dark);
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(60,50,30,0.15);
}

.hero-visual {
  position: relative; z-index: 2;
  flex: 0 0 380px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 0.8s 0.6s both;
}
.hero-card-main {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(232,168,56,0.4);
  animation: cardFloat 4s ease-in-out infinite;
}
.pet-emoji-big { font-size: 80px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.card-badge {
  background: var(--white);
  color: var(--teal);
  padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-float {
  position: absolute; font-size: 36px;
  background: var(--white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.fc1 { top: 10px; left: 30px; animation: floatEl 3s ease-in-out infinite; }
.fc2 { top: 30px; right: 0px; animation: floatEl 3s ease-in-out infinite 1s; }
.fc3 { bottom: 20px; left: 10px; animation: floatEl 3s ease-in-out infinite 2s; }
.fc4 { bottom: 30px; right: 20px; animation: floatEl 3s ease-in-out infinite 0.5s; }

@keyframes floatEl {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 12px; letter-spacing: 2px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  from { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  to { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 60%, var(--amber) 100%);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.about-emoji { font-size: 80px; }
.about-img-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--white);
}
.about-img-sub { font-size: 14px; color: rgba(255,255,255,0.7); }

.about-badge-1, .about-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow);
  animation: floatEl 4s ease-in-out infinite;
}
.about-badge-1 {
  top: -20px; right: -20px;
  color: var(--teal);
  animation-delay: 0s;
}
.about-badge-2 {
  bottom: 30px; left: -30px;
  color: var(--amber-dark);
  animation-delay: 2s;
}

.about-text {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 16px; font-size: 16px;
}
.about-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px;
}
.about-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
  font-weight: 500;
}
.check {
  width: 24px; height: 24px;
  background: rgba(26,95,94,0.1);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--cream);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover .service-line {
  width: 80%;
}
.service-icon {
  font-size: 48px; margin-bottom: 8px;
  display: block;
}
.service-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 900;
  color: rgba(232,168,56,0.08);
  line-height: 1;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted); line-height: 1.7;
  font-size: 15px;
}
.service-line {
  height: 3px;
  background: linear-gradient(to right, var(--amber), var(--amber-light));
  border-radius: 2px;
  width: 40px; margin-top: 24px;
  transition: width 0.4s ease;
}

/* ===== WHY US ===== */
.why {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.why .section-tag {
  background: rgba(232,168,56,0.15);
  color: var(--amber);
}
.why .section-title { color: var(--white); }
.why .section-title em { color: var(--amber); }
.why-bg-shape {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(26,95,94,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  cursor: none;
}
.why-card:hover {
  background: rgba(232,168,56,0.08);
  border-color: rgba(232,168,56,0.2);
  transform: translateY(-6px);
}
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-number {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--white);
  margin-bottom: 10px; font-weight: 700;
}
.why-card p {
  color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing { background: var(--white); }
.pricing-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.pricing-table {
  width: 100%; border-collapse: collapse;
  font-size: 15px;
}
.pricing-table thead {
  background: var(--teal);
  color: var(--white);
}
.pricing-table th {
  padding: 20px 28px; text-align: center;
  font-weight: 700; letter-spacing: 0.5px;
  font-size: 15px;
}
.pricing-table th:first-child { text-align: left; }
.pricing-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(232,168,56,0.06); }
.pricing-table td {
  padding: 18px 28px; text-align: center; color: var(--text);
}
.pricing-table td:first-child { text-align: left; color: var(--dark); }
.dog-icon { font-size: 18px; margin-right: 6px; }
.price-cell {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--amber-dark) !important;
}

.pricing-extras {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.extras-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
}
.extras-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 20px;
}
.extras-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.extras-tags span {
  background: var(--white);
  border: 1px solid rgba(232,168,56,0.3);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.addon-list { display: flex; flex-direction: column; gap: 10px; }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  padding: 10px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(0,0,0,0.06);
}
.addon-price {
  color: var(--amber-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 16px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: none; transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gi-1 { background: linear-gradient(135deg, #2A8280, #1A5F5E); }
.gi-2 { background: linear-gradient(135deg, #E8A838, #C88820); }
.gi-3 { background: linear-gradient(135deg, #5B4E3A, #8A7560); grid-row: span 1; }
.gi-4 { background: linear-gradient(135deg, #3A7A5A, #5DAA80); }
.gi-5 { background: linear-gradient(135deg, #7A5E3A, #C8974A); }
.gi-6 { background: linear-gradient(135deg, #1A2A5E, #3A5AB0); }
.gallery-emoji { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white); padding: 24px 20px 14px;
  font-size: 14px; font-weight: 600;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 24px; margin-bottom: 16px;
  transition: all 0.3s;
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.contact-icon { font-size: 28px; }
.contact-card h4 {
  font-weight: 700; color: var(--dark);
  margin-bottom: 6px; font-size: 15px;
}
.contact-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.contact-card a { color: var(--teal); transition: color 0.2s; }
.contact-card a:hover { color: var(--amber-dark); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.map-wrap iframe { display: block; }
.map-overlay-text {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white);
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}

/* ===== BOOKING ===== */
.booking {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.booking-bg { position: absolute; inset: 0; pointer-events: none; }
.booking-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.2;
}
.b1 {
  width: 400px; height: 400px;
  background: var(--amber);
  top: -100px; right: -100px;
}
.b2 {
  width: 300px; height: 300px;
  background: var(--teal);
  bottom: -80px; left: 10%;
}
.booking-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.booking-left p {
  color: var(--text-muted); margin-bottom: 24px;
  line-height: 1.7; font-size: 16px;
}
.booking-perks {
  display: flex; flex-direction: column; gap: 10px;
}
.booking-perks span {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--teal);
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 600;
  color: var(--text); letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text);
  transition: all 0.3s;
  outline: none;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,168,56,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { font-size: 60px; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--teal);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 48px;
}
.footer .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 16px; font-size: 14px; line-height: 1.7;
  max-width: 300px;
}
.social-icons {
  display: flex; gap: 12px; margin-top: 24px;
}
.social-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
  cursor: none;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-links h5,
.footer-contact h5 {
  color: var(--white); font-weight: 700; font-size: 16px;
  margin-bottom: 20px; font-family: 'Playfair Display', serif;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact p {
  font-size: 14px; margin-bottom: 10px; line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 32px 80px; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { flex: unset; margin-top: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav { display: none; position: fixed; top: 80px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 24px 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 999; gap: 4px;
  }
  .nav.open { display: flex; }
  .call-btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-extras { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-list { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .hero-visual { display: none; }
}

@media (max-width: 480px) {
  .header { padding: 0 16px; }
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
}
