/**
 * Velora Gıda - Ultra-Premium B2B Corporate Design System & Stylesheet
 * Architectural Aesthetics: Modern Swiss Editorial Luxury, Pristine Porcelain White (#FAFCFB), 
 * Deep Obsidian Forest (#081C12), Botanical Emerald (#059669), and Champagne Gold (#C59A27).
 * Typography: 'Outfit' (Headlines) + 'Plus Jakarta Sans' (Body & Interface).
 */

/* ==========================================================================
   1. DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Color Palette */
  --bg: #FAFCFB;
  --bg-pure: #FFFFFF;
  --bg-surface: #F1F6F3;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAF9;
  
  --text-main: #0B1911;
  --text-muted: #2E4537;
  --text-dim: #5E7567;
  --text-inverse: #F8FAFC;

  /* Executive Brand Colors */
  --brand-forest: #082115;
  --brand-forest-light: #0E3623;
  --brand-emerald: #059669;
  --brand-emerald-light: #10B981;
  --brand-emerald-subtle: rgba(5, 150, 105, 0.08);
  --brand-emerald-glow: rgba(16, 185, 129, 0.2);
  
  --brand-gold: #B88A1A;
  --brand-gold-light: #D4A329;
  --brand-gold-subtle: rgba(184, 138, 26, 0.08);
  
  --brand-wa: #25D366;
  --brand-wa-dark: #128C7E;
  
  /* Borders & Dividers */
  --border: #E2EBE5;
  --border-subtle: #EDF3EF;
  --border-emerald: rgba(5, 150, 105, 0.25);
  --border-gold: rgba(184, 138, 26, 0.25);
  
  /* Geometry & Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Elevation & Glow Shadows */
  --shadow-sm: 0 2px 6px -1px rgba(8, 33, 21, 0.05), 0 1px 3px -1px rgba(8, 33, 21, 0.03);
  --shadow-md: 0 10px 28px -4px rgba(8, 33, 21, 0.07), 0 3px 10px -2px rgba(8, 33, 21, 0.04);
  --shadow-lg: 0 22px 48px -8px rgba(8, 33, 21, 0.11), 0 6px 18px -3px rgba(8, 33, 21, 0.05);
  --shadow-glow: 0 12px 32px -4px rgba(5, 150, 105, 0.3);
  
  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   2. GLOBAL RESETS & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Subtle Background Lighting */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: 
    radial-gradient(circle at 85% 10%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 15% 90%, rgba(184, 138, 26, 0.03) 0%, transparent 45%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* ==========================================================================
   3. TOP ANNOUNCEMENT BAR & NAVBAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #061B11 0%, #0A2E1D 50%, #061B11 100%);
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 0.55rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.top-bar-contacts a {
  color: #E2E8F0;
  font-weight: 600;
}

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

.top-wa {
  color: #6EE7B7 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.5rem;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 40px;
  width: auto;
}

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

.nav-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-emerald);
  transition: width 0.25s ease;
  border-radius: var(--radius-full);
}

