/* Custom properties for the catering website */
:root {
  /* Custom color palette - elegant beige/cream/gold theme (ADJUSTED FOR BEIGE) */
  
  /* Primary color - a warm, slightly darker beige/light brown for accents */
  --color-primary: #A38565; /* Warm Beige/Taupe */
  --color-primary-hover: #8F7250; /* Slightly darker */
  --color-primary-active: #7A5F3F; /* Darkest */
  
  /* Secondary color - a deep, earthy brown for contrast */
  --color-secondary: #5A4736; /* Deep Earth Brown */ 
  --color-accent: #6E5336; /* A slightly lighter deep brown for a tertiary accent */
  
  /* Backgrounds */
  --color-cream: #FFFDF8; /* Purest cream */
  --color-beige: #F5F1EB; /* Warm beige tone */
  --color-gold: #D2B48C; /* Use a medium beige for the 'gold' concept */
  --color-warm-white: #FCFBF7; /* Very light background */
    
  /* Override design system colors for this theme */
  --color-background: var(--color-warm-white); /* Main page background (light) */
  --color-surface: var(--color-cream); /* Card/section background (slightly lighter) */
  
  /* Text colors */
  --color-text: #2C2117; /* Very dark brown/almost black */
  --color-text-secondary: var(--color-secondary); /* Deep Earth Brown for secondary text */
  --color-btn-primary-text: var(--color-warm-white); /* White/cream text on primary button */
  
  /* Borders and elements */
  --color-border: rgba(163, 133, 101, 0.4); /* Border based on the new primary beige */
  --color-card-border: rgba(163, 133, 101, 0.2); /* Lighter card border */

  /* Fallback/System Colors (These often need to remain distinct for clarity/accessibility) */
  --color-error: #9A3030; /* A darker red/maroon for error */
  --color-success: #4E8A6E; /* A muted sage green for success */
  --color-warning: #B37E40; /* A darker ochre/mustard for warning */
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
    
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 20px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
--color-background: #1A1C1D;
  --color-surface: #222526;
  --color-text: #F5F5F5;
  --color-text-secondary: rgba(212, 175, 55, 0.7); /* Muted Gold */
  --color-primary: var(--color-accent); /* Gold Accent as Primary */
  --color-primary-hover: var(--color-accent-hover);
  --color-primary-active: #A58B5E;
  --color-secondary: rgba(27, 94, 32, 0.2); /* Muted Green */
  --color-secondary-hover: rgba(27, 94, 32, 0.3);
  --color-secondary-active: rgba(27, 94, 32, 0.4);
  --color-border: rgba(212, 175, 55, 0.4); /* Gold Border */
  --color-error: var(--color-red-400);
  --color-success: #4E8A6E; /* Muted Sage Green */
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(212, 175, 55, 0.5); /* Gold Ring */
  --color-btn-primary-text: var(--color-charcoal); /* Dark text on Gold button */
  --color-card-border: rgba(27, 94, 32, 0.3);
  --color-card-border-inner: rgba(27, 94, 32, 0.2);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* ... (Existing Primitive RGBs can be kept or removed if not referenced) ... */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  
  /* --- Semantic Color Tokens (Light Mode - OVERRIDE) --- */
  /* Replicate the custom colors from the :root block */
  --color-background: var(--color-cream); /* Using your custom cream */
  --color-surface: var(--color-warm-white); /* Using your custom warm white */
  --color-text: var(--color-charcoal);
  --color-text-secondary: #5D4E37;
  --color-primary: #1B5E20; /* Deep emerald green */
  --color-primary-hover: #2E7D32;
  --color-primary-active: #1B5E20;
  --color-secondary: #800020; /* Rich burgundy */
  --color-secondary-hover: rgba(128, 0, 32, 0.2); 
  --color-secondary-active: rgba(128, 0, 32, 0.3);
  --color-border: rgba(212, 175, 55, 0.3); /* Based on Accent/Gold */
  --color-btn-primary-text: var(--color-warm-white);
  --color-card-border: rgba(212, 175, 55, 0.2);
  --color-card-border-inner: rgba(212, 175, 55, 0.2);
  --color-error: var(--color-red-500); /* System color, keeping default */
  --color-success: var(--color-teal-500); /* System color, keeping default */
  --color-warning: var(--color-orange-500); /* System color, keeping default */
  --color-info: var(--color-slate-500); /* System color, keeping default */
  --color-focus-ring: rgba(27, 94, 32, 0.4); /* Based on Primary Green */
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* RGB versions for light mode (Update these to match your new primary/system colors) */
  --color-success-rgb: 33, 128, 141; /* Keep or use a new RGB value */
  --color-error-rgb: 192, 21, 47; /* Keep or use a new RGB value */
  --color-warning-rgb: 168, 75, 47; /* Keep or use a new RGB value */
  --color-info-rgb: 98, 108, 113; /* Keep or use a new RGB value */
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

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

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

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

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

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Custom properties for the catering website with new aesthetic color scheme */
:root {
  /* New sophisticated color palette */
  --color-primary: #1B5E20; /* Deep emerald green */
  --color-primary-hover: #2E7D32;
  --color-primary-active: #1B5E20;
  --color-accent: #D4AF37; /* Warm gold/champagne */
  --color-accent-hover: #B8935F;
  --color-secondary: #800020; /* Rich burgundy */
  --color-cream: #FFF8DC; /* Cream/ivory */
  --color-beige: #F5F5DC; /* Soft beige */
  --color-charcoal: #2C3E40; /* Charcoal gray */
  --color-warm-white: #FEFEFE;
  
  /* Override design system colors for this theme */
  --color-background: var(--color-cream);
  --color-surface: var(--color-warm-white);
  --color-text: var(--color-charcoal);
  --color-text-secondary: #5D4E37;
  --color-btn-primary-text: var(--color-warm-white);
  --color-border: rgba(212, 175, 55, 0.3);
  --color-card-border: rgba(212, 175, 55, 0.2);
  
  /* WhatsApp colors */
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #128C7E;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 20px;
  
  /* Enhanced shadows and effects */
  --shadow-elegant: 0 10px 30px rgba(27, 94, 32, 0.15);
  --shadow-premium: 0 20px 60px rgba(27, 94, 32, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  --gradient-background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 50%, var(--color-cream) 100%);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background: var(--gradient-background);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
.section__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Header with Logo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 248, 220, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(27, 94, 32, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__brand {
  display: flex;
  flex-direction: column;
}

.nav__logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__logo-link {
    display: flex; /* Ensures the image respects width/height properly */
    align-items: center; /* Vertically aligns logo if it's smaller */
    text-decoration: none; /* Remove underline from link */
}

.nav__logo-img {
    width: 60px; /* Adjust as needed for your logo size */
    height: 60px; /* Ensure aspect ratio is maintained or adjust accordingly */
    object-fit: contain; /* Ensures the entire logo is visible without cropping */
    border-radius: 50%; /* Make it circular, if desired, or set to 8px for a soft square */
    border: 3px solid var(--color-accent); /* Keep the elegant border */
    box-shadow: var(--shadow-elegant); /* Maintain the shadow effect */
    transition: all 0.3s ease;
    padding: 5px; /* Add some padding inside the border if logo doesn't fill */
    background-color: var(--color-surface); /* Background behind transparent logos */
}

.nav__logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-premium);
}


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

.nav__logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 600;
}

