/* ══════════════════════════════════════════════
   SAKTHI CATERING SERVICES — STYLESHEET
   Premium Catering Theme · Gold & Dark Elegance
   ══════════════════════════════════════════════ */

/* ─── 1. CSS VARIABLES ─────────────────────────── */
:root {
  /* Brand Colours */
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --gold-dark:     #A07830;
  --gold-pale:     #F5EDD0;
  --dark:          #0E0E0E;
  --dark-2:        #161616;
  --dark-3:        #1E1E1E;
  --dark-card:     #222222;
  --cream:         #FAF6EE;
  --cream-2:       #F0EAD6;
  --text-dark:     #1A1A1A;
  --text-mid:      #4A4A4A;
  --text-light:    #999999;
  --white:         #FFFFFF;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Jost', sans-serif;

  /* Spacing */
  --section-py:   100px;
  --container:    1200px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--dark); }
::-webkit-scrollbar-thumb      { background: var(--gold); border-radius: 3px; }

/* Selection */
::selection { background: var(--gold); color: var(--dark); }

/* ─── 3. TYPOGRAPHY HELPERS ────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ─── 4. LAYOUT HELPERS ────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.mt-4 { margin-top: 2rem; }

/* ─── 5. BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76, 0.5);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

/* ─── 6. NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 600;
  padding: 9px 22px;
  margin-left: 6px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,168,76,0.4); }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 7. HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.55) 0%,
    rgba(5,5,5,0.65) 50%,
    rgba(5,5,5,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.hero-subtext .separator { color: var(--gold); opacity: 0.6; }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 20px 40px;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 30px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-hint-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ─── 8. SCROLL REVEAL ANIMATIONS ──────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── 9. ABOUT ─────────────────────────────────── */
.about { background: var(--cream); }

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

.about-images {
  position: relative;
  padding-bottom: 80px;
  padding-right: 60px;
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 230px;
  border-radius: 4px;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(201,168,76,0.45);
  z-index: 1;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.badge-text {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 1.8rem;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-item > i {
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-dark);
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

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

.service-card {
  background: var(--dark-card);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.service-card img {
  height: 220px;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75);
}
.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.service-icon {
  position: absolute;
  top: 185px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(10deg); }

.service-body {
  padding: 28px 22px 22px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s, color 0.3s;
}
.service-link:hover { letter-spacing: 0.2em; color: var(--gold-light); }

/* ─── 11. MENU ─────────────────────────────────── */
.menu { background: var(--cream-2); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 10px 24px;
  border: 1.5px solid var(--cream-2);
  border-radius: 3px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.menu-tab:hover   { color: var(--gold); border-color: var(--gold); }
.menu-tab.active  {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

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

.menu-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.13);
}
.menu-card img {
  height: 190px;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover img { transform: scale(1.07); }

.menu-info {
  padding: 16px 18px 18px;
}
.menu-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.menu-info p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── 12. GALLERY ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall  { grid-row: span 2; }

.gallery-item img {
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.8);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ─── 13. TESTIMONIALS ─────────────────────────── */
.testimonials { background: var(--cream); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.testi-card {
  min-width: 100%;
  padding: 0 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .testi-card { padding: 0 120px; }
}

.testi-stars { margin-bottom: 20px; }
.testi-stars i { color: var(--gold); font-size: 1rem; margin: 0 2px; }

.testi-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.testi-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1.5px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── 14. CONTACT ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-block > i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}
.contact-block a,
.contact-block span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.3s;
}
.contact-block a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s var(--ease-spring);
}
.social-btn.whatsapp  { background: #25D366; color: var(--white); }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.social-btn.phone     { background: var(--gold); color: var(--dark); }
.social-btn:hover     { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #ff6b6b;
  margin-top: 5px;
  min-height: 16px;
}
.form-group input.error,
.form-group textarea.error { border-color: #ff6b6b; }

.form-success {
  display: none;
  font-size: 0.9rem;
  color: #6bcb77;
  text-align: center;
  margin-top: 12px;
}
.form-success.visible { display: block; }

/* ─── 15. FOOTER ───────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact p i { color: var(--gold); font-size: 0.85rem; }
.footer-contact p a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-contact p a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .heart { color: #e85c5c; }

/* ─── 16. WHATSAPP FLOAT ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 900;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.65);
  color: var(--white);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── 17. BACK TO TOP ──────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ─── 18. GOLD DIVIDER ORNAMENT ────────────────── */
.section-header::after {
  content: '✦ ── ✦';
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-top: 16px;
  opacity: 0.5;
}

/* ─── 19. RESPONSIVE ───────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .about-grid         { grid-template-columns: 1fr; gap: 50px; }
  .about-images       { padding-right: 40px; max-width: 500px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .menu-grid          { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid       { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
}

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

  /* Navbar mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 36px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 999;
    border-left: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; text-align: center; }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .stat-divider { width: 60px; height: 1px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* About */
  .about-images { padding-bottom: 60px; padding-right: 50px; }
  .about-img-main { height: 340px; }
  .about-features { grid-template-columns: 1fr; }

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

  /* Menu */
  .menu-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 1; }

  /* Testimonials */
  .testi-card { padding: 0 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 480px) {
  .menu-grid  { grid-template-columns: 1fr; }
  .menu-tabs  { flex-direction: column; align-items: center; }
  .menu-tab   { width: 200px; text-align: center; }

  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  .hero-subtext { flex-direction: column; gap: 4px; }
  .hero-subtext .separator { display: none; }

  .contact-form-wrap { padding: 24px 20px; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 88px; right: 20px; }
}

/* ─── 20. OVERLAY (mobile menu) ─────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.overlay.active { display: block; }
