/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
  --background: 45 30% 98%;
  --foreground: 20 20% 15%;

  --card: 45 40% 96%;
  --card-foreground: 20 20% 15%;

  --popover: 45 30% 98%;
  --popover-foreground: 20 20% 15%;

  --primary: 35 90% 50%;
  --primary-foreground: 0 0% 100%;

  --secondary: 350 60% 35%;
  --secondary-foreground: 0 0% 100%;

  --muted: 40 20% 90%;
  --muted-foreground: 20 10% 45%;

  --accent: 35 80% 45%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 35 30% 85%;
  --input: 35 30% 85%;
  --ring: 35 90% 50%;

  --radius: 0.75rem;

  /* Custom tokens */
  --gold: 40 85% 55%;
  --gold-dark: 35 80% 40%;
  --burgundy: 350 60% 30%;
  --burgundy-light: 350 50% 45%;
  --cream: 45 50% 95%;
  --warm-white: 40 40% 98%;
  --charcoal: 20 15% 20%;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(35 90% 50% / 0.95), hsl(350 60% 35% / 0.9));
  --gradient-warm: linear-gradient(180deg, hsl(45 50% 95%), hsl(40 40% 98%));
  --gradient-gold: linear-gradient(135deg, hsl(40 85% 55%), hsl(35 80% 40%));
  --gradient-card: linear-gradient(145deg, hsl(45 40% 96%), hsl(40 35% 92%));

  /* Shadows */
  --shadow-soft: 0 4px 20px hsl(35 30% 20% / 0.08);
  --shadow-medium: 0 8px 30px hsl(35 30% 20% / 0.12);
  --shadow-strong: 0 12px 40px hsl(35 30% 20% / 0.18);
  --shadow-glow: 0 0 40px hsl(35 90% 50% / 0.3);
}

/* ============================================
   Reset & Base
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Container
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   Utilities
   ============================================ */

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--gradient-gold);
}

.text-primary {
  color: hsl(var(--primary));
}

.bg-gradient-warm {
  background-image: var(--gradient-warm);
}

.bg-gradient-card {
  background-image: var(--gradient-card);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-medium {
  box-shadow: var(--shadow-medium);
}

.shadow-strong {
  box-shadow: var(--shadow-strong);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-label {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0.5rem 0 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.btn-outline {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-outline:active {
  transform: scale(0.95);
}

/* ============================================
   Icons
   ============================================ */

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.top-bar {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.5rem 1rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-phone {
  display: none;
}

@media (min-width: 768px) {
  .top-bar-phone {
    display: block;
  }
  
  .top-bar-phone a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
  }
  
  .top-bar-phone a:hover {
    opacity: 0.8;
  }
}

.main-nav {
  padding: 0.75rem 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo {
    height: 4rem;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  color: hsl(var(--foreground) / 0.8);
}

.header.scrolled .nav-link {
  color: hsl(var(--foreground) / 0.8);
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.header.scrolled .mobile-menu-btn {
  color: hsl(var(--foreground));
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: hsl(var(--background));
  box-shadow: var(--shadow-medium);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  animation: fade-up 0.3s ease-out;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  color: hsl(var(--foreground) / 0.8);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: hsl(var(--primary));
}

.mobile-nav-cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--charcoal) / 0.9), hsl(var(--charcoal) / 0.7), hsl(var(--charcoal) / 0.4));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, hsl(var(--primary) / 0.15) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, hsl(var(--secondary) / 0.1) 0%, transparent 50%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.hero-decoration-1 {
  top: 25%;
  right: 2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: hsl(var(--primary) / 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-decoration-2 {
  bottom: 25%;
  left: 2.5rem;
  width: 12rem;
  height: 12rem;
  background-color: hsl(var(--secondary) / 0.2);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--warm-white));
  font-size: 0.875rem;
  font-weight: 500;
  animation: fade-up 0.6s ease-out forwards;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--warm-white));
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--warm-white) / 0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
  animation: fade-up 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--warm-white) / 0.9);
}

