@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary: #5B8C5A;
  --primary-dark: #4a7349;
  --primary-light: #93AB5C;
  --beige: #f0f4e8;
  --cream: #f8faf3;
  --dark: #1a2e1a;
  --text: #2c3e2c;
  --text-light: #6b7c6b;
  --white: #FFFFFF;
  --border: #d4e4c8;
  --success: #5B8C5A;
  --error: #C0392B;
  --shadow: rgba(26, 46, 26, 0.08);
  --shadow-hover: rgba(26, 46, 26, 0.18);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 80px;
  --nav-total: 122px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--dark); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .subtitle {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; display: block;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.section-header .divider { margin-top: 1rem; }

.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--primary-light), var(--primary)); border-radius: 2px; margin: 0 auto; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px var(--shadow-hover); color: white; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: white; }
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.4); color: white; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-wa { background: #25D366; color: white; border-color: #25D366; }
.btn-wa:hover { background: #1da851; border-color: #1da851; color: white; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar-wrapper.scrolled { box-shadow: 0 4px 25px var(--shadow); }

.navbar {
  height: var(--nav-height); background: rgba(253,248,240,0.97);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; display: block; }

/* Alt menü bar */
.nav-submenu {
  background: #93AB5C;
  height: 42px;
}
.nav-submenu .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0; }
.nav-submenu-links { display: flex; align-items: center; height: 100%; flex: 1; justify-content: center; }
.nav-submenu-links a {
  display: flex; align-items: center; height: 100%;
  padding: 0 1.4rem; color: white; font-size: 0.88rem; font-weight: 600;
  transition: background var(--transition); text-decoration: none; white-space: nowrap;
}
.nav-submenu-links a:hover { background: rgba(255,255,255,0.15); }
.nav-submenu-links a.active { background: rgba(0,0,0,0.15); }
/* Dropdown */
.nsub-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.nsub-parent {
  display: flex; align-items: center; gap: 0.3rem; height: 42px;
  padding: 0 1.4rem; color: white; font-size: 0.88rem; font-weight: 600;
  transition: background var(--transition); text-decoration: none; white-space: nowrap; cursor: pointer;
}
.nsub-parent:hover, .nsub-parent.active { background: rgba(255,255,255,0.15); color: white; }
.nsub-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 12px 35px rgba(44,24,16,0.18); min-width: 210px;
  border: 1px solid var(--border); border-top: 3px solid #93AB5C; z-index: 999;
  overflow: hidden;
}
.nsub-dropdown-menu a {
  display: block; padding: 0.62rem 1.1rem; color: var(--text);
  font-size: 0.84rem; font-weight: 500; transition: all 0.15s;
  text-decoration: none; border-bottom: 1px solid var(--beige);
}
.nsub-dropdown-menu a:last-child { border-bottom: none; }
.nsub-dropdown-menu a:hover { background: #f7f3ec; color: #93AB5C; padding-left: 1.4rem; }
.nsub-dropdown:hover .nsub-dropdown-menu { display: block; }

.nav-submenu-auth { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nsub-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 1rem; background: white; color: #93AB5C;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
  text-decoration: none; transition: all var(--transition); white-space: nowrap;
}
.nsub-btn:hover { background: #f0f0f0; color: #7a9248; }

/* Navbar quick action buttons */
.nav-quick-btns { display: flex; align-items: center; gap: 0.75rem; }
.nav-qbtn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.42rem 0.9rem; background: #93AB5C; color: white;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  transition: all var(--transition); text-decoration: none; border: none; cursor: pointer;
  font-family: inherit;
}
.nav-qbtn svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-qbtn:hover { background: #7a9248; color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(147,171,92,0.4); }

/* Search modal */
.search-modal-overlay {
  position: fixed; inset: 0; background: rgba(44,24,16,0.55); z-index: 2000;
  display: none; align-items: flex-start; justify-content: center; padding-top: 100px;
}
.search-modal-overlay.active { display: flex; }
.search-modal {
  background: white; border-radius: var(--radius); width: 100%; max-width: 600px;
  margin: 0 1rem; box-shadow: 0 20px 60px rgba(44,24,16,0.25); overflow: hidden;
}
.search-modal-head {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.search-modal-head svg { color: #93AB5C; flex-shrink: 0; }
.search-modal-input {
  flex: 1; border: none; font-size: 1rem; color: var(--dark); background: transparent;
  font-family: inherit; outline: none;
}
.search-modal-input::placeholder { color: var(--text-light); }
.search-modal-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-light); padding: 0.25rem; }
.search-results { max-height: 360px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--beige);
  transition: background var(--transition); text-decoration: none; color: var(--text);
}
.search-result-item:hover { background: var(--cream); }
.search-result-item:last-child { border-bottom: none; }
.sr-icon { width: 36px; height: 36px; background: var(--beige); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.sr-title { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.sr-meta { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }
.search-empty { padding: 2rem; text-align: center; color: var(--text-light); font-size: 0.9rem; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-auth-btn {
  padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.83rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer;
}
.nav-auth-btn.login { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.nav-auth-btn.login:hover { border-color: var(--primary); background: var(--beige); }
.nav-auth-btn.register { background: var(--primary); color: white; border: 1.5px solid var(--primary); }
.nav-auth-btn.register:hover { background: var(--primary-dark); }


/* Hamburger toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Off-canvas backdrop */
.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 997; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Off-canvas panel */
.nav-mobile {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100dvh;
  background: white; z-index: 999;
  display: flex; flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(44,24,16,0.18);
  overflow-y: auto;
}
.nav-mobile.active { right: 0; }

.nav-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--beige);
  background: var(--cream); flex-shrink: 0;
}
.nav-mobile-head img { height: 38px; width: auto; }
.nav-mobile-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--beige); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-light); transition: all var(--transition);
}
.nav-mobile-close:hover { background: var(--border); color: var(--dark); }

