
:root {
  --primary: #6A1B9A;
  --primary-dark: #4A148C;
  --primary-light: #9C27B0;
  --secondary: #F4C542;
  --secondary-dark: #E0A800;
  --accent: #FF6B6B;
  --accent-light: #FF8E8E;
  --bg: #FAF8FC;
  --bg-alt: #F3EEF7;
  --bg-dark: #2D1B35;
  --card-bg: #ffffff;
  --text: #2D1B35;
  --text-light: #523F5B;
  --text-white: #FFFFFF;
  --border: #E2DAE6;
  --shadow-sm: 0 4px 10px rgba(106,27,154,0.04);
  --shadow-md: 0 10px 30px rgba(106,27,154,0.08);
  --shadow-lg: 0 20px 50px rgba(106,27,154,0.12);
  --shadow-xl: 0 30px 70px rgba(106,27,154,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.85rem); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .subtitle { color: var(--text-light); font-size: 1.15rem; max-width: 600px; margin: 0 auto; font-weight: 500; }
.section-header .accent-line { width: 80px; height: 5px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: var(--radius-full); margin: 20px auto 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; border-radius: var(--radius-full); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer; transition: var(--transition); text-align: center; box-shadow: var(--shadow-sm); }
.btn:active { transform: scale(0.97) translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 8px 25px rgba(106,27,154,0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(106,27,154,0.35); }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); color: var(--text); box-shadow: 0 8px 25px rgba(244,197,66,0.25); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(244,197,66,0.35); }
.btn-outline { background: transparent; border: 2.5px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--text); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 8px 25px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { transform: translateY(-3px); background: #20BD5A; box-shadow: 0 12px 30px rgba(37,211,102,0.35); }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000; transition: var(--transition); display: flex; align-items: center; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.05); }
.navbar.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(25px); box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(106,27,154,0.06); height: 75px; }

.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; flex-direction: column; line-height: 0.85; transition: var(--transition); text-decoration: none; }
.logo-brand-main {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text-white);
  transition: var(--transition);
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar.scrolled .logo-brand-main {
  color: #6A1B9A;
  text-shadow: none;
}
.logo-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.2vw, 12px);
  color: #F4C542;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.navbar.scrolled .logo-brand-sub {
  text-shadow: none;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 600; font-size: 1rem; position: relative; color: var(--text-white); transition: var(--transition); padding: 8px 0; text-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.navbar.scrolled .nav-links a { color: var(--text); text-shadow: none; }

.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--secondary); transition: var(--transition); border-radius: var(--radius-full); transform: translateX(-50%); }
.navbar.scrolled .nav-links a::after { background: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--secondary); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }

.nav-cta { padding: 12px 28px; font-size: 0.95rem; }
.navbar:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.navbar:not(.scrolled) .nav-cta:hover {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(244,197,66,0.3);
}

