/* ===== TOKENS ===== */
:root {
  --green-900: #1a2e1a;
  --green-800: #1f3a1f;
  --green-700: #2d5a2d;
  --green-600: #3d7a3d;
  --green-400: #5a9e5a;
  --green-100: #eaf2ea;
  --green-50:  #f4faf4;
  --yellow-700: #a07800;
  --yellow-600: #c49200;
  --yellow-500: #c8960c;
  --yellow-400: #daa820;
  --yellow-100: #fef8e7;
  --cream: #fafaf8;
  --surface: #ffffff;
  --dark: #1a1f1a;
  --text: #1e2a1e;
  --text-muted: #6e7a6e;
  --border: #e8ece8;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 2px 16px rgba(30,42,30,0.07);
  --shadow-md: 0 8px 40px rgba(30,42,30,0.11);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--yellow-500); }
p { line-height: 1.75; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-500);
  margin-bottom: 16px;
  display: block;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 { max-width: 500px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,45,0.28);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-yellow {
  background: var(--yellow-700);
  color: var(--white);
}
.btn-yellow:hover {
  background: var(--yellow-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,120,0,0.35);
}
.btn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}
.btn-ig:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.35);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.reveal-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(30,42,30,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
#navbar.scrolled .logo { color: var(--green-900); }
.logo span { color: var(--yellow-500); }
.logo-img { display: flex; align-items: center; gap: 12px; }
.logo-img img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--green-700); }
.nav-links a:hover { color: rgba(255,255,255,1); }
.nav-cta {
  background: var(--green-700) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 500 !important;
}
#navbar.scrolled .nav-cta { color: var(--white) !important; }
.nav-cta:hover {
  background: var(--green-900) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,46,26,0.78) 0%, rgba(45,90,45,0.55) 55%, rgba(26,46,26,0.65) 100%),
    url('noi_ic_mekan_resimler/WhatsApp Image 2026-05-15 at 16.55.54.jpeg') center/cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 760px;
  padding-left: clamp(24px, 8vw, 96px);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow-400);
  margin-bottom: 24px;
}
#hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (min-width: 769px) {
  .hero-btns { flex-wrap: nowrap; }
  .hero-btns .btn { padding: 14px 22px; white-space: nowrap; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--green-50);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-track .dot {
  color: var(--yellow-500);
  padding: 0 8px;
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
#about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.about-img-wrap {
  position: relative;
  min-height: 460px;
}
.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-text { display: flex; flex-direction: column; align-items: flex-start; }
.about-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); margin-bottom: 14px; }
.about-text p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.9rem; line-height: 1.6; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ===== SERVICES ===== */
#services {
  background: var(--cream);
}
#services .section-label { color: var(--green-600); }
#services h2 { color: var(--text); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--yellow-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--green-600);
  margin-bottom: 24px;
}
.service-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-details {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.service-details span {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-600);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.service-link {
  color: var(--green-600);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 10px; color: var(--green-900); }

/* ===== TEAM ===== */
#team { background: var(--green-50); }
.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}
.team-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
.team-row-2 .team-card { width: calc(50% - 14px); max-width: 440px; }
.team-row-3 .team-card { width: calc(33.333% - 19px); max-width: 340px; }

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.team-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.team-row-2 .team-img-wrap { height: 380px; }
.team-img-wrap img {
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}
.team-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,26,0.88) 0%, rgba(26,46,26,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-card-hover { opacity: 1; }
.team-card-hover span {
  background: var(--yellow-500);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.team-info { padding: 22px 24px; }
.team-info h3 { font-size: 1.2rem; margin-bottom: 3px; }
.team-role {
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tags span {
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ===== TEAM MODAL ===== */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,30,20,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.team-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.team-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.team-modal-overlay.open .team-modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: none;
}
.modal-close:hover { background: var(--green-100); }
.modal-close svg { width: 18px; height: 18px; color: var(--text); }
.modal-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
}
.modal-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 47px 0 24px 24px;
}
.modal-img-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.modal-img-wrap img { height: 100%; width: 100%; object-fit: cover; }
.modal-left .modal-tags { margin-bottom: 0; }
.modal-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-content h2 { font-size: 2rem; margin-bottom: 20px; }
.modal-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 28px;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-tags span {
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.modal-cta { align-self: flex-start; }

/* ===== GALLERY ===== */
#gallery { background: var(--white); padding-bottom: 72px; }
#gallery .section-label { color: var(--green-600); }
#gallery h2 { color: var(--text); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border-radius: 6px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 2001;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  width: 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  z-index: 2001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--cream); border-top: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-600);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--yellow-400);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark, #222);
  text-decoration: none;
  transition: var(--transition);
}
.google-reviews-badge:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.testimonial-card .google-attribution {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
#cta-banner {
  background: var(--green-900);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,12,0.12), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
}
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow-500);
  color: var(--green-900);
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.btn-cta-wa:hover {
  background: var(--yellow-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,150,12,0.4);
}

