/* ─────────────────────────────────────────────────────────
    CSS CUSTOM PROPERTIES – LIGHT / DARK THEMES
───────────────────────────────────────────────────────── */
:root {
  --orange: #FF6600; /* Updated to bright orange */
  --orange-light: #FF8533;
  --orange-glow: rgba(255, 102, 0, 0.15);
  --green: #2E7D32;
  --green-light: #43A047;
  --green-glow: rgba(46, 125, 50, 0.12);

  /* Light theme */
  --bg: #FAFAF8;
  --bg-alt: #F5F0EB;
  --bg-card: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(255, 102, 0, 0.18);
  --nav-bg: rgba(250, 250, 248, 0.92);
  --hero-overlay: rgba(255, 255, 255, 0.55);
  --gradient-hero: linear-gradient(135deg, rgba(250, 240, 230, 0.95) 0%, rgba(232, 245, 233, 0.90) 100%);
}

[data-theme="dark"] {
  --bg: #0F0F0D;
  --bg-alt: #1A1810;
  --bg-card: #1E1C16;
  --text-primary: #F5F0E8;
  --text-secondary: #C8BFA8;
  --text-muted: #8A8070;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(255, 102, 0, 0.25);
  --nav-bg: rgba(15, 15, 13, 0.95);
  --hero-overlay: rgba(10, 10, 8, 0.65);
  --gradient-hero: linear-gradient(135deg, rgba(30, 20, 10, 0.97) 0%, rgba(10, 25, 12, 0.95) 100%);
}

/* ─────────────────────────────────────────────────────────
    RESET & BASE
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
  margin: 20px 0 40px;
}

/* ─────────────────────────────────────────────────────────
    BUTTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}
.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.45);
}

.btn-catalogue {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}
.btn-catalogue:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.45);
}

.btn-catalogue-orange {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: background-color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.btn-catalogue-orange:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.45);
}

/* ─────────────────────────────────────────────────────────
    NAVIGATION
───────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none !important; 
  box-shadow: none !important; 
  transition: all 0.3s ease;
}

nav.scrolled,
nav.menu-open {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

nav:not(.scrolled):not(.menu-open) .hamburger span {
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
nav:not(.scrolled):not(.menu-open) .theme-icon {
  color: #ffffff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}
nav:not(.scrolled):not(.menu-open) .nav-links a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
nav:not(.scrolled):not(.menu-open) .nav-links a:hover {
  color: var(--orange); 
}

.theme-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}
.theme-icon.sun { color: var(--orange); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px; /* Increased from 72px to fit the larger logo */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 2px;
}
.nav-logo-text .brand-loc,
.nav-logo-text .brand-loc {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.theme-toggle:hover {
  background-color: var(--bg-alt);
}
.theme-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.theme-icon.moon { display: none; }
.theme-toggle .moon { display: none; }

[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon {
  display: inline-block;
  color: var(--text-secondary);
}

/* Hamburger */
.hamburger {
  display: none; 
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 12px 0px 12px 12px;
  background: transparent; 
  border: none; 
  z-index: 100; 
  outline: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), 
              opacity 0.2s ease, 
              background-color 0.3s ease;
}
.hamburger:hover span { background: var(--orange); }

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; 
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border-top: 0px solid transparent; 
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, border-width 0.4s ease, opacity 0.3s ease;
}
.mobile-nav.open { 
  max-height: 400px; 
  opacity: 1;
  visibility: visible;
  border-top: 1px solid var(--border); 
}
.mobile-nav a {
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--bg-alt); color: var(--orange); }
.mobile-nav a.active {
  color: var(--orange);
  background: var(--bg-alt);
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

/* ─────────────────────────────────────────────────────────
    PAGE HEADER
───────────────────────────────────────────────────────── */
.page-header {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 350px;
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  padding-bottom: 60px;  
  overflow: hidden;
}

.header-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 13, 0.5);
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.header-title {
  color: #FAFAF8;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 4px;
  /* text-transform: uppercase; */
  margin: 0;
}