.nav__subtitle {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

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

.nav__phone {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-btn-primary-text);
  box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

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

.btn--outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn--outline:hover {
  color: var(--color-warm-white);
}

.btn--outline:hover::after {
  width: 100%;
}

.btn--full-width {
  width: 100%;
}

/* Enhanced Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--gradient-background);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 500px;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__images {
  position: relative;
  height: 500px;
}

.hero__image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
}

.hero__image:hover {
  transform: scale(1.02);
}

.hero__image--main {
  width: 350px;
  height: 280px;
  top: 0;
  left: 0;
  z-index: 2;
  border: 4px solid var(--color-accent);
}

.hero__image--secondary {
  width: 280px;
  height: 200px;
  bottom: 20px;
  right: 0;
  z-index: 1;
  border: 3px solid var(--color-primary);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enhanced Services Overview */
.services-overview {
  padding: var(--section-padding);
  background: var(--color-surface);
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(27, 94, 32, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--color-background);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--color-card-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-accent);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover .service-card__title,
.service-card:hover .service-card__description {
  color: var(--color-primary);
}

.service-card__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(27, 94, 32, 0.2));
}

.service-card__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card__description {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

/* WhatsApp QR Code Styling */
.whatsapp-qr {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 16px;
  border: 2px solid var(--whatsapp-green);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.1);
}

.whatsapp-qr h4 {
  font-family: var(--font-primary);
  color: var(--whatsapp-green-dark);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
}

.whatsapp-qr__container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.whatsapp-qr__code {
  flex-shrink: 0;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  border: 3px solid var(--whatsapp-green);
  border-radius: 12px;
  background: var(--color-warm-white);
  position: relative;
  overflow: hidden;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  position: relative;
  background: 
    repeating-linear-gradient(0deg, var(--whatsapp-green-dark) 0px, var(--whatsapp-green-dark) 4px, transparent 4px, transparent 8px),
    repeating-linear-gradient(90deg, var(--whatsapp-green-dark) 0px, var(--whatsapp-green-dark) 4px, transparent 4px, transparent 8px);
  opacity: 0.3;
}

.qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--whatsapp-green-dark);
  border-radius: 2px;
}

.qr-corner--tl {
  top: 8px;
  left: 8px;
}

.qr-corner--tr {
  top: 8px;
  right: 8px;
}

.qr-corner--bl {
  bottom: 8px;
  left: 8px;
}

.qr-corner--br {
  bottom: 8px;
  right: 8px;
}

.qr-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.qr-dot {
  width: 8px;
  height: 8px;
  background: var(--whatsapp-green-dark);
  border-radius: 1px;
}

.whatsapp-qr__info {
  text-align: center;
}

.whatsapp-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--whatsapp-green);
}

