/* ============================================================
   Şükrü Yiğit Peyzaj — Ana Stil Dosyası
   Renk: Koyu Zeytin #1a3a1a | Altın #c9a84c | Krem #f7f5f0
   Font: Cormorant Garamond (başlık) + DM Sans (body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --green-deep:   #1a3a1a;
  --green-mid:    #2d5a2d;
  --green-light:  #4a7c4a;
  --green-pale:   #e8f0e8;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dark:    #a8892e;
  --cream:        #f7f5f0;
  --cream-dark:   #ede9e0;
  --white:        #ffffff;
  --text-dark:    #1a2018;
  --text-mid:     #3d4a3a;
  --text-muted:   #6b7a68;
  --border:       #d8e0d4;
  --shadow-sm:    0 2px 12px rgba(26,58,26,.07);
  --shadow-md:    0 8px 32px rgba(26,58,26,.12);
  --shadow-lg:    0 20px 60px rgba(26,58,26,.18);
  --radius:       4px;
  --radius-lg:    8px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.65; }

h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; transition: all .25s; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-deep);
  padding: 10px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-phones { display: flex; gap: 20px; align-items: center; }
.topbar-phones a { color: rgba(255,255,255,.75); transition: color .2s; display: flex; align-items: center; gap: 5px; }
.topbar-phones a:hover { color: var(--gold); }
.topbar-phones .wa-link { color: #25d366 !important; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,.5); font-size: .95rem; }
.topbar-social a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 500;
  transition: all .3s;
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav-brand img { height: 56px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: .875rem;
  color: var(--text-mid); padding: 8px 14px;
  border-radius: var(--radius); letter-spacing: .02em;
  transition: all .2s; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); background: var(--green-pale); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu-custom {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: all .25s; border-top: 3px solid var(--gold);
}
.nav-links .dropdown:hover .dropdown-menu-custom { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-links .dropdown-menu-custom a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 4px; font-size: .85rem; text-transform: none; }
.nav-links .dropdown-menu-custom a:hover { background: var(--green-pale); color: var(--green-deep); }
.nav-cta { background: var(--green-deep) !important; color: var(--white) !important; border-radius: 2px !important; padding: 10px 22px !important; letter-spacing: .05em !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--green-deep) !important; }
.nav-mobile-toggle { display: none; background: none; border: 1.5px solid var(--border); border-radius: 4px; padding: 8px 11px; font-size: 1.2rem; color: var(--green-deep); cursor: pointer; }

/* ===== OFFCANVAS MOBILE ===== */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 900; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--green-deep); z-index: 910; overflow-y: auto;
  transition: right .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-body { flex: 1; padding: 12px 0; }
.mobile-nav-link { display: flex; align-items: center; gap: 10px; padding: 14px 24px; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); transition: all .2s; }
.mobile-nav-link:hover { color: var(--gold); background: rgba(255,255,255,.05); }
.mobile-nav-sub { padding: 10px 24px 10px 44px; color: rgba(255,255,255,.6); font-size: .85rem; display: block; }
.mobile-nav-section-label { padding: 12px 24px 6px; color: rgba(255,255,255,.3); font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; }
.mobile-nav-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,.1); }

/* ===== HERO SLIDER ===== */
.hero-swiper { position: relative; height: 92vh; min-height: 560px; max-height: 860px; }
.hero-swiper .swiper-slide {
  position: relative; overflow: hidden;
}
.hero-slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.06); transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-img { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,58,26,.82) 0%, rgba(26,58,26,.38) 60%, transparent 100%);
}
.hero-slide-content {
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  display: flex; align-items: center;
  padding: 80px 0;
}
.hero-caption { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: all .7s .2s;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.swiper-slide-active .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); font-weight: 600; line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  transition: all .8s .35s;
}
.hero-title span { color: var(--gold); font-style: italic; }
.swiper-slide-active .hero-title { opacity: 1; transform: translateY(0); }
.hero-subtitle {
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem;
  color: rgba(255,255,255,.8); max-width: 460px; line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  transition: all .7s .55s;
}
.swiper-slide-active .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: all .7s .7s;
}
.swiper-slide-active .hero-actions { opacity: 1; transform: translateY(0); }
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  color: white; transition: all .25s;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }
.hero-swiper .swiper-pagination { bottom: 28px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5); width: 8px; height: 8px; transition: all .3s; opacity: 1; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green-deep); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; border: 2px solid var(--green-deep);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; border: 2px solid rgba(255,255,255,.5);
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: var(--gold); color: var(--green-deep);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; border: 2px solid var(--gold);
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-sm { padding: 9px 20px !important; font-size: .78rem !important; }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--green-deep); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title span { color: var(--green-light); }
.gold-line { width: 48px; height: 2px; background: var(--gold); border-radius: 1px; margin: 18px 0 24px; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }

/* ===== GRASS DIVIDER ===== */
.grass-divider {
  width: 100%; overflow: hidden; line-height: 0; display: block;
}
.grass-divider svg { display: block; width: 100%; }

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--green-deep); padding: 48px 0; }
.features-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.feature-item {
  padding: 32px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.feature-item:last-child { border: none; }
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-icon-wrap { width: 52px; height: 52px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.2rem; color: var(--gold); }
.feature-item h5 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .35s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.3); }
.service-card-img { height: 220px; background: linear-gradient(135deg, var(--green-deep), var(--green-light)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-icon { font-size: 2.8rem; color: rgba(255,255,255,.3); }
.service-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--green-deep);
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  padding: 4px 10px; border-radius: 2px;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.35rem; color: var(--green-deep); margin-bottom: 10px; }
.service-card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-mid); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 18px; transition: gap .2s; }
.service-card:hover .service-card-link { gap: 12px; color: var(--gold); }