.hero-stat .icon {
  color: hsl(var(--primary));
}

.stat-value {
  font-weight: 600;
}

.stat-label {
  color: hsl(var(--warm-white) / 0.6);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-up 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.btn-hero {
  font-size: 1.125rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--warm-white) / 0.1);
  animation: fade-up 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.trust-label {
  color: hsl(var(--warm-white) / 0.5);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  background-color: hsl(var(--warm-white) / 0.1);
  color: hsl(var(--warm-white) / 0.7);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--warm-white) / 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: hsl(var(--primary));
  border-radius: 9999px;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
  background-image: var(--gradient-warm);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content {
  margin-bottom: 2rem;
}

.about-text {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.founder-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.founder-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.founder-role {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border) / 0.5);
}

.feature-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-0.25rem);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ============================================
   Brands Section
   ============================================ */

.brands-section {
  padding: 3rem 1rem;
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.brands-header {
  text-align: center;
  margin-bottom: 2rem;
}

.brands-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.brands-subtitle {
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .brands-grid {
    gap: 3rem;
  }
}

.brand-item {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--background));
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .brand-item {
    width: 6rem;
    height: 6rem;
  }
}

.brand-item:hover {
  filter: grayscale(0%);
  box-shadow: var(--shadow-medium);
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================
   Menu Section
   ============================================ */

.menu-section {
  background-color: hsl(var(--background));
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.menu-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}

.menu-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-0.5rem);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.menu-image-wrapper {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-image {
  transform: scale(1.1);
}

.menu-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--charcoal) / 0.6), transparent);
}

.menu-content {
  padding: 1.25rem;
}

.menu-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.menu-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s ease;
}

.menu-link:hover {
  gap: 0.75rem;
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

.menu-cta-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
  background-color: hsl(var(--charcoal));
  color: hsl(var(--warm-white));
  position: relative;
  overflow: hidden;
}

.services-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.services-background::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  filter: blur(60px);
}

.services-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(var(--secondary));
  border-radius: 50%;
  filter: blur(60px);
}

.services-section .section-label,
.services-section .section-title,
.services-section .section-description {
  color: hsl(var(--warm-white));
  position: relative;
  z-index: 10;
}

.services-section .section-description {
  color: hsl(var(--warm-white) / 0.7);
}

.services-featured {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .services-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.service-featured-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.service-featured-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-featured-card:hover .service-featured-image {
  transform: scale(1.05);
}

.service-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--charcoal)), hsl(var(--charcoal) / 0.5), transparent);
}

.service-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.service-category {
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.service-featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--warm-white));
  margin: 0.25rem 0 0.5rem;
}

.service-featured-description {
  color: hsl(var(--warm-white) / 0.7);
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: hsl(var(--warm-white) / 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--warm-white) / 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card:hover {
  background-color: hsl(var(--warm-white) / 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.service-card-content {
  flex: 1;
}

.service-title {
  color: hsl(var(--warm-white));
  font-weight: 600;
  margin: 0.25rem 0 0.25rem;
}

.service-description {
  color: hsl(var(--warm-white) / 0.6);
  font-size: 0.875rem;
}

.services-experience {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  padding: 1rem 2rem;
}

.experience-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.experience-title {
  color: hsl(var(--warm-white));
  font-weight: 600;
}

.experience-subtitle {
  color: hsl(var(--warm-white) / 0.6);
  font-size: 0.875rem;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
  background-image: var(--gradient-warm);
}

.testimonials-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: hsl(var(--primary) / 0.2);
}

.testimonial-content {
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: hsl(var(--primary));
  fill: hsl(var(--primary));
}

.testimonial-text {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.testimonial-role {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: hsl(var(--foreground));
}

.testimonial-nav-btn:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--border));
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  width: 1.5rem;
  background-color: hsl(var(--primary));
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  background-color: hsl(var(--background));
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: var(--shadow-soft);
}

