/* ==========================================================================
   SRIKANDI KITCHEN - Modern Gourmet Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0F382C;          /* Deep Emerald Teal */
  --primary-light: #185241;    /* Lighter Emerald */
  --primary-dark: #08261E;     /* Dark Emerald */
  --accent: #D4AF37;           /* Royal Gold */
  --accent-light: #F3E5AB;     /* Soft Gold */
  --accent-hover: #B89628;     /* Deep Gold */
  --terracotta: #C84B31;       /* Spicy Crimson Terracotta */
  --terracotta-hover: #A63820;
  
  --bg: #FAF7F2;               /* Warm Cream Silk */
  --surface: #FFFFFF;          /* Pure White */
  --surface-alt: #F4EFE6;      /* Subtitle surface */
  
  --text: #1A2421;             /* Charcoal Deep */
  --text-muted: #5C6E66;       /* Medium Slate */
  --text-light: #8E9E97;       /* Muted Slate */
  --border: #E5DFC9;           /* Warm Sand Border */
  
  --shadow-sm: 0 4px 12px rgba(15, 56, 44, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 56, 44, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 56, 44, 0.12);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Banner */
.top-banner {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  color: var(--surface);
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  text-align: center;
  position: relative;
  z-index: 101;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.top-banner strong {
  color: var(--accent);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 223, 201, 0.6);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-rating-badge-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.google-rating-badge-nav i {
  color: #FBBC04;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, #a8341f 100%);
  color: var(--surface);
  box-shadow: 0 4px 15px rgba(200, 75, 49, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 75, 49, 0.4);
  background: linear-gradient(135deg, #d85438 0%, var(--terracotta) 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--surface);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--surface);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--surface);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.5rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--primary);
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

/* Hero Section */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 56, 44, 0.08);
  border: 1px solid rgba(15, 56, 44, 0.15);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-tag i {
  color: var(--terracotta);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--terracotta);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 175, 55, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-mini-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
}

.feature-mini-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  transform: rotate(-1.5deg);
  transition: var(--transition);
}

.hero-main-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-main-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(229, 223, 201, 0.8);
}

.hero-badge-floating i {
  font-size: 1.8rem;
  color: #FBBC04;
}

.hero-badge-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-badge-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.floating-dish-card {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 160px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
  animation: float 4s ease-in-out infinite;
}

.floating-dish-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.4rem;
}

.floating-dish-card span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Keunggulan Section */
.features-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--terracotta) 100%);
  opacity: 0;
  transition: var(--transition);
}

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

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 56, 44, 0.08);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TENTANG KAMI & KEUNGGULAN (UNIFIED POWERFUL SECTION)
   ========================================================================== */
.about-features-unified-section {
  padding: 6.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.about-images-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--accent);
}

.about-experience-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--surface);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin-top: 1.5rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.about-checklist i {
  color: #25D366;
  font-size: 1.1rem;
}

.about-features-divider {
  margin: 5.5rem 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.about-features-divider::before,
.about-features-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-features-divider span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  background: var(--bg);
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}


/* Menu Section & Tabs */
.menu-section {
  padding: 5.5rem 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.5);
}

.menu-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrap img {
  transform: scale(1.08);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.menu-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.menu-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.menu-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--terracotta);
}

.menu-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-add-item {
  background: rgba(15, 56, 44, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-add-item:hover {
  background: var(--primary);
  color: var(--accent);
}

/* Interactive Order Calculator Section */
.calculator-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.calc-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 223, 201, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.calc-title {
  color: var(--surface);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.calc-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.calc-form-group {
  margin-bottom: 1.25rem;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--accent-light);
}

.calc-input, .calc-select, .calc-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--surface);
  font-family: inherit;
  font-size: 0.95rem;
}

.calc-input:focus, .calc-select:focus, .calc-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calc-summary-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-items-list {
  list-style: none;
  margin-bottom: 1.5rem;
  max-height: 220px;
  overflow-y: auto;
}

.calc-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.calc-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.qty-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.calc-total-box {
  padding-top: 1rem;
  border-top: 2px solid var(--accent);
  margin-bottom: 1.5rem;
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

/* ==========================================================================
   GOOGLE REVIEWS CAROUSEL SECTION (Highlighted Feature)
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.reviews-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.google-g-icon {
  width: 22px;
  height: 22px;
}

.stars-rating-badge {
  color: #FBBC04;
  font-size: 1.05rem;
  font-weight: 800;
}

/* Carousel Container */
.carousel-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem 0.5rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 1.5rem;
}

.review-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 320px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.review-slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.6);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.reviewer-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.google-icon-brand {
  font-size: 1.3rem;
}

.review-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.98rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-quote::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 0;
  display: inline-block;
  vertical-align: -0.5rem;
  margin-right: 0.3rem;
}

.review-footer-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.verified-badge {
  color: #128C7E;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Carousel Controls */
.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.carousel-prev {
  left: -22px;
}

.carousel-next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--terracotta);
  width: 32px;
  border-radius: var(--radius-full);
}

/* Stats Counter Grid */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  background: var(--surface);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Location & Map Section */
.location-section {
  padding: 5.5rem 0;
  background: var(--surface);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info-card {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 75, 49, 0.1);
  color: var(--terracotta);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-detail h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

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

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  height: 420px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
  background: var(--bg);
}

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

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

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--terracotta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.4rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--surface);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  max-width: 380px;
  font-size: 0.92rem;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--surface);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.floating-wa-btn i {
  font-size: 1.4rem;
}

.floating-wa-btn:hover {
  transform: scale(1.05);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .calculator-section .calc-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img-secondary {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .review-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-actions .btn-primary,
  .nav-actions .btn {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
    width: 100%;
    gap: 0.85rem;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 340px;
  }
  
  .about-features-divider {
    margin: 3.5rem 0 2rem;
  }
  
  .review-slide {
    flex: 0 0 100%;
  }

  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }

  .hero-title {
    font-size: 2.1rem;
  }

  .stats-banner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .floating-wa-btn span {
    display: none;
  }
  
  .floating-wa-btn {
    padding: 0.9rem;
    border-radius: 50%;
  }
}