/* ===== PROJECT GRID ===== */
.project-masonry { columns: 3; gap: 16px; }
.project-item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; display: block; }
.project-item img { width: 100%; display: block; transition: transform .5s; }
.project-item:hover img { transform: scale(1.06); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,58,26,.9) 0%, transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 20px; }
.project-item:hover .project-overlay { opacity: 1; }
.project-overlay h5 { color: white; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.project-overlay small { color: rgba(255,255,255,.65); }
.project-tag { display: inline-block; background: var(--gold); color: var(--green-deep); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; border-radius: 2px; margin-bottom: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); height: 100%;
  transition: all .3s; position: relative;
}
.testimonial-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--green-pale); position: absolute; top: -10px; left: 24px; line-height: 1; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.testimonial-text { color: var(--text-mid); font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author strong { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--green-deep); display: block; }
.testimonial-author small { color: var(--text-muted); font-size: .8rem; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--green-deep); font-weight: 600; transition: color .2s; }
.faq-question:hover { color: var(--gold); }
.faq-question i { font-size: 1rem; transition: transform .3s; color: var(--gold); flex-shrink: 0; margin-left: 16px; }
.faq-question.open i { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-muted); font-size: .92rem; line-height: 1.8; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%); }

/* ===== CONTACT INFO ===== */
.contact-info-card { background: var(--green-deep); border-radius: var(--radius-lg); padding: 40px; color: white; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-info-item:last-child { border: none; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-text strong { display: block; color: rgba(255,255,255,.9); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; margin-bottom: 3px; }
.contact-info-text a, .contact-info-text span { color: rgba(255,255,255,.6); font-size: .88rem; }
.contact-info-text a:hover { color: var(--gold); }
.phone-list { display: flex; flex-direction: column; gap: 4px; }
.phone-list a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.phone-list a:hover { color: var(--gold); }
.phone-list .wa { color: #25d366 !important; }

/* ===== TEKLIF FORM ===== */
.teklif-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mid); display: block; margin-bottom: 7px; }
.form-control, .form-select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--text-dark); background: var(--white); transition: all .2s;
  outline: none;
}
.form-control:focus, .form-select:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,90,45,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { background: var(--green-deep); color: white; border: none; border-radius: var(--radius); padding: 16px 40px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; width: 100%; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--gold); color: var(--green-deep); }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%); padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-header h1 { color: var(--white); font-size: clamp(2rem,4vw,3.2rem); }
.page-header .breadcrumb-wrap { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); }
.page-header .breadcrumb-wrap a { color: rgba(255,255,255,.65); }
.page-header .breadcrumb-wrap a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ===== GRASS BREADCRUMB DETAIL ===== */
.grass-row { display: flex; align-items: flex-end; gap: 2px; height: 24px; }
.grass-blade { width: 3px; background: var(--green-light); border-radius: 2px 2px 0 0; animation: grassSway 2s ease-in-out infinite; }
.grass-blade:nth-child(2n) { animation-delay: .3s; height: 70%; }
.grass-blade:nth-child(3n) { animation-delay: .6s; height: 85%; }
.grass-blade:nth-child(4n) { animation-delay: .1s; height: 60%; }
.grass-blade:nth-child(5n) { animation-delay: .8s; height: 90%; }
@keyframes grassSway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* ===== FOOTER ===== */
.main-footer { background: var(--text-dark); color: rgba(255,255,255,.65); }
.footer-grass {
  background: var(--text-dark); overflow: hidden; line-height: 0; margin-top: -2px;
}
.footer-top { padding: 72px 0 48px; }
.footer-brand { margin-bottom: 20px; }
.footer-brand img { height: 52px; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 14px; }
.footer-desc { font-size: .87rem; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,.55); }
.footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); font-weight: 600; margin-bottom: 18px; padding-bottom: 10px; position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 1.5px; background: var(--gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; display: flex; align-items: center; gap: 6px; transition: all .2s; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* SVG Grass in footer */
.footer-grass-svg { display: block; width: 100%; }

/* ===== FAB (Floating Action Buttons) ===== */
.fab-container { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 300; }
.fab-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: all .25s; color: white; text-decoration: none;
}
.fab-btn:hover { transform: scale(1.12); color: white; }
.fab-phone { background: var(--green-deep); }
.fab-wa { background: #25d366; }
.fab-label {
  position: absolute; right: 66px; background: var(--text-dark); color: white;
  font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.fab-btn:hover .fab-label { opacity: 1; }

/* ===== SCROLL ANIMATE ===== */
.appear { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.appear.visible { opacity: 1; transform: translateY(0); }

/* ===== ALERT ===== */
.alert-success { background: rgba(74,124,74,.1); border: 1px solid rgba(74,124,74,.3); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; align-items: center; gap: 14px; color: var(--green-mid); margin-bottom: 24px; }
.alert-error { background: rgba(220,53,69,.07); border: 1px solid rgba(220,53,69,.25); border-radius: var(--radius-lg); padding: 16px 20px; color: #842029; margin-bottom: 20px; font-size: .9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } .project-masonry { columns: 2; } .features-strip-inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .nav-links, .nav-mobile-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .project-masonry { columns: 1; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-swiper { height: 80vh; }
  .teklif-form-wrap { padding: 28px 20px; }
  .footer-top .row { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .features-strip-inner { grid-template-columns: 1fr; } .hero-title { font-size: 2.4rem; } }