.contact-item-whatsapp {
  background-color: hsl(142 71% 45% / 0.1);
  border-color: hsl(142 71% 45% / 0.2);
}

.contact-item-whatsapp:hover {
  background-color: hsl(142 71% 45% / 0.2);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-icon-whatsapp {
  background-color: hsl(142 71% 45%);
  color: white;
}

.contact-item-title {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-item-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.coverage-card {
  background-image: var(--gradient-card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.coverage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.coverage-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.coverage-badge {
  background-color: hsl(var(--background) / 0.8);
  color: hsl(var(--foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
}

.coverage-badge-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}

.coverage-highlight {
  padding: 1.5rem;
  background-color: hsl(var(--secondary) / 0.1);
  border-radius: 0.75rem;
}

.coverage-highlight-title {
  color: hsl(var(--secondary));
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.coverage-highlight-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: hsl(var(--charcoal));
  color: hsl(var(--warm-white));
}

.footer-main {
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(var(--warm-white) / 0.7);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsl(var(--warm-white) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: hsl(var(--warm-white));
}

.footer-social-link:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-title {
  font-weight: 600;
  color: hsl(var(--warm-white));
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsl(var(--warm-white) / 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: hsl(var(--warm-white) / 0.7);
  font-size: 0.875rem;
}

.footer-icon {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--warm-white) / 0.1);
  padding: 1.5rem 1rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--warm-white) / 0.5);
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

/* ============================================
   WhatsApp Button
   ============================================ */

.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsl(142 71% 45%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px hsl(142 71% 45% / 0.4);
  transition: transform 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
  color: white;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* ============================================
   Animations
   ============================================ */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(var(--primary) / 0.5);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--accent));
}

/* ============================================
   Internal Pages Styles
   ============================================ */

/* Page Hero */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.page-description {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.content-main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--secondary));
}

.content-main h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: hsl(var(--charcoal));
}

.content-main p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
}

.sidebar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.check-list {
  list-style: none;
}

.check-list li {
  padding: 0.5rem 0;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border));
}

.check-list li:last-child {
  border-bottom: none;
}

.cta-card {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
}

.cta-card h4 {
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

/* Founder Highlight */
.founder-highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border-left: 4px solid hsl(var(--primary));
}

.founder-avatar.large {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.founder-quote {
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--gradient-hero);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Error Page */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  color: hsl(var(--primary));
  line-height: 1;
}

.error-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.error-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Intro Content */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--secondary));
}

.intro-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Menu Categories */
.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.menu-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-category-card:hover img {
  transform: scale(1.1);
}

.menu-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.menu-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.menu-category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.menu-category-content p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.menu-category-link {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.benefit-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Menu Options */
.menu-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.menu-option-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.menu-option-card.featured {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 20px hsl(var(--primary) / 0.2);
}

.menu-option-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(var(--primary));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.menu-option-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.menu-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-option-content {
  padding: 1.5rem;
}

.menu-option-tag {
  display: inline-block;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.menu-option-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.menu-option-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.menu-option-items {
  list-style: none;
  margin-bottom: 1.5rem;
}

.menu-option-items li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px dashed hsl(var(--border));
}

.menu-option-items li:last-child {
  border-bottom: none;
}

/* Included Section */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.included-item {
  text-align: center;
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
}

.included-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.included-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.included-item p {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

/* Menu Detail */
.menu-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .menu-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.menu-category-block {
  margin-bottom: 2rem;
}

.menu-category-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.menu-category-block ul {
  list-style: none;
}

.menu-category-block li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px dashed hsl(var(--border));
}

.menu-category-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
}