.whatsapp-qr__info p {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.whatsapp-number {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--color-warm-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Enhanced About Section */
.about {
  padding: var(--section-padding);
  background: var(--gradient-background);
}

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

.about__text .section__title {
  text-align: left;
  margin-bottom: 2rem;
}

.about__text .section__title::after {
  left: 0;
  transform: none;
}

.about__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.about__mission {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.about__mission h3 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-item {
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: 12px;
  border: 2px solid var(--color-card-border);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

.value-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.value-item p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  border: 3px solid var(--color-accent);
}

/* Enhanced Services Section */
.services {
  padding: var(--section-padding);
  background: var(--color-surface);
}

.services__categories {
  display: grid;
  gap: 3rem;
}

.service-category {
  background: var(--color-background);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--color-card-border);
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
}

.service-category:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}

.service-category__title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.service-category__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.service-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-item {
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0.05;
  transition: left 0.4s ease;
}

.service-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-elegant);
}

.service-item:hover::before {
  left: 0;
}

.service-item h4 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.service-item p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Enhanced Menu Section */
.menu {
  padding: var(--section-padding);
  background: var(--gradient-background);
}

.menu__categories {
  display: grid;
  gap: 2rem;
}

.menu-category {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--color-card-border);
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
}

.menu-category:hover {
  border-color: var(--color-accent);
}

.menu-category__header {
  background: var(--gradient-primary);
  color: var(--color-btn-primary-text);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.menu-category__header:hover {
  background: var(--color-primary-hover);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.menu-category__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
}

.menu-category__toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  background: rgba(255,255,255,0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-category__items {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  display: none;
  background: var(--color-background);
}

.menu-category__items.active {
  display: grid;
}

.menu-item {
  background: var(--color-surface);
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid var(--color-border);
  text-align: center;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-item:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.menu-item:hover::before {
  opacity: 0.1;
}

/* Enhanced Gallery Section */
.gallery {
  padding: var(--section-padding);
  background: var(--color-surface);
}

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery__filter {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.gallery__filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.gallery__filter:hover,
.gallery__filter.active {
  border-color: var(--color-primary);
  color: var(--color-warm-white);
  transform: translateY(-2px);
}

.gallery__filter:hover::before,
.gallery__filter.active::before {
  opacity: 1;
}

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

.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: block;
  box-shadow: var(--shadow-elegant);
}

.gallery__item.hidden {
  display: none;
}

.gallery__item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-premium);
}

.gallery__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(27, 94, 32, 0.9));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__overlay h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1.2rem;
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: var(--gradient-background);
}

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

.testimonial-card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--color-card-border);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-accent);
}

.testimonial-card:hover::before {
  opacity: 0.05;
}

.testimonial-card__rating {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
  font-style: italic;
  position: relative;
}

.testimonial-card__text::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-accent);
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: var(--font-primary);
}

.testimonial-card__author strong {
  color: var(--color-text);
  font-family: var(--font-primary);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.testimonial-card__author span {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Contact Section */
.contact {
  padding: var(--section-padding);
  background: var(--color-surface);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info h3 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.contact__item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--color-background);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.contact__item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-elegant);
}

.contact__item strong {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
}

.contact__item span {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Enhanced Form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-secondary);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

/* Enhanced Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.hidden {
  display: none;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 64, 0.8);
  backdrop-filter: blur(5px);
}

.modal__content {
  background: var(--color-background);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--color-accent);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 2px solid var(--color-border);
  background: var(--gradient-primary);
}

.modal__header h3 {
  font-family: var(--font-primary);
  color: var(--color-warm-white);
  margin: 0;
  font-size: 1.4rem;
}

.modal__close {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-warm-white);
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal__close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.modal__form {
  padding: 2rem;
}

/* Enhanced Footer */
.footer {
  background: var(--color-charcoal);
  color: var(--color-beige);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__section h3,
.footer__section h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 0.5rem;
}

.footer__section a {
  color: var(--color-beige);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer__section a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: rgba(245, 245, 220, 0.8);
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {

  .nav__logo-img {
    width: 50px;
    height: 50px;
  }
  .nav__logo-container {
    flex-direction: row; /* Keep elements in a row even on small screens */
    align-items: center;
    gap: 0.8rem; /* Adjust gap */
  }
    .nav__logo-img {
      width: 45px;
      height: 45px;
  }
  
  .nav__logo-placeholder {
    width: 45px;
    height: 45px;
  }
  
  .nav__logo-text {
    font-size: 1rem;
  }
  
  .nav__logo {
    font-size: 1.3rem;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav__menu.show {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
  }
  
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav__phone {
    font-size: 0.8rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero__images {
    height: 300px;
  }
  
  .hero__image--main {
    width: 280px;
    height: 200px;
    position: relative;
    left: 0;
    top: 0;
  }
  
  .hero__image--secondary {
    width: 200px;
    height: 150px;
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1rem;
  }
  
  .about__content,
  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .whatsapp-qr__container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-category__grid {
    grid-template-columns: 1fr;
  }
  
  .about__values {
    grid-template-columns: 1fr;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .modal {
    padding: 1rem;
  }
  
  .gallery__filters {
    flex-direction: column;
    align-items: center;
  }
  
  .nav__logo-container {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
}