/* ─────────────────────────────────────────────────────────
    EXACT SCREENSHOT MATCH LAYOUT (Branches)
───────────────────────────────────────────────────────── */
.branch-section {
  padding: 0 20px 80px 20px; 
  background-color: var(--bg); 
}
.branch-section:first-of-type { padding-top: 80px; }
.mobile-break { display: inline; }
.branch-container {
  max-width: 1100px; 
  margin: 0 auto;   
  position: relative;
}

.branch-image-wrapper { position: relative; width: 100%; }
.branch-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 13, 0.4);
  z-index: 2;
  pointer-events: none;
}
.branch-img {
  width: 100%;
  height: 400px; 
  object-fit: cover;
  display: block;
}

.branch-title {
  position: absolute;
  top: 50%;
  left: 8%; 
  transform: translateY(-50%); 
  color: #fff;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Playfair Display', serif; 
  z-index: 5;
}
.branch-title.title-right { left: auto; right: 8%; }

.branch-text-box {
  width: 55%; 
  margin-top: -100px; 
  margin-left: 0;
  text-align: left;
  position: relative;
  z-index: 10;
  background-color: var(--orange); 
  padding: 3.5rem 4rem;
  box-shadow: var(--shadow);
}
.branch-text-box.box-right {
  margin-left: auto; 
  margin-right: 0;
  background-color: var(--green); 
}
.branch-text-box p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-primary); 
}
.branch-text-box .contact-info {
  margin-bottom: 0;
  margin-top: 2.5rem;
  color: var(--text-primary); 
}
.branch-text-box p, 
.branch-text-box .contact-info { text-align: left; }

.branch-text-box.box-right p,
.branch-text-box.box-right .contact-info,
.branch-text-box.box-right .contact-info a {
  color: #FAFAF8; 
}

/* ─────────────────────────────────────────────────────────
    HERO
───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0; 
  overflow: hidden;
  background-color: #111; 
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s linear; 
}
.hero-slider .slide.previous { opacity: 1; z-index: 1; transform: scale(1.05); }
.hero-slider .slide.active { opacity: 1; z-index: 2; transform: scale(1.05); }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
}

/* Animated Elements */
.hero-petals { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.05;
  animation: floatPetal linear infinite;
}
[data-theme="dark"] .petal { opacity: 0.08; }

.petal:nth-child(1) { width:80px; height:80px; background: var(--orange); top:10%; left:5%; animation-duration:18s; animation-delay:0s; }
.petal:nth-child(2) { width:120px; height:120px; background: var(--green); top:70%; left:80%; animation-duration:22s; animation-delay:3s; }
.petal:nth-child(3) { width:60px; height:60px; background: var(--orange); top:40%; left:90%; animation-duration:15s; animation-delay:6s; }
.petal:nth-child(4) { width:100px; height:100px; background: var(--green); top:80%; left:10%; animation-duration:20s; animation-delay:1s; }
.petal:nth-child(5) { width:50px; height:50px; background: var(--orange); top:20%; left:50%; animation-duration:25s; animation-delay:8s; }
.petal:nth-child(6) { width:90px; height:90px; background: var(--green); top:55%; left:35%; animation-duration:17s; animation-delay:4s; }

.ripple-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: 0.06;
  animation: rippleExpand 6s ease-out infinite;
}
[data-theme="dark"] .ripple-ring { opacity: 0.12; }

.ripple-ring:nth-child(1) { width:300px; height:300px; bottom:-50px; right:-50px; animation-delay:0s; }
.ripple-ring:nth-child(2) { width:500px; height:500px; bottom:-150px; right:-150px; animation-delay:2s; }
.ripple-ring:nth-child(3) { width:700px; height:700px; bottom:-250px; right:-250px; animation-delay:4s; }

.hero-wrapper {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1; 
  max-width: 1600px; 
  margin: 0 auto;
  padding: 0 5%; 
  gap: 40px; 
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 0 0 60%; 
  max-width: 60%; 
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left; 
  padding-top: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 48px;
  animation: fadeInDown 0.8s ease forwards;
  white-space: nowrap;
}

