/* Modern Artisan Mutfak Styles - Inspired by contemporary catering websites */

:root {
  /* Modern Color Palette */
  --primary: #2c5530;
  --primary-light: #4a7c50;
  --primary-dark: #1e3b22;
  --accent: #ff6b35;
  --accent-light: #ff8a5c;
  --secondary: #f4a261;
  --secondary-light: #f7c892;
  
  /* Neutral Colors */
  --bg-primary: #fefefe;
  --bg-secondary: #f8f9fa;
  --bg-accent: #fff8f5;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border-light: rgba(0,0,0,0.08);
  --border-medium: rgba(0,0,0,0.12);
  
  /* Shadows & Effects */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-primary: 0 10px 30px rgba(44,85,48,0.20);
  --shadow-accent: 0 8px 25px rgba(255,107,53,0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-primary);
  
  /* Layout */
  --container-max: 1280px;
  --container-padding: 24px;
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Layout Components */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(44,85,48,0.30);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,53,0.35);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.9);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: white;
  transform: translateY(-2px);
}

/* Mobile Button Styles */
.btn-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: auto;
}

.btn-mobile .btn-icon {
  font-size: 1.2rem;
}

.btn-mobile .btn-text {
  font-size: 0.9rem;
}

/* Header Styles */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-contacts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-contacts a {
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
}

.top-bar-contacts a:hover {
  color: white;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-accent);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.logo-text .tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(44,85,48,0.08);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  z-index: 1000;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: 
    radial-gradient(circle at top right, rgba(255,107,53,0.1), transparent 50%),
    radial-gradient(circle at bottom left, rgba(44,85,48,0.1), transparent 50%),
    linear-gradient(135deg, var(--bg-primary), var(--bg-accent));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-main {
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-primary);
}

.hero-badge::before {
  content: '��️';
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.hero-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

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

/* Chef Card */
.chef-card {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(251,191,36,0.2);
  position: relative;
  overflow: hidden;
}

.chef-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(251,191,36,0.1), transparent);
  animation: float 6s ease-in-out infinite;
}

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

.chef-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.chef-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.chef-title {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.chef-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chef-specialty {
  background: rgba(255,255,255,0.8);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.1);
}

.chef-quote {
  background: rgba(255,255,255,0.9);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  position: relative;
}

.chef-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin: 4rem 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact-section.bg-food-contact {
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.93)),
    url('f.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08));
  pointer-events: none;
}

.contact-section.bg-food-contact::before {
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.12));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-feature {
  background: rgba(44,85,48,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  border: 1px solid rgba(44,85,48,0.2);
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.contact-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-details a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Form Styles */
.contact-form {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,85,48,0.2);
  background: var(--bg-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.form-actions small {
  color: var(--text-muted);
  font-size: 0.75rem;
  max-width: 300px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25d366;
  color: white;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
}

.whatsapp-icon {
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --container-padding: 20px;
  }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .btn-mobile .btn-text {
    display: none;
  }
  
  .btn-mobile {
    min-width: 45px;
    padding: 0.75rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .top-bar {
    padding: 0.5rem 0;
  }
  
  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .top-bar-contacts {
    gap: 1rem;
    font-size: 0.8rem;
  }
  
  .header-content {
    padding: 0.75rem 0;
    gap: 1rem;
  }
  
  .logo {
    gap: 0.75rem;
  }
  
  .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .logo-text h1 {
    font-size: 1.25rem;
  }
  
  .logo-text .tagline {
    font-size: 0.7rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 3fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-whatsapp a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .floating-whatsapp .whatsapp-text {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }
  
  .top-bar-content span {
    font-size: 0.8rem;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-feature {
    padding: 0.75rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .hero-feature-text {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .card {
    padding: 1.25rem;
  }
  
  .service-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .service-icon {
    margin: 0 auto 1rem;
  }
  
  .chef-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .contact-section {
    padding: 1.5rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .floating-whatsapp a {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Background Image Classes */
.bg-food-1 {
  background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('g.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-food-2 {
  background-image: linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)), url('f.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-food-3 {
  background-image: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)), url('s.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-food-overlay {
  position: relative;
}

.bg-food-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.90));
  z-index: -1;
  border-radius: inherit;
}

/* Card background variations */
.card.bg-food-card {
  background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('g.webp');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(2px);
}

.service-card.bg-food-service {
  background-image: linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)), url('f.webp');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(1px);
}

.chef-card.bg-food-chef {
  background-image: linear-gradient(rgba(255,247,237,0.95), rgba(254,243,199,0.92)), url('s.webp');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(1px);
}

/* Mobile optimization for background images */
@media (max-width: 768px) {
  .bg-food-1,
  .bg-food-2,
  .bg-food-3 {
    background-attachment: scroll;
    background-size: cover;
  }
  
  .bg-food-1 {
    background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('g.webp');
  }
  
  .bg-food-2 {
    background-image: linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)), url('f.webp');
  }
  
  .bg-food-3 {
    background-image: linear-gradient(rgba(255,255,255,0.91), rgba(255,255,255,0.91)), url('s.webp');
  }
  
  .contact-section.bg-food-contact {
    background: 
      linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,249,250,0.94)),
      url('f.webp');
    background-attachment: scroll;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

.w-full { width: 100%; }
.h-full { height: 100%; }