/* ===== CONTACT ===== */
#contact { background: var(--green-50); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.contact-info .section-label { color: var(--green-600); font-size: 1.35rem; letter-spacing: 0.12em; margin-bottom: 20px; }
.contact-info h2 { color: var(--text); margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  color: var(--green-600);
  box-shadow: var(--shadow);
}
.contact-item strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  top: 30px;
}
.contact-form .btn-whatsapp { margin-top: auto; }
.contact-form h3 {
  font-size: 1.5rem;
  margin-top: 13px;
  margin-bottom: 32px;
  color: var(--green-900);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61,122,61,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.form-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.whatsapp-link {
  color: #25D366;
  font-weight: 500;
}
.whatsapp-link:hover { text-decoration: underline; }
.instagram-link {
  color: #E1306C;
  font-weight: 500;
}
.instagram-link:hover { text-decoration: underline; }
.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}
.form-success.show { display: block; }

/* ===== INSTAGRAM SECTION ===== */
#instagram {
  background: var(--white);
  padding: 32px 0;
}
.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.instagram-header-left .section-label { color: #E1306C; }
.instagram-header-left h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0;
}
.instagram-desc { display: none; }
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.snapwidget-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.snapwidget-widget { display: block; }
.ig-placeholder {
  background: var(--green-50);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: var(--text-muted);
}
.ig-placeholder-icon {
  color: #E1306C;
  opacity: 0.5;
  margin-bottom: 16px;
}
.ig-placeholder p { margin-bottom: 4px; font-size: 0.95rem; }
.ig-placeholder strong { color: var(--text); font-size: 1.05rem; }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover {
  background: var(--yellow-500);
  border-color: var(--yellow-500);
  color: var(--green-900);
  transform: translateY(-3px);
}
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow-400); }
.footer-newsletter h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  overflow: hidden;
  padding: 4px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  color: var(--white);
  font-size: 0.85rem;
  background: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--yellow-500);
  color: var(--green-900);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--yellow-400);
  transform: scale(1.08);
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-img-float { display: none; }
  .instagram-inner { gap: 40px; }
  .team-row-2 .team-card { max-width: none; }
  .modal-inner { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--green-900);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  #navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 360px; }
  .about-badge { right: 12px; top: 16px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  /* Team mobile: tümü tek sütun */
  .team-row { flex-direction: column; align-items: center; }
  .team-row-2 .team-card,
  .team-row-3 .team-card { width: 100%; max-width: 400px; }

  /* Modal mobile */
  .modal-inner { grid-template-columns: 1fr; }
  .modal-left { margin: 24px 24px 0 24px; }
  .modal-content { padding: 28px 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .instagram-inner { grid-template-columns: 1fr; gap: 40px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .btn-cta-wa { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 120px 20px 60px; }
  .hero-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 420px;
  }
  .hero-btns .btn {
    width: auto;
    justify-content: center;
    padding: 13px 10px;
    font-size: 0.8rem;
  }
  .hero-btns .btn-yellow { grid-column: 1 / -1; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