.hero-headline {
  white-space: nowrap; 
  font-size: clamp(1.4rem, 5vw, 3.5rem); 
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-headline .line-orange { color: var(--orange); }
.hero-headline .line-green  { color: var(--green); }
.hero-headline .line-plain  { color: #fff; }

.hero-script {
  font-family: 'Playfair Display', Georgia, serif; 
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--green-light);
  display: block;
  margin-bottom: 34px;
  animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 34px; 
  width: 100%; 
  justify-content: flex-start;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.65s both;
}

.hero-image-col {
  flex: 0 0 35%; 
  max-width: 35%;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}

.hero-logo-display {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 220, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 20px rgba(255, 102, 0, 0.06),
    0 0 0 40px rgba(255, 102, 0, 0.04),
    0 0 0 60px rgba(46, 125, 50, 0.03),
    0 40px 80px rgba(0, 0, 0, 0.15);
  animation: heroLogoFloat 6s ease-in-out infinite;
}

[data-theme="dark"] .hero-logo-display {
  background: radial-gradient(circle, rgba(30, 28, 22, 0.9) 0%, rgba(20, 15, 5, 0.8) 100%);
}

.hero-logo-display img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
}

/* Animations */
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}
@keyframes floatPetal {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-40px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@keyframes rippleExpand {
  0%   { opacity: 0.12; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.1); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pulse-glow-book { animation: btnPulseGlowBook 2s infinite ease-in-out; }
@keyframes btnPulseGlowBook {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
  50%  { transform: scale(1.05); box-shadow: 0 0 20px 15px rgba(255, 102, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}
.pulse-glow-what { animation: btnPulseGlowWhat 2s infinite ease-in-out; }
@keyframes btnPulseGlowWhat {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50%  { transform: scale(1.05); box-shadow: 0 0 20px 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-glow-call { animation: btnPulseGlowCall 2s infinite ease-in-out; }
@keyframes btnPulseGlowCall {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  50%  { transform: scale(1.05); box-shadow: 0 0 20px 15px rgba(46, 125, 50, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

/* ─────────────────────────────────────────────────────────
    ABOUT
───────────────────────────────────────────────────────── */
#about { padding: 100px 0; background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-logo-wrap {
  width: 100%; height: 100%; min-height: 600px;
  border-radius: 30px; position: relative; overflow: hidden;
  box-shadow: var(--shadow); margin: 0; 
}
.about-logo-wrap::before { display: none; }
.about-logo-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 30px; z-index: 1;
}

.about-badge-float {
  position: absolute; background: var(--bg-card); border-radius: 16px;
  padding: 14px 20px; box-shadow: var(--shadow); display: flex;
  align-items: center; gap: 12px; z-index: 2;
}
.about-badge-float.top-right { top: 30px; right: -20px; }
.about-badge-float.bottom-left { bottom: 30px; left: -20px; }
.badge-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
}
.badge-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.badge-text span { font-size: 0.75rem; color: var(--text-muted); }

.about-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.location-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 102, 0, 0.2);
}

.location-icon {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0 !important; /* Overrides the default paragraph margin in the About section */
}

.location-details a {
  color: var(--orange);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 4px;
}

.location-details a:hover {
  color: var(--orange-light);
}

/* ─────────────────────────────────────────────────────────
    SERVICES
───────────────────────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .divider {
  margin: 20px auto 40px;
}

/* CSS Grid for Gallery Layout */
.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; /* Base height for grid rows */
  gap: 15px;
  width: 100%;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 15px;
}

/* Base Service Box */
.service-box {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border-radius: 20px; /* Optional: adds a slight softening to the gallery edges */
}

/* Different sizes for desktop */
.box-large {
  grid-column: span 2;
  grid-row: span 2;
}
.box-wide {
  grid-column: span 2;
  grid-row: span 1;
}
.box-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 13, 0.4);
  /* Removed flexbox centering so absolute positioning can take over */
  transition: background 0.5s ease;
}

.service-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FAFAF8;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  transition: top 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.4s ease;
}

.service-name::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--green-light);
  transition: width 0.5s ease, background-color 0.4s ease;
}