.nav-mobile-links { flex: 1; overflow-y: auto; }
.nav-mobile-section { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--text-light); padding: 1.1rem 1.25rem 0.35rem; display: block; }
.nav-mobile-links a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.25rem; font-weight: 500; color: var(--text);
  font-size: 0.92rem; border-bottom: 1px solid var(--beige);
  transition: all 0.15s; text-decoration: none;
}
.nav-mobile-links a.sub { padding-left: 2rem; font-size: 0.85rem; color: var(--text-light); }
.nav-mobile-links a:hover { color: #93AB5C; background: var(--cream); padding-left: 1.55rem; }
.nav-mobile-links a.sub:hover { padding-left: 2.25rem; }

.nav-mobile-quickbtns {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-bottom: 1px solid var(--beige); flex-shrink: 0;
}
.nav-mobile-quickbtns a,
.nav-mobile-quickbtns button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.3rem; padding: 0.9rem 0.5rem;
  font-size: 0.72rem; font-weight: 600; color: var(--text);
  background: none; border: none; border-right: 1px solid var(--beige);
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: background var(--transition);
}
.nav-mobile-quickbtns a:last-child,
.nav-mobile-quickbtns button:last-child { border-right: none; }
.nav-mobile-quickbtns a:hover,
.nav-mobile-quickbtns button:hover { background: var(--beige); color: #93AB5C; }
.nav-mobile-quickbtns svg { width: 18px; height: 18px; color: #93AB5C; }

.nav-mobile-footer {
  padding: 1.1rem 1.25rem; border-top: 1px solid var(--beige);
  display: flex; flex-direction: column; gap: 0.6rem;
  background: var(--cream); flex-shrink: 0;
}
.nav-mobile-footer .btn { justify-content: center; width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100svh - var(--nav-total));
  padding-top: var(--nav-total);
  background: rgba(147, 171, 92, 0.64);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-inner {
  width: 100%; max-width: 1140px; margin: 0 auto; padding: 2.5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-left { display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.hero-heading {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: #4E8354; line-height: 1.25; margin: 0;
}
.hero-sub {
  font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; color: white; margin: 0; line-height: 1.3;
}
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-video-box {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.2);
}
.hero-video-box iframe { width: 100%; height: 100%; border: none; display: block; }
.hero-video-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: white; font-size: 0.85rem; opacity: 0.6;
}
.hero-video-placeholder p { margin: 0; }
.hero-desc { color: white; font-size: 0.95rem; line-height: 1.7; margin: 0; }
.hero-contact-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.75rem;
  background: white; color: #93AB5C;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all var(--transition); align-self: flex-start;
}
.hero-contact-btn:hover { background: #f0f0f0; color: #7a9248; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: var(--nav-total); }
  .hero-inner {
    grid-template-columns: 1fr; gap: 1.75rem;
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
  }
  .hero-left { align-items: center; gap: 1rem; }
  .hero-heading { font-size: 1.55rem; }
  .hero-sub { font-size: 1.25rem; }
  .hero-desc { font-size: 0.88rem; }
  .hero-contact-btn { align-self: center; }
  .hero-right { width: 100%; max-width: 420px; margin: 0 auto; }
}

/* ===== QUICK CARDS ===== */
.quick-cards-section {
  width: 85%;
  margin: 0 auto;
  padding: 2.5rem 0;
}
.quick-cards-wrap {
  display: flex;
  justify-content: space-between;
  gap: 39px;
  flex-wrap: wrap;
}
.quick-card {
  width: 185px;
  height: 258px;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  box-shadow: 5px 7px 44px 11px rgba(0,0,0,0.50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--beige);
}
.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 5px 12px 50px 11px rgba(0,0,0,0.55);
}
.quick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.qc-overlay { display: none; }
@media (max-width: 1024px) {
  .quick-cards-section { width: 95%; }
  .quick-cards-wrap { justify-content: center; }
}