.nav-item:hover {
  color: var(--brand-forest);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. BUTTONS & PILLS (EFSANE STYLING)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #092B1B 0%, #0E3E27 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(9, 43, 27, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0E3E27 0%, #165638 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(9, 43, 27, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5B 100%);
  color: #03210C !important;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1EBE5B 0%, #17A34C 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--brand-forest);
  color: var(--brand-forest);
  background: var(--bg-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   5. HERO SECTION (HIGH IMPACT EDITORIAL)
   ========================================================================== */
.hero-section {
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  background: 
    radial-gradient(ellipse at 75% 20%, rgba(5, 150, 105, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(184, 138, 26, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFB 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-forest);
  background: #E8F5EE;
  border: 1px solid rgba(5, 150, 105, 0.28);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.08);
}

.hero-heading {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.14;
  color: #081C12;
  margin-bottom: 1.4rem;
  letter-spacing: -0.035em;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #082115 0%, #059669 60%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.75;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

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

.feat-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feat-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand-emerald-light);
  box-shadow: var(--shadow-md);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #F0FDF4;
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.feat-item small {
  font-size: 0.84rem;
  color: var(--text-dim);
}

/* ==========================================================================
   6. SECTION HEADERS & STANDARDS
   ========================================================================== */
.section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  position: relative;
}

.section-gray {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-forest);
  background: #E8F5EE;
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.section-head {
  margin-bottom: 3rem;
}

/* ==========================================================================
   7. ABOUT US (KURUMSAL TANITIM)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.lead-p {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-emerald);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-forest);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-text {
  font-size: 0.86rem;
  color: var(--text-dim);
  font-weight: 700;
}

.info-highlight-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.info-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #059669, #B88A1A);
  border-radius: 0 0 4px 4px;
}

.info-highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: var(--text-main);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  color: var(--brand-emerald);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

.check-list li strong {
  color: var(--text-main);
}

/* ==========================================================================
   8. PRICE TABLE SECTION (GÜNCEL HAL FİYATLARI)
   ========================================================================== */
.price-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-box input:focus {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cat-btn {
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cat-btn:hover {
  border-color: var(--brand-forest);
  color: var(--brand-forest);
}

.cat-btn.active {
  background: var(--brand-forest);
  color: #FFFFFF;
  border-color: var(--brand-forest);
  box-shadow: 0 4px 12px rgba(8, 33, 21, 0.2);
}

.price-table-container {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.price-table th {
  background: #F4F8F5;
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: #F9FCFA;
}

.badge-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.price-footer-cta {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4FBF7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.price-footer-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.price-footer-text span {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ==========================================================================
   9. SERVICES SECTION (BENTO-STYLE CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box:hover {
  transform: translateY(-4px);
  border-color: var(--brand-emerald);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.service-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-box p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ==========================================================================
   10. DISTRICTS SECTION (SEVKİYAT AĞI)
   ========================================================================== */
.districts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.district-group {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.district-group h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: var(--text-main);
}

.district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.district-tags span {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.district-tags span:hover {
  border-color: var(--brand-emerald);
  background: #FFFFFF;
  color: var(--brand-forest);
}

.delivery-info-banner {
  background: linear-gradient(135deg, #082115 0%, #0E3623 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.8rem 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.del-info-col strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.del-info-col span {
  font-size: 0.88rem;
  color: #6EE7B7;
}

/* ==========================================================================
   11. CONTACT SECTION
   ========================================================================== */
.contact-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-row {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-row:hover {
  border-color: var(--brand-emerald);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.c-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #F0FDF4;
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-bottom: 0.1rem;
}

.c-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-forest);
}

.contact-row small {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.form-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: #FFFFFF;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

/* ==========================================================================
   12. FOOTER (OBSIDIAN BOTANICAL LUXURY)
   ========================================================================== */
.footer {
  background: #06140D;
  color: #F8FAFC;
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #94A3B8;
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact {
  font-size: 0.88rem;
  color: #94A3B8;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #6EE7B7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: #64748B;
}

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

.admin-link {
  color: #64748B;
  font-weight: 600;
}

.admin-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   13. MOBILE RESPONSIVENESS (100% TELEFONA UYUMLU)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.6rem;
  }
  
  .about-grid, .contact-card-grid, .districts-container, .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .hero-heading {
    font-size: 2.1rem;
  }
  
  .hero-features-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .delivery-info-banner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  /* Responsive Mobile Cards for Price Table */
  .price-table-container {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .price-table {
    display: block;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .price-table tr {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
  }

  .price-table td {
    padding: 0.4rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .price-table td::before {
    content: attr(data-label);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 700;
  }

  .price-table td:first-child {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-forest);
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .price-table td:first-child::before {
    display: none;
  }

  .price-table td:last-child {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-subtle);
  }
  
  .price-table td:last-child::before {
    display: none;
  }
  
  .price-table td:last-child .btn {
    width: 100%;
  }
}

/* ==========================================================================
   14. MAINTENANCE OVERLAY & ADMIN BYPASS BAR
   ========================================================================== */
.admin-bypass-bar {
  background: linear-gradient(90deg, #92400E 0%, #B45309 100%);
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.admin-bypass-bar a {
  background: #FFFFFF;
  color: #92400E;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 800;
}

.maintenance-screen {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 25%, rgba(5, 150, 105, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(184, 138, 26, 0.08) 0%, transparent 45%),
    #FAFCFB;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.maintenance-card {
  width: 100%;
  max-width: 580px;
  background: #FFFFFF;
  border: 1px solid #E2EBE5;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.maintenance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #082115 0%, #059669 50%, #B88A1A 100%);
}

.m-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.m-countdown-box {
  background: #F1F6F3;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.5rem;
}

.m-countdown-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-forest);
  line-height: 1;
}

.m-countdown-box span {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   15. ADMIN CONTROL CENTER (YÖNETİM PANELİ) STYLES
   ========================================================================== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #F8FAFC;
  color: #0F172A;
}

.admin-sidebar {
  width: 270px;
  background: #081C12;
  color: #FFFFFF;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.sidebar-nav a {
  color: #94A3B8;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.sidebar-nav a.active {
  background: var(--brand-emerald);
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.admin-main {
  margin-left: 270px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F8FAFC;
}

.admin-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.admin-status-pill:hover {
  transform: translateY(-1px);
}

.admin-status-pill.status-live {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
}

.admin-status-pill.status-maintenance {
  background: #FEF3C7;
  color: #92400E;
  border-color: #FDE68A;
}

.admin-content {
  padding: 2rem;
  flex: 1;
}

/* KPI Cards */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.admin-kpi-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Settings Cards & Form Controls */
.settings-section-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.settings-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #081C12;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.settings-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.settings-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #FFFFFF;
  color: #0F172A;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.form-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

/* iOS Style Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #CBD5E1;
  transition: .25s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .25s;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.switch input:checked + .slider {
  background-color: var(--brand-emerald);
}

.switch input:checked + .slider:before {
  transform: translateX(22px);
}

/* Admin Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background: #F8FAFC;
  color: #64748B;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #E2E8F0;
}

.admin-table td {
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #F8FAFC;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #64748B;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-xs);
}

.modal-close-btn:hover {
  background: #F1F5F9;
  color: #0F172A;
}

/* Code Preview Box */
.code-preview-box {
  background: #0B1911;
  color: #86EFAC;
  font-family: monospace;
  font-size: 0.84rem;
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  max-height: 250px;
  white-space: pre-wrap;
  line-height: 1.5;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
}

.badge-green {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.badge-yellow {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.badge-blue {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.badge-gold {
  background: #FEF9C3;
  color: #854D0E;
  border: 1px solid #FDE047;
}

/* Admin Responsive */
@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .admin-sidebar.open {
    transform: translateX(0);
  }
  
  .admin-main {
    margin-left: 0;
  }
  
  .settings-grid-2, .settings-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .admin-topbar {
    padding: 1rem;
  }
  
  .admin-content {
    padding: 1rem;
  }
}