/* New Hover Description */
.service-desc {
  position: absolute;
  top: 58%; /* Sits just below the pushed-up title */
  left: 50%;
  transform: translate(-50%, 20px); /* Pushed down slightly for the slide-in effect */
  width: 85%;
  color: #FAFAF8;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  line-height: 1.5;
  margin: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover Effects */
.service-box:hover img {
  transform: scale(1.08);
}

.service-box:hover .service-overlay {
  background: rgba(15, 15, 13, 0.75);
  box-shadow: inset 0 0 100px var(--orange-glow);
}

/* Push the title up on hover */
.service-box:hover .service-name {
  top: 40%;
  color: var(--orange);
}

/* Expand the divider */
.service-box:hover .service-name::after {
  width: 50px;
}

/* Fade and slide in the description */
.service-box:hover .service-desc {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ─────────────────────────────────────────────────────────
    WHY CHOOSE US
───────────────────────────────────────────────────────── */
#why { padding: 100px 0; background: var(--bg-alt); position: relative; overflow: hidden; }
#why::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
  background: var(--bg-card); border-radius: 20px; padding: 28px 24px;
  border: 1px solid var(--border); text-align: center; transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-glow), var(--green-glow));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.why-content { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────
    PRODUCTS SECTION
───────────────────────────────────────────────────────── */
#products { padding: 100px 0; background: var(--bg-alt); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .divider { margin: 20px auto 40px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.product-card {
  background: var(--bg-card); border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative;
}
.product-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover);
  border-color: rgba(255, 102, 0, 0.2);
}
.product-img {
  width: 100%; height: 220px; position: relative; overflow: hidden;
  background: var(--bg-alt); /* Base background */
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.product-img.gradient-bg {
  background: linear-gradient(135deg, var(--orange-glow), var(--green-glow));
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-card) 100%);
  z-index: 2; pointer-events: none;
}
.product-actual-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0; z-index: 1; transition: transform 0.5s ease;
}
.product-card:hover .product-actual-img { transform: scale(1.05); }

/* Empty state / Image Icon elements */
.product-img-icon { font-size: 4rem; color: var(--orange); position: relative; z-index: 1; }
.product-img-bg-text {
  position: absolute; font-family: 'Great Vibes', cursive;
  font-size: 5rem; color: var(--orange); opacity: 0.07; bottom: 10px; right: 10px;
}
.product-badge {
  position: absolute; top: 16px; left: 16px; background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; z-index: 3;
}
.product-body { padding: 24px 28px 28px; }
.product-body h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary); }
.product-body .product-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.product-details { margin-bottom: 20px; }
.product-detail-tab { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.product-detail-toggle {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.5px; text-transform: uppercase; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 8px; padding: 5px 12px;
  cursor: pointer; transition: all 0.2s;
}
.product-detail-toggle.active, .product-detail-toggle:hover {
  background: var(--orange-glow); border-color: rgba(255, 102, 0, 0.3); color: var(--orange);
}
.product-detail-panel {
  display: none; font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65;
  background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; border-left: 3px solid var(--green);
}
.product-detail-panel.active { display: block; }
.product-detail-panel ul { list-style: disc; padding-left: 16px; }
.product-detail-panel ul li { margin-bottom: 4px; }
.btn-order-wa {
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25); width: 100%; justify-content: center;
}
.btn-order-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); }

.empty-state {
  grid-column: 1 / -1; text-align: center; padding: 4rem 1rem;
  background-color: var(--bg-card); border-radius: 12px;
  border: 1px dashed var(--border); box-shadow: var(--shadow);
}
.empty-state .empty-icon { font-size: 3rem; color: var(--text-muted); margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-secondary); font-size: 1.1rem; }

/* Breadcrumbs & Detail Section */
.breadcrumb-container { background-color: var(--bg); padding: 4rem 0 0.5rem 0; margin-top: 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; list-style: none; padding: 0; margin: 0; font-size: 0.95rem; font-weight: 500; }
.breadcrumb-item a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.breadcrumb-item a:hover { color: var(--green); }
.breadcrumb-separator { color: var(--text-muted); margin: 0 0.8rem; font-size: 0.9rem; user-select: none; }
.breadcrumb-item.active { color: var(--orange); font-weight: 600; }