/* ===== TARİFLERİMİZ ===== */
.tarifler-section {
  width: 85%;
  margin: 0 auto;
  padding: 3rem 0;
}
.tarifler-baslik {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  color: var(--dark);
}
.tarifler-wrap {
  display: grid;
  grid-template-columns: repeat(4, 374px);
  gap: 20px;
  justify-content: center;
}
.tarif-kart {
  width: 374px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  box-shadow: 5px 7px 44px 11px rgba(0,0,0,0.50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ccc;
  flex-shrink: 0;
}
.tarif-kart:hover { transform: translateY(-6px); box-shadow: 5px 12px 50px 11px rgba(0,0,0,0.55); }
.tarif-kart img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
  opacity: 0.82;
}
.tarif-kart:hover img { transform: scale(1.04); opacity: 0.9; }
.tarif-opak {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  border-radius: 30px;
  pointer-events: none;
}
.tarif-baslik {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  pointer-events: none;
  text-transform: capitalize;
}
@media (max-width: 1600px) {
  .tarifler-wrap { grid-template-columns: repeat(4, 1fr); }
  .tarif-kart { width: 100%; }
}
@media (max-width: 768px) {
  .tarifler-section { width: 92%; }
  .tarifler-wrap { grid-template-columns: repeat(2,1fr); }
  .tarif-kart { height: 260px; }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  background: linear-gradient(135deg, #f8f5f0 0%, #eef2e8 50%, #f8f5f0 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
}
.contact-form-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(147,171,92,0.08); pointer-events: none;
}
.contact-form-section::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(139,94,60,0.06); pointer-events: none;
}
.contact-form-inner {
  width: 85%; max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
  position: relative; z-index: 1;
}
.cf-form-wrap {
  background: white; border-radius: 24px;
  padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.cf-form-wrap h2 { margin-bottom: 0.4rem; }
.cf-form-wrap > p { margin-bottom: 1.75rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.1rem; position: relative; }
.cf-group label {
  font-size: 0.78rem; font-weight: 700; color: #93AB5C;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem;
}
.cf-group input, .cf-group select, .cf-group textarea {
  padding: 0.8rem 1.1rem; border: 2px solid #e8e8e8;
  border-radius: 12px; font-family: inherit; font-size: 0.92rem;
  color: var(--text); background: #fafafa; transition: all 0.25s ease;
  outline: none;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: #93AB5C; background: white;
  box-shadow: 0 0 0 4px rgba(147,171,92,0.12);
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: #bbb; }
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2393AB5C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.cf-radio-group { display: flex; gap: 1rem; align-items: center; padding: 0.5rem 0; flex-wrap: wrap; }
.cf-radio { display: flex; align-items: center; gap: 0; cursor: pointer; }
.cf-radio input { display: none; }
.cf-radio span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem; border: 2px solid #e8e8e8; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-light);
  transition: all 0.2s ease; cursor: pointer; background: #fafafa;
}
.cf-radio input:checked + span {
  border-color: #93AB5C; background: rgba(147,171,92,0.1); color: #6a8540;
}
.cf-kvkk { margin-top: 0.25rem; }
.cf-checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.cf-checkbox-label input[type="checkbox"] { accent-color: #93AB5C; width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.cf-checkbox-label a { color: #93AB5C; font-weight: 700; text-decoration: underline; }
.cf-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; background: linear-gradient(135deg, #93AB5C, #7a9248);
  color: white; border: none; border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(147,171,92,0.3); width: 100%;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(147,171,92,0.45); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-alert-success { background: linear-gradient(135deg, #e8f5e9, #f1f8e9); color: #2e7d32; border: 1px solid #a5d6a7; border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.9rem; font-weight: 600; }
.cf-alert-error { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.9rem; font-weight: 600; }

.cf-info-card {
  background: white; border-radius: 24px; padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); position: sticky; top: 140px;
}
.cf-info-card h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.cf-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.cf-info-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, rgba(147,171,92,0.15), rgba(147,171,92,0.05));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; border: 1px solid rgba(147,171,92,0.2);
}
.cf-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #93AB5C; margin-bottom: 0.2rem; }
.cf-info-item a, .cf-info-item span { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.cf-info-item a:hover { color: #93AB5C; }
.cf-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 0.85rem; background: linear-gradient(135deg, #25D366, #1da851);
  color: white; border-radius: 50px; font-weight: 700; font-size: 0.92rem;
  text-decoration: none; margin-top: 1.5rem; transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.cf-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); color: white; }
@media (max-width: 900px) {
  .contact-form-inner { grid-template-columns: 1fr; width: 92%; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-info-card { position: static; }
}

/* ===== INTRO SECTION ===== */
.intro-section {
  background: var(--cream);
  padding: 4rem 0;
}
.intro-inner {
  width: 85%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
}
.intro-text .subtitle {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; display: block; margin-bottom: 0.5rem;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text > p { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; }

.intro-features { display: flex; flex-direction: column; gap: 1.5rem; }
.intro-feature { display: flex; gap: 1rem; align-items: flex-start; }
.if-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-feature h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.3rem; }
.intro-feature p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 5px 7px 44px 11px rgba(0,0,0,0.50);
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; width: 92%; }
  .intro-image { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ===== DIET / HASTALIK PAGES ===== */
.diet-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.diet-main { min-width: 0; }

.diet-content { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; }
.diet-content h2 {
  font-size: 1.65rem; color: var(--dark); margin: 0 0 1.25rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--beige);
}
.diet-content h3 {
  font-size: 1rem; color: var(--primary); font-weight: 700;
  margin: 2rem 0 0.75rem; display: flex; align-items: center; gap: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.diet-content h3::before {
  content: ''; display: inline-block;
  width: 4px; height: 1.1em; border-radius: 3px;
  background: var(--primary-light); flex-shrink: 0;
}
.diet-content ul { padding: 0; margin-bottom: 1.25rem; list-style: none; }
.diet-content ul li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--beige);
  font-size: 0.94rem; line-height: 1.65; color: var(--text);
}
.diet-content ul li:last-child { border-bottom: none; }
.diet-content ul li::before {
  content: '✓'; color: #5B8C5A; font-weight: 700;
  font-size: 0.85rem; flex-shrink: 0; margin-top: 0.15rem;
}
.diet-content p { color: var(--text-light); line-height: 1.85; font-size: 0.96rem; }

.diet-cta {
  margin-top: 2.5rem; padding: 2rem;
  background: linear-gradient(135deg, var(--beige) 0%, #EDE3CE 100%);
  border-radius: var(--radius); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.diet-cta-text h3 { font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--dark); }
.diet-cta-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

.diet-sidebar { position: sticky; top: calc(var(--nav-total) + 1.5rem); display: flex; flex-direction: column; gap: 1rem; }
.diet-sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; }
.diet-sidebar-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 1rem; font-weight: 700; }
.diet-sidebar-card ul { padding: 0; }

.sidebar-video-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  padding: 0.75rem;
}
.sidebar-video-card iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; border-radius: var(--radius-sm); }
.sidebar-video-placeholder {
  aspect-ratio: 16/9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.65rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55); font-size: 0.78rem; text-align: center; padding: 1rem;
  cursor: pointer; transition: opacity var(--transition);
}
.sidebar-video-placeholder:hover { opacity: 0.85; }
.sidebar-video-placeholder .yt-icon { font-size: 2.5rem; opacity: 0.65; }
.sidebar-video-placeholder span { opacity: 0.6; line-height: 1.6; }