.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--text-white); transition: var(--transition); border-radius: var(--radius-full); }
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-height); }
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1.08); transition-property: opacity, transform; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.85); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,27,53,0.92) 0%, rgba(106,27,154,0.7) 50%, rgba(255,107,107,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; color: white; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(15px); padding: 10px 24px; border-radius: var(--radius-full); font-size: 0.9rem; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.25); font-weight: 600; box-shadow: var(--shadow-sm); animation: pulse 3s infinite; }
.hero h1 { margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero h1 .highlight { color: var(--secondary); background: linear-gradient(90deg, var(--secondary), #FFE680); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(1.05rem, 2.5vw, 1.25rem); opacity: 0.95; margin-bottom: 40px; line-height: 1.85; text-shadow: 0 1px 4px rgba(0,0,0,0.15); max-width: 680px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.hero-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.hero-dot.active { background: var(--secondary); width: 36px; border-radius: var(--radius-full); border-color: rgba(255,255,255,0.3); }

/* Trust Bar */
.trust-bar { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 24px 0; box-shadow: var(--shadow-md); position: relative; z-index: 5; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-family: 'Outfit'; font-size: 1.05rem; letter-spacing: 0.02em; }
.trust-item .icon { font-size: 1.6rem; transform: scale(1); transition: var(--transition); }
.trust-item:hover .icon { transform: scale(1.2) rotate(10deg); }

/* Card Premium Design */
.card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.card-img { width: 100%; height: 240px; object-fit: cover; transition: var(--transition); }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 32px; }
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: var(--transition);
  border: 1px solid transparent;
}
.card-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.badge-fruit {
  background: rgba(255, 107, 107, 0.09);
  color: #E53935;
  border-color: rgba(255, 107, 107, 0.25);
}
.badge-fruit::before {
  background: #E53935;
  box-shadow: 0 0 8px #E53935;
}
.badge-milk {
  background: rgba(106, 27, 154, 0.07);
  color: var(--primary);
  border-color: rgba(106, 27, 154, 0.2);
}
.badge-milk::before {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}
.badge-seasonal {
  background: rgba(244, 197, 66, 0.09);
  color: #D48C00;
  border-color: rgba(244, 197, 66, 0.35);
}
.badge-seasonal::before {
  background: #F4C542;
  box-shadow: 0 0 8px #F4C542;
}
.badge-traditional {
  background: rgba(142, 36, 170, 0.09);
  color: #7B1FA2;
  border-color: rgba(142, 36, 170, 0.25);
}
.badge-traditional::before {
  background: #7B1FA2;
  box-shadow: 0 0 8px #7B1FA2;
}

/* Flavor Grid Premium Styling */
.flavor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.flavor-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--card-bg); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); display: flex; flex-direction: column; }
.flavor-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.flavor-card .flavor-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; transition: var(--transition); overflow: hidden; }
.flavor-card .flavor-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.flavor-card:hover .flavor-img img { transform: scale(1.06); }
.flavor-card .flavor-info { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.flavor-card h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--text); font-weight: 800; }
.flavor-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* Features Section */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.feature-card { text-align: center; padding: 48px 32px; border-radius: var(--radius-lg); background: var(--card-bg); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-icon { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, rgba(106,27,154,0.08), rgba(244,197,66,0.08)); transition: var(--transition); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, rgba(106,27,154,0.15), rgba(244,197,66,0.15)); }
.feature-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

/* Area Tags */
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.area-tag { padding: 12px 28px; border-radius: var(--radius-full); background: var(--card-bg); border: 1px solid var(--border); font-weight: 600; font-family: 'Outfit'; transition: var(--transition); cursor: default; box-shadow: var(--shadow-sm); }
.area-tag:hover { background: var(--primary); color: white; border-color: var(--primary); transform: scale(1.05); }

/* Premium FAQ Accordion */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border-radius: var(--radius-md); margin-bottom: 16px; border: 1px solid var(--border); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-question { padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-family: 'Outfit', sans-serif; font-size: 1.15rem; gap: 16px; transition: var(--transition); color: var(--text); }
.faq-item:hover .faq-question { color: var(--primary); }
.faq-question::after { content: '↓'; font-size: 1.3rem; color: var(--primary); transition: var(--transition); flex-shrink: 0; font-weight: bold; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: rgba(106,27,154,0.05); border-radius: 50%; }
.faq-item.active .faq-question::after { content: '↑'; background: var(--primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner { padding: 0 32px 24px; color: var(--text-light); line-height: 1.75; font-size: 1rem; }

/* Contact Premium Grid */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
.contact-info-cards { display: grid; gap: 20px; }
.contact-card { display: flex; align-items: center; gap: 20px; padding: 24px; background: var(--card-bg); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateX(5px); }
.contact-card .icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(106,27,154,0.2); }

/* Premium Contact Form */
.contact-form { background: var(--card-bg); padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; font-size: 1.6rem; letter-spacing: -0.01em; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.form-group input, .form-group textarea { width: 100%; padding: 16px 20px; border-radius: var(--radius-md); border: 1px solid var(--border); font-family: 'Inter', sans-serif; font-size: 1rem; transition: var(--transition); background: var(--bg); color: var(--text); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(106,27,154,0.12); background: white; }

/* Gallery Layout */
.gallery-grid { columns: 3; column-gap: 24px; }
.gallery-item { break-inside: avoid; margin-bottom: 24px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.gallery-item img { width: 100%; transition: var(--transition); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(106,27,154,0.45); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; opacity: 0; transition: var(--transition); backdrop-filter: blur(3px); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox Premium */
.lightbox { position: fixed; inset: 0; background: rgba(45,27,53,0.96); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.lightbox.active { display: flex; }
.lightbox img { max-width: 85%; max-height: 80vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 3px solid rgba(255,255,255,0.1); }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: white; font-size: 3rem; cursor: pointer; background: none; border: none; transition: var(--transition); }
.lightbox-close:hover { transform: scale(1.1) rotate(90deg); color: var(--secondary); }

/* Map Design */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 450px; border: 0; filter: contrast(1.05) saturate(1.1); }

/* Premium CTA Section */
.cta-section { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%); color: white; text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(244,197,66,0.15) 0%, transparent 50%); pointer-events: none; }
.cta-section h2 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3rem); }
.cta-section p { opacity: 0.9; margin-bottom: 40px; font-size: 1.2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* About Page Elements */
.about-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-content img { width: 100%; height: auto; object-fit: cover; }
.about-hero { background: linear-gradient(135deg, var(--bg-alt), var(--bg)); padding: 140px 0 80px; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.value-item { display: flex; align-items: center; gap: 14px; font-weight: 700; font-family: 'Outfit'; font-size: 1.1rem; }
.value-item .icon { font-size: 1.6rem; }
.dont-use-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.dont-use-item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 24px; background: #FFF5F5; border: 1px solid rgba(239,68,68,0.15); border-radius: var(--radius-md); font-weight: 700; color: #DC2626; font-size: 1.05rem; box-shadow: var(--shadow-sm); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.process-step { padding: 32px 20px; background: var(--card-bg); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.process-step .step-num { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Outfit'; font-size: 1.25rem; box-shadow: 0 4px 12px rgba(106,27,154,0.25); }

/* Inner Page Hero Header */
.page-hero { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%); padding: 160px 0 80px; text-align: center; color: white; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(244,197,66,0.1) 0%, transparent 40%); pointer-events: none; }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(2.5rem, 5vw, 3.8rem); text-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto; text-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.breadcrumbs { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.breadcrumbs a:hover { color: var(--secondary); }

/* Filter Tabs Styling */
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.filter-tab { padding: 12px 28px; border-radius: var(--radius-full); border: 2.5px solid var(--border); background: transparent; font-family: 'Outfit'; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); color: var(--text-light); }
.filter-tab.active, .filter-tab:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: var(--shadow-sm); }