.product-detail-section { padding: 0.5rem 0; background-color: var(--bg); color: var(--text-primary); }
.detail-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.gallery-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }
.main-image-container { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background-color: var(--bg-card); border: 1px solid var(--border); }
.main-image { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.detail-badge { position: absolute; top: 1.5rem; left: 1.5rem; background-color: var(--orange); color: var(--bg-card); padding: 0.5rem 1rem; border-radius: 30px; font-weight: 600; font-size: 0.9rem; }
.thumbnails-container { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
.thumbnail { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: all 0.3s ease; flex-shrink: 0; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail:hover, .thumbnail.active { opacity: 1; border-color: var(--orange); }

.info-wrapper { display: flex; flex-direction: column; gap: 2rem; }
.product-title { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin: 0; }
.product-description { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); }

.detail-tabs-container { background-color: var(--bg-card); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.detail-tabs { display: flex; border-bottom: 1px solid var(--border); background-color: var(--bg-alt); }
.tab-btn { flex: 1; padding: 1rem; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.3s ease; }
.tab-btn:hover { color: var(--text-primary); background-color: var(--green-glow); }
.tab-btn.active { color: var(--green); border-bottom: 3px solid var(--green); background-color: var(--bg-card); }
.tab-content { display: none; padding: 1.5rem; color: var(--text-secondary); line-height: 1.7; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

.btn-order-wa-large {
  width: 100%; padding: 1.2rem; font-size: 1.1rem; font-weight: 600; background-color: var(--green-light);
  color: var(--bg-card); border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
}
.btn-order-wa-large:hover { background-color: var(--green-light); transform: translateY(-2px); }

.related-products-section { padding: 4rem 0; background-color: var(--bg-alt); border-top: 1px solid var(--border); }
.product-card-link { text-decoration: none; color: inherit; }

/* ─────────────────────────────────────────────────────────
    BOOKING
───────────────────────────────────────────────────────── */
#booking { padding: 100px 0; background: var(--bg); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.booking-info h2 { margin-bottom: 16px; }
.booking-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.booking-method {
  display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.booking-method:hover { transform: translateX(6px); border-color: var(--orange); }
.bm-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.bm-icon.wa  { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.bm-icon.tel { background: var(--green-glow); color: var(--green); }
.bm-icon.form{ background: var(--orange-glow); color: var(--orange); }
.bm-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.bm-text span   { font-size: 0.82rem; color: var(--text-muted); }

.booking-form-wrap {
  background: var(--bg-card); border-radius: 28px; padding: 44px 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.booking-form-wrap h3 { font-size: 1.6rem; margin-bottom: 8px; }
.booking-form-wrap p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 12px; border: 2px solid var(--border);
  background: var(--bg-alt); color: var(--text-primary); font-family: 'Raleway', sans-serif;
  font-size: 0.95rem; transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.align-start {
  align-items: start;
}
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 18px;
}
.scrollable-radios {
  max-height: 160px;
  overflow-y: auto;
}
.radio-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-primary);
  margin-bottom: 0;
  cursor: pointer;
  letter-spacing: normal;
}
.radio-list input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--orange); /* Styles the radio button color */
}
.form-submit-btn { width: 100%; padding: 16px; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────
    TESTIMONIALS
───────────────────────────────────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--bg); 
  overflow: hidden;
}

.testimonials-header { text-align: center; margin-bottom: 30px; }
.testimonials-header .divider { margin: 20px auto 0; }

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.testi-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testi-card {
  width: 60%; 
  max-width: 700px;
  height: auto;
  min-height: 280px; 
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0; 
  z-index: 1;
  pointer-events: none; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 

  border-radius: 24px;
  padding: 36px 30px;
  box-sizing: border-box;

  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              opacity 0.8s ease, 
              z-index 0.8s ease, 
              backdrop-filter 0.8s ease;

  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(250, 250, 248, 0.5); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); 
  margin-left: -30% !important; 
  transform: translateY(-50%) scale(0.6) translateZ(-200px); 
}

[data-theme="dark"] .testi-card {
  background: rgba(15, 15, 13, 0.5); 
}