.sidebar-form-label { font-size: 0.78rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.3rem; }
.sidebar-form-input { width: 100%; padding: 0.55rem 0.75rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.875rem; background: var(--cream); color: var(--text); transition: border-color var(--transition); font-family: inherit; }
.sidebar-form-input:focus { border-color: var(--primary-light); background: white; outline: none; }
.sidebar-form-row { margin-bottom: 0.85rem; }

/* Video section on diet/hastalik pages */
.diet-video-section {
  background: var(--beige);
  padding: 3rem 0;
}
.diet-video-section .section-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary);
  margin-bottom: 0.5rem;
}
.diet-video-section h2 {
  text-align: center; font-size: 1.4rem; color: var(--dark); margin-bottom: 2rem;
}

@media (max-width: 900px) { .diet-page-grid { grid-template-columns: 1fr; } .diet-sidebar { position: static; } }
@media (max-width: 600px) { .diet-content { padding: 1.5rem; } .diet-cta { flex-direction: column; align-items: flex-start; } }

/* ===== SERVICES ===== */
.services-section { background: white; }

.service-card {
  background: var(--cream); border-radius: var(--radius); padding: 2rem 1.5rem;
  border: 1px solid var(--border); transition: all var(--transition); text-align: center;
  cursor: default;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow-hover); border-color: var(--primary-light); background: white; }