.menu-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-detail-cta {
  background: var(--gradient-hero);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.menu-detail-cta h3 {
  margin-bottom: 0.5rem;
}

.menu-detail-cta p {
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.menu-detail-info {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.menu-detail-info h4 {
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.menu-detail-info ul {
  list-style: none;
}

.menu-detail-info li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Services Page */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-page-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-page-icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.service-page-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-page-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-page-link {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
}

/* Contact Page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-full h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-card-icon.whatsapp {
  background: #25D366;
  color: white;
}

.contact-card-content h3 {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-card-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.contact-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: var(--radius);
}

.contact-hours h3 {
  margin-bottom: 0.5rem;
}

.coverage-card-full {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.coverage-card-full h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.coverage-regions {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.coverage-region {
  padding: 1rem;
  background: hsl(var(--background));
  border-radius: var(--radius);
}

.coverage-region h4 {
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.coverage-region p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.coverage-cta {
  padding: 1rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--primary));
}

/* Social Section */
.social-section {
  background: hsl(var(--card));
}

.social-content {
  text-align: center;
}

.social-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.social-content > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--background));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  color: hsl(var(--primary));
}

/* Neighborhoods Section */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.neighborhood-item {
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid hsl(var(--border));
  font-size: 0.875rem;
}

/* Services Available */
.services-available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-available-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-available-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: hsl(var(--primary));
}

.service-available-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-available-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Button Block */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: background 0.2s ease;
}

.nav-dropdown-content a:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.9);
}

/* Blog Grid (Listagem) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  width: 100%;
  height: 220px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.blog-card-meta time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.pagination-btn {
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-number.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  cursor: default;
}

.pagination-ellipsis {
  padding: 0 0.5rem;
  color: #999;
}

/* Blog Post Individual */
.blog-post-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.blog-post-featured-image {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--foreground);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  font-family: var(--font-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.blog-post-content h2 {
  font-size: 1.875rem;
}

.blog-post-content h3 {
  font-size: 1.5rem;
}

.blog-post-content h4 {
  font-size: 1.25rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-post-content a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-post-content a:hover {
  color: var(--primary-dark);
}

/* Blog Related Posts */
.blog-related-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

.blog-related-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.blog-related-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-related-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.blog-related-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.blog-related-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-related-card:hover .blog-related-image {
  transform: scale(1.05);
}

.blog-related-content {
  padding: 1.25rem;
}

.blog-related-meta {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-related-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.blog-related-card-title a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-related-card-title a:hover {
  color: var(--primary);
}

/* Blog Post CTA */
.blog-post-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.blog-post-cta p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: white;
}

.blog-post-cta .btn-primary {
  background: white;
  color: var(--primary);
}

.blog-post-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Alert Error */
.alert-error {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  color: #c33;
}

/* Responsive Blog */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-post-content {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-pagination {
    gap: 0.25rem;
  }
  
  .pagination-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
  
  .pagination-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   FEATURED SERVICE SECTION (Anões)
   ============================================ */

.featured-service-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.featured-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(197, 157, 95, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(197, 157, 95, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.featured-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.featured-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.featured-service-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-service-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin: 0;
}

.featured-service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.featured-service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.featured-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--foreground);
}

.featured-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.featured-service-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.featured-service-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.featured-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.featured-service-image:hover img {
  transform: scale(1.05);
}

/* Featured Service Card in Services Grid */
.service-card-featured {
  position: relative;
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(197, 157, 95, 0.15);
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.service-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(197, 157, 95, 0.3);
}

.service-card-featured .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.service-card-featured .service-title {
  color: var(--primary-dark);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.service-link .icon {
  transition: transform 0.2s ease;
}

.service-link:hover .icon {
  transform: translateX(2px);
}

/* Responsive Featured Service */
@media (max-width: 968px) {
  .featured-service-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .featured-service-title {
    font-size: 1.875rem;
  }
  
  .featured-service-description {
    font-size: 1rem;
  }
  
  .featured-service-ctas {
    flex-direction: column;
  }
  
  .featured-service-ctas .btn-large {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .featured-service-section {
    padding: 2.5rem 0;
  }
  
  .featured-service-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .featured-service-title {
    font-size: 1.625rem;
  }
  
  .featured-service-features {
    gap: 0.5rem;
  }
  
  .featured-feature {
    font-size: 0.9375rem;
  }
}