.testi-quote { font-size: 3rem; color: var(--orange); opacity: 0.3; font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 12px; }
.testi-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-stars { color: #F4C430; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; /* Forces author to the bottom safely */ }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--green)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-info strong { display: block; font-weight: 700; font-size: 0.95rem; }
.testi-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
    CAROUSEL STATES (Managed by JS)
───────────────────────────────────────────────────────── */
.testi-card.current {
  opacity: 1;
  z-index: 10;
  pointer-events: auto; 
  transform: translateY(-50%) scale(1) translateX(0) translateZ(0); 
  background: rgba(250, 250, 248, 0.85); 
}
[data-theme="dark"] .testi-card.current { background: rgba(15, 15, 13, 0.85); }

.testi-card.previous {
  opacity: 0.6; 
  z-index: 5;
  pointer-events: auto; 
  transform: translateY(-50%) scale(0.8) translateX(-45%) translateZ(-100px); 
}

.testi-card.next {
  opacity: 0.6;
  z-index: 5;
  pointer-events: auto;
  transform: translateY(-50%) scale(0.8) translateX(45%) translateZ(-100px); 
}

/* ─────────────────────────────────────────────────────────
    GALLERY
───────────────────────────────────────────────────────── */
#gallery { padding: 100px 0; background: var(--bg); }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header .divider { margin: 20px auto 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px); gap: 16px; }

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  display: block;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover {
  box-shadow: var(--shadow);
}
.col-span-2 { 
  grid-column: span 2; 
}
.row-span-2 { 
  grid-row: span 2; 
}
.gallery-label {
  position: absolute;
  bottom: 16px; 
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* ─────────────────────────────────────────────────────────
    LIGHTBOX
───────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  transition: opacity 0.2s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
  outline: none;
}

.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

/* ─────────────────────────────────────────────────────────
    SOCIAL
───────────────────────────────────────────────────────── */
#social { padding: 80px 0; background: var(--bg-alt); }
.social-inner { text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.social-link {
  width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: #fff; transition: all 0.3s; text-decoration: none;
}
.social-link:hover { transform: translateY(-6px) rotate(-5deg); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
.social-link.fb  { background: linear-gradient(135deg, #1877F2, #0d5ecc); }
.social-link.ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.tik { background: linear-gradient(135deg, #010101, #69C9D0); }
.social-link.wa  { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-link.yt  { background: linear-gradient(135deg, #FF0000, #cc0000); }
.social-handle { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* ─────────────────────────────────────────────────────────
    CONTACT / MAP
───────────────────────────────────────────────────────── */
#contact { padding: 100px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 8px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); }
.cc-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; flex-shrink: 0;
}
.cc-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.cc-text span   { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); height: 420px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.hours-table { 
  margin-top: 32px; 
  width: 100%; 
  border-collapse: collapse; /* Ensures borders touch cleanly */
}

/* Regular row styling */
.hours-table tr:not(.branch-header) { 
  border-bottom: 1px solid var(--border); 
}
.hours-table td { 
  padding: 10px 0; 
  font-size: 0.9rem; 
  color: var(--text-secondary); 
}

/* Make the times (right column) orange, but ignore the branch headers */
.hours-table tr:not(.branch-header) td:last-child { 
  color: var(--orange); 
  font-weight: 600; 
  text-align: right; 
}

/* NEW: Styles specifically for the branch titles */
.hours-table tr.branch-header td {
  padding-top: 24px; /* Creates breathing room between branches */
  padding-bottom: 8px;
  color: var(--text-primary); 
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--orange); /* Stronger border for the title */
  text-align: left;
}

/* Removes the extra top space for the very first branch header */
.hours-table tr.branch-header:first-child td {
  padding-top: 10px;
}

/* Add a little color to the map marker icons */
.hours-table .branch-header i {
  color: var(--green);
  margin-right: 6px;
}
/* ─────────────────────────────────────────────────────────
    CONTACT SECTION UPDATES
───────────────────────────────────────────────────────── */
/* The Form Container */
.contact-form-wrap {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: fit-content; /* Prevents stretching if the left column is taller */
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-form-wrap p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* Full Width Map Modifier */
.map-wrap.full-width-map {
  margin-top: 60px; /* Space between the grid and the map */
  width: 100%;
  height: 450px;
  border-radius: 24px;
}
.contact-btn {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────
    FOOTER (Centered Layout)
───────────────────────────────────────────────────────── */
footer { 
  background: var(--bg-card); 
  border-top: 1px solid var(--border); 
  padding: 80px 0 32px; /* Increased top padding for breathing room */
}

.footer-centered-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px; /* Centers the wrap and pushes bottom border down */
}

/* Stacked Logo specifically for footer */
.footer-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-logo-stack img {
  width: 100px; /* Increased size (nav is 52px) */
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; /* Much larger font size */
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.footer-logo-text .brand-loc {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 3px;
}

.brand-name-subtitle {
  font-family: 'Playfair Display', Georgia, serif !important;
}

.footer-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Spread social icons */
.footer-social { 
  display: flex; 
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 50px;
  height: 50px; 
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--text-muted);
  font-size: 1.2rem; 
  transition: all 0.3s;
}

.footer-social a:hover { 
  background: var(--orange); 
  color: #fff; 
  transform: translateY(-4px); 
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Bottom Copyright Bar */
.footer-bottom { 
  border-top: 1px solid var(--border); 
  padding-top: 28px; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  gap: 12px; 
  text-align: center;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--orange); font-weight: 600; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--green); }

/* ─────────────────────────────────────────────────────────
    FLOATING BUTTONS
───────────────────────────────────────────────────────── */
.float-btns { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: #fff; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25); transition: all 0.3s; position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn.wa-float  { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-btn.tel-float { background: linear-gradient(135deg, var(--green), var(--green-light)); }

.float-tooltip {
  position: absolute; right: 72px; background: var(--bg-card); color: var(--text-primary);
  padding: 6px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

.float-btn.wa-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2s ease infinite; }
.float-btn.tel-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(46, 125, 50, 0.45); animation: pulse 2s ease infinite; }

@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ─────────────────────────────────────────────────────────
    SCROLL ANIMATIONS
───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
    MODALS (Booking & Products)
───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); z-index: 10000; display: flex; align-items: center;
  justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--bg-card); border-radius: 28px; padding: 48px 44px; max-width: 600px;
  width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4); border: 1px solid var(--border);
  transform: translateY(40px) scale(0.95); transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-box, .scrollable-radios {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.modal-box::-webkit-scrollbar, .scrollable-radios::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.modal-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); border: none; cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: 1rem; transition: all 0.2s;
}
.modal-close:hover { background: var(--orange); color: #fff; }

.modal-header { text-align: center; margin-bottom: 32px; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--orange-glow);
  border: 1px solid rgba(255, 102, 0, 0.25); border-radius: 50px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.modal-header h3 { font-size: 1.8rem; margin-bottom: 6px; }
.modal-header p { color: var(--text-muted); font-size: 0.9rem; }
.modal-divider {
  width: 50px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px; margin: 16px auto 0;
}

/* Specific to Product Modal */
.product-modal-box { max-width: 480px; }
#productModal .modal-box { max-width: 480px; }

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  min-width: 280px;
  padding: 16px 24px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  /* NEW: Added opacity to start completely transparent */
  opacity: 0;
  /* Desktop start state: hidden to the right */
  transform: translateX(120%); 
  
  /* NEW: Smooth transition handling both movement and fading */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease-in-out;
}

.toast.show { opacity: 1; transform: translateX(0); }
.toast.success { background: #25D366; }
.toast.error { background: #ff4757; }
.toast.warning { background: #ffa502; }

/* --- FORM VALIDATION --- */
.form-group input.invalid, 
.form-group select.invalid {
  border-color: #ff4757 !important;
  background-color: rgba(255, 71, 87, 0.05);
}

.error-text {
  color: #ff4757;
  font-size: 0.75rem;
  margin-top: 6px;
  display: none;
  font-weight: 600;
}

.form-group input.invalid ~ .error-text { display: block; }

/* --- BUTTON LOADING STATE --- */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

.btn.loading .loader { display: inline-block; }
.btn.loading .btn-icon { display: none; }

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


/* ─────────────────────────────────────────────────────────
    RESPONSIVE MEDIA QUERIES (CONSOLIDATED)
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-col { display: none; }
  .hero-content { max-width: 100%; }
  .testi-card {
    width: 80%; 
    margin-left: -40% !important; 
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 200px; }
}

@media (max-width: 992px) {
  .branch-title { font-size: 2.2rem; left: 5%; }
  .branch-title.title-right { right: 5%; }
  .branch-text-box { width: 85%; padding: 2.5rem; }
  .hero-content { flex: 0 0 100%; max-width: 100%; align-items: center; text-align: center; }
  .hero-headline { font-size: 7.5vw; }
  .hero-script { font-size: 6.5vw; margin-top: 12px; margin-bottom: 32px; }
  .hero-ctas { justify-content: center; }
  .hero-image-col { flex: 0 0 100%; max-width: 100%; justify-content: center; margin-top: 40px; }
  .service-box { flex: 0 0 50%; height: 45vh; min-height: 350px; }
  .services-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .box-large, .box-wide, .box-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .detail-container { grid-template-columns: 1fr; gap: 3rem; }
  .services-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .box-large, .box-wide, .box-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
      "logo-img logo-img"
      "logo-text nav-right";
    align-items: center;
    height: auto;
    padding: 12px 20px;
    gap: 8px 0; /* Adds spacing between the logo and the text/buttons below */
  }

  .nav-logo {
    /* This magically lets the image and text act as direct children of the grid */
    display: contents; 
  }

  .nav-logo img {
    grid-area: logo-img;
    margin: 0 auto; /* Centers the image perfectly at the top */
  }

  .nav-logo-text {
    grid-area: logo-text;
  }

  .nav-right {
    grid-area: nav-right;
  }

  /* Optional: Scale the text down just a tiny bit on mobile so the menu buttons fit nicely */
  .nav-logo-text .brand-name {
    font-size: 1.8rem; 
  }
  .nav-logo-text .brand-loc {
    font-size: 0.99rem;
  }
  .branch-section { padding: 0; }
  .branch-section:first-of-type { margin-top: 60px; padding-top: 0; }
  .mobile-break { display: block; }
  .branch-img { height: 300px; }
  .branch-title { font-size: 1.8rem; left: 5%; top: 50%; line-height: 1.3; }
  .branch-title.title-right { right: 5%; text-align: right; }
  .branch-text-box { width: 100%; margin-top: 0; padding: 2.5rem 1.5rem; box-shadow: none; }
  .branch-text-box.box-right { margin-left: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .testimonials-slider { height: 400px; }
  .testi-card { 
    width: 95%; 
    margin-left: -47.5% !important; 
    padding: 24px 20px; 
  }
  .testi-quote { font-size: 2.5rem; }
  .testi-card.current { 
    transform: translateY(-50%) scale(1) translateX(0) translateZ(0); 
    opacity: 1;
  }
  .testi-card.previous { 
    transform: translateY(-50%) scale(0.8) translateX(-100%) translateZ(-100px); 
    opacity: 0; 
    pointer-events: none;
  }
  .testi-card.next { 
    transform: translateY(-50%) scale(0.8) translateX(100%) translateZ(-100px); 
    opacity: 0; 
    pointer-events: none;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
  .why-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .service-box { flex: 0 0 85%; height: 40vh; min-height: 300px; }
  .services-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px; /* Consistent height for all boxes on mobile */
  }
  .service-name {
    font-size: 1.5rem;
  }
  .service-desc {
    font-size: 0.85rem;
  }
  .modal-box { padding: 32px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .service-card-actions { flex-direction: column; }
  .desktop-book-btn {
    display: none !important;
  }
  .explore-service {
    width: 100% !important;
  }
  .call-now {
    width: 100% !important;
  }
  .lightbox-nav {
    top: auto;
    bottom: 30px;
    transform: none;
    width: 44px;
    height: 44px;
  }
  .lightbox-nav:hover { transform: scale(1.1); }
  .lightbox-nav.prev { left: 25%; }
  .lightbox-nav.next { right: 25%; }
  .lightbox-img { max-height: 70vh; }
  .lightbox-close { top: 15px; right: 15px; }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .map-wrap.full-width-map {
    height: 350px;
    margin-top: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-row.align-start {
    grid-template-columns: 1fr;
  }
  .toast-container {
    right: 50%;
    transform: translateX(50%);
    bottom: 40px;
    width: 90%;
    align-items: center; 
  }

  .toast {
    min-width: unset;
    width: 100%;
    max-width: 400px;
    transform: translateY(50px); 
  }

  .toast.show {
    transform: translateY(0);
  }
}

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