.service-card .icon {
  width: 72px; height: 72px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.9rem;
  margin: 0 auto 1.25rem; border: 2px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover .icon { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-section { background: var(--cream); }
.about-content { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }

.about-image-wrap { position: relative; }
.about-image-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 60px var(--shadow-hover); }
.about-image-main img { width: 100%; height: 520px; object-fit: cover; }
.about-image-main .img-placeholder {
  width: 100%; height: 520px; background: linear-gradient(135deg, var(--beige), var(--primary-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--primary); gap: 1rem; font-size: 4rem; opacity: 0.5;
}
.about-image-main .img-placeholder p { font-family: var(--font-heading); font-size: 1rem; opacity: 0.8; margin: 0; }

.about-exp-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--primary); color: white; padding: 1.5rem 1.75rem;
  border-radius: var(--radius); text-align: center;
  box-shadow: 0 12px 35px rgba(139,94,60,0.35);
}
.about-exp-badge .years { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-exp-badge .label { font-size: 0.72rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.25rem; }

.about-text .subtitle { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text > p { color: var(--text-light); line-height: 1.9; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feature .icon { width: 38px; height: 38px; background: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-feature .info h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.about-feature .info p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

/* ===== STEPS ===== */
.steps-section { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 34px; left: calc(12.5% + 0px); right: calc(12.5% + 0px);
  height: 2px; background: linear-gradient(90deg, var(--primary-light), var(--primary)); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px; background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: white;
  margin: 0 auto 1.25rem; box-shadow: 0 8px 25px rgba(139,94,60,0.3);
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.83rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--beige); }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: 0 15px 40px var(--shadow-hover); }
.testimonial-card .stars { color: #F4B400; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card .text { font-size: 0.93rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; color: var(--text); }
.testimonial-card .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .author .av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.testimonial-card .author .name { font-weight: 600; font-size: 0.88rem; }
.testimonial-card .author .date { font-size: 0.75rem; color: var(--text-light); }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--cream); }
.video-section.hidden { display: none; }
.video-wrapper { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 65px var(--shadow-hover); }
.video-wrapper iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

/* ===== BLOG CARDS ===== */
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px var(--shadow-hover); }
.blog-card .blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--beige); }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 1.5rem; }
.blog-card .category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #1a1a1a; }
.blog-card p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: 0.83rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.blog-card .read-more:hover { gap: 0.6rem; }
.blog-card .meta { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }

/* ===== PRICING ===== */
.pricing-card {
  background: white; border-radius: var(--radius); padding: 2.5rem 2rem;
  border: 2px solid var(--border); transition: all var(--transition); position: relative; text-align: center;
}
.pricing-card.highlighted { border-color: var(--primary); transform: scale(1.04); box-shadow: 0 25px 60px var(--shadow-hover); }
.pricing-card:hover:not(.highlighted) { border-color: var(--primary-light); box-shadow: 0 15px 40px var(--shadow); }
.pricing-card .badge-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; padding: 0.25rem 1.1rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700; white-space: nowrap;
}
.pricing-card .plan-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 1rem; }
.pricing-card .price-wrap { margin-bottom: 0.5rem; }
.pricing-card .price { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pricing-card .price-currency { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pricing-card .price-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; }
.pricing-card .price-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.75rem; }
.pricing-card .feature-list { text-align: left; margin-bottom: 2rem; }
.pricing-card .feature-list li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.45rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--beige); }
.pricing-card .feature-list li:last-child { border-bottom: none; }
.pricing-card .feature-list li .check { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* ===== CONTACT ===== */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info-item .icon { width: 50px; height: 50px; background: var(--beige); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 700; }
.contact-info-item p, .contact-info-item a { font-weight: 500; color: var(--dark); font-size: 0.95rem; }
.social-icons { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon { width: 40px; height: 40px; background: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--transition); color: var(--primary); }
.social-icon:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.45rem; letter-spacing: 0.03em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: white; font-size: 0.93rem;
  color: var(--text); transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(139,94,60,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }

/* ===== MAP ===== */
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 300px; border: none; display: block; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(160deg, #3A6B40 0%, #4E8354 60%, #6A9B50 100%); color: rgba(255,255,255,0.75); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand .brand-name { font-family: var(--font-heading); font-size: 1.3rem; color: white; font-weight: 700; }
.footer-brand .brand-title { font-size: 0.65rem; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-brand > p { font-size: 0.88rem; line-height: 1.85; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: all var(--transition); color: rgba(255,255,255,0.7); }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: white; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: white; padding: 0.9rem 1.4rem;
  border-radius: 50px; box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: all var(--transition); animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { background: #1da851; transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 40px rgba(37,211,102,0.55); color: white; }
.wa-float .wa-icon { display: flex; align-items: center; justify-content: center; }
@keyframes waFloat { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.45)} 50%{box-shadow:0 8px 40px rgba(37,211,102,0.65)} }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #4E8354 0%, #93AB5C 100%);
  color: white; padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: white; margin-bottom: 1rem; position: relative; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 580px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }

/* ===== DİYET / HASTALIK HERO ===== */
.diyet-hero {
  margin-top: var(--nav-total);
  position: relative; overflow: hidden;
  width: 100%;
  background: var(--dark);
}
.diyet-hero-img {
  width: 100%; height: auto;
  display: block;
}
@media (max-width: 768px) {
  .diyet-hero-img { width: 100%; height: auto; }
}

/* ===== AUTH ===== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
}
.auth-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 450px; box-shadow: 0 25px 70px var(--shadow); border: 1px solid var(--border); }
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .auth-icon { width: 64px; height: 64px; background: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.auth-header h2 { margin-bottom: 0.5rem; }
.auth-header p { color: var(--text-light); font-size: 0.9rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.78rem; color: var(--text-light); white-space: nowrap; }
.auth-link { text-align: center; font-size: 0.87rem; color: var(--text-light); margin-top: 1.25rem; }
.auth-link a { color: var(--primary); font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

/* ===== PROFILE ===== */
.profile-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
.profile-sidebar { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.profile-avatar-box { background: linear-gradient(135deg, var(--beige), var(--primary-light)); padding: 2.5rem 1.5rem; text-align: center; }
.profile-avatar-box .av-circle { width: 80px; height: 80px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin: 0 auto 1rem; }
.profile-avatar-box h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.profile-avatar-box p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.profile-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.5rem; font-size: 0.88rem; color: var(--text); transition: all var(--transition); border-bottom: 1px solid var(--beige); }
.profile-nav a:last-child { border-bottom: none; }
.profile-nav a:hover, .profile-nav a.active { color: var(--primary); background: var(--cream); padding-left: 1.75rem; }
.profile-content { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 2rem; }
.profile-content h3 { font-size: 1.2rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

/* File list */
.file-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; transition: all var(--transition); }
.file-item:hover { background: var(--cream); border-color: var(--primary-light); }
.file-icon { width: 44px; height: 44px; background: rgba(192,57,43,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.file-info h4 { font-size: 0.88rem; margin-bottom: 0.2rem; font-family: var(--font-body); font-weight: 600; }
.file-info p { font-size: 0.78rem; color: var(--text-light); margin: 0; }
.file-actions { margin-left: auto; flex-shrink: 0; }

/* ===== CALENDAR ===== */
.calendar { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: var(--primary); color: white; }
.cal-header h3 { color: white; font-size: 1rem; margin: 0; }
.cal-header button { background: rgba(255,255,255,0.2); color: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background var(--transition); }
.cal-header button:hover { background: rgba(255,255,255,0.35); }
.cal-day-names { display: grid; grid-template-columns: repeat(7, 1fr); background: var(--cream); }
.cal-day-name { text-align: center; padding: 0.6rem 0; font-size: 0.7rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); }
.cal-day { background: white; min-height: 48px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: background var(--transition); position: relative; }
.cal-day.empty { background: #F9F5F0; }
.cal-day.today { color: var(--primary); font-weight: 700; }
.cal-day.today::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }
.cal-day.available { background: rgba(91,140,90,0.12); color: var(--success); font-weight: 600; }
.cal-day.busy { background: rgba(192,57,43,0.12); color: var(--error); font-weight: 600; }
.cal-day.holiday { background: rgba(201,169,110,0.18); color: #B07D2A; }
.cal-legend { display: flex; gap: 1.5rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-light); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.cal-legend-dot.available { background: var(--success); }
.cal-legend-dot.busy { background: var(--error); }
.cal-legend-dot.holiday { background: #C9A96E; }

/* ===== ALERTS & TOAST ===== */
.alert { padding: 0.9rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.alert-success { background: rgba(91,140,90,0.1); border: 1px solid rgba(91,140,90,0.3); color: var(--success); }
.alert-error { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); color: var(--error); }
.alert-info { background: rgba(139,94,60,0.1); border: 1px solid rgba(139,94,60,0.25); color: var(--primary); }

.toast-container { position: fixed; bottom: 5.5rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem; }
.toast { background: var(--dark); color: white; padding: 0.9rem 1.5rem; border-radius: var(--radius-sm); font-size: 0.88rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: toastSlide 0.35s ease; display: flex; align-items: center; gap: 0.5rem; min-width: 260px; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast.info { background: var(--primary); }
@keyframes toastSlide { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(4px); }
.modal-overlay.active { display: flex; }
.modal { background: white; border-radius: var(--radius-lg); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.25); animation: modalIn 0.3s ease; }
@keyframes modalIn { from{opacity:0;transform:scale(0.92) translateY(-16px)} to{opacity:1;transform:scale(1) translateY(0)} }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { margin: 0; font-size: 1.15rem; }
.modal-close { width: 36px; height: 36px; background: var(--cream); border: none; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.modal-close:hover { background: var(--border); }
.modal-body { padding: 2rem; }

/* ===== MISC ===== */
.text-center { text-align: center; }
.bg-white { background: white; }
.bg-beige { background: var(--beige); }
.bg-cream { background: var(--cream); }
.tag { display: inline-block; padding: 0.25rem 0.75rem; background: var(--beige); color: var(--primary); border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.empty-state { text-align: center; padding: 3.5rem 1.5rem; color: var(--text-light); }
.empty-state .empty-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.empty-state p { font-size: 0.9rem; }

/* Fade animations */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .about-exp-badge { right: auto; left: 50%; transform: translateX(-50%); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .profile-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
/* Mobil aksiyon bar (desktop'ta gizli) */
.nav-mobile-bar {
  display: none;
  background: white; border-bottom: 1px solid var(--border);
  height: 42px;
}
.nav-mobile-bar .container {
  height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.nav-mobile-bar .nav-qbtn {
  font-size: 0.78rem; padding: 0; height: 100%;
  border-radius: 0; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.nav-mobile-bar .nav-qbtn:last-child { border-right: none; }
.nav-mobile-bar .nav-qbtn:hover { transform: none; box-shadow: none; background: #7a9248; }

@media (max-width: 768px) {
  :root { --nav-height: 60px; --nav-total: 102px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-quick-btns { display: none; }        /* üst bardan kaldır */
  .nav-submenu { display: none; }           /* yeşil menü gizle */
  .nav-mobile-bar { display: block; }       /* mobil aksiyon bar göster */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.highlighted { transform: scale(1); }
  .wa-float .wa-text { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .auth-card { padding: 1.75rem; }
  .modal-body { padding: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .quick-card { width: 145px; height: 215px; }
}