/* Premium Footer */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo-center { display: flex; justify-content: center; align-items: center; margin-bottom: 50px; }
.footer-logo-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.footer-logo-circle:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 35px rgba(106,27,154,0.35);
}
.footer-big-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; opacity: 0.8; }
.footer h4 { font-size: 1.15rem; margin-bottom: 24px; color: white; font-weight: 700; border-left: 4px solid var(--secondary); padding-left: 12px; font-family: 'Outfit'; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1.2rem; }
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--text); transform: translateY(-4px); }
.footer-bottom { text-align: center; padding: 30px 0; font-size: 0.9rem; opacity: 0.6; border-top: 1px solid rgba(255,255,255,0.03); }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 968px) {
  :root { --nav-height: 70px; }
  .navbar .container { position: relative; }
  
  /* Mobile Menu Styles */
  .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: rgba(45,27,53,0.98); backdrop-filter: blur(25px); flex-direction: column; justify-content: center; padding: 100px 40px 40px; gap: 28px; box-shadow: var(--shadow-xl); transition: var(--transition); z-index: 999; border-left: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-white) !important; font-size: 1.15rem; width: 100%; text-align: center; }
  
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .navbar.scrolled .nav-toggle span { background: var(--text); }
  .nav-toggle.open span { background: var(--text-white) !important; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 56px; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(45,27,53,0.95) 0%, rgba(106,27,154,0.85) 50%, rgba(45,27,53,0.95) 100%); }
  .hero-content { text-align: center; padding: 100px 16px 110px; display: flex; flex-direction: column; align-items: center; }
  .hero-buttons { justify-content: center; width: 100%; gap: 14px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; padding: 14px 28px; }
  .hero p { margin-left: auto; margin-right: auto; font-size: 1.05rem; line-height: 1.7; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); line-height: 1.3; }
  .hero-dots { bottom: 30px; }
}

@media (max-width: 576px) {
  .logo-brand-main { font-size: 24px; }
  .logo-brand-sub { font-size: 9px; letter-spacing: 0.12em; }
  .section { padding: 70px 0; }
  .trust-bar .container { gap: 16px; justify-content: center; }
  .trust-item { font-size: 0.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { columns: 1; }
  .about-values { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 20px; }
}
/* Accessibility & Contrast Fixes */
.footer-bottom a { text-decoration: underline; }
.privacy-content a { text-decoration: underline; }
#seo-content a { text-decoration: underline; }

/* Performance Image Sizing Aspect Ratios */
.flavor-img img, .about-content img, .gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.about-content img {
  aspect-ratio: 3 / 2;
}
