/* Globos Festival */
:root {
  --teal-dark: #0b3d48;
  --teal: #39c5bb;
  --teal-text: #0d6b6b;
  --pink: #e91e8c;
  --pink-dark: #d4177d;
  --white: #ffffff;
  --gray-bg: #f5f7f8;
  --gray-border: #e8ecef;
  --text: #1a1a1a;
  --text-muted: #5c6670;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(11, 61, 72, 0.08);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ─── ÜST BAR ─── */
.top-bar {
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.top-bar-contact a:hover {
  opacity: 1;
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.top-bar-social a:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ─── ANA HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-list > li > .nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s;
}

.nav-list > li > a:hover,
.nav-list > li:hover > .nav-link {
  color: var(--teal-text);
}

.nav-list > li.active > a {
  color: var(--teal-text);
  font-weight: 600;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.dropdown li a:hover {
  background: var(--gray-bg);
  color: var(--teal-text);
}

/* Mega menü */
.has-mega {
  position: relative;
}

.has-mega:hover > .nav-link,
.has-mega.open > .nav-link {
  color: var(--teal-text);
  font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--teal);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 100;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
  display: block;
}

.mega-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 220px;
  background: #3b8e84;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 14px 36px rgba(11, 61, 72, 0.22);
  overflow: visible;
}

.mega-group {
  position: relative;
}

.mega-group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
  z-index: 100;
}

.mega-group > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s;
}

.mega-group:last-child > a {
  border-bottom: none;
}

.mega-group.is-hover > a,
.mega-group.is-active > a,
.mega-group.open > a {
  background: rgba(0, 0, 0, 0.14);
}

.mega-arrow {
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1;
}

.mega-flyout {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #3b8e84;
  box-shadow: 8px 12px 28px rgba(11, 61, 72, 0.2);
  border-radius: 0 6px 6px 0;
  display: none;
  z-index: 101;
}

.mega-flyout::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 12px;
  height: 100%;
}

.mega-group:hover > .mega-flyout,
.mega-group.is-hover > .mega-flyout {
  display: block;
}

.mega-flyout a {
  display: block;
  padding: 13px 18px;
  color: var(--white);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: background 0.15s;
}

.mega-flyout li:last-child a {
  border-bottom: none;
}

.mega-flyout a:hover {
  background: rgba(0, 0, 0, 0.12);
}

@media (min-width: 901px) {
  .mega-flyout {
    position: absolute;
    display: none;
  }

  .mega-group:hover > .mega-flyout,
  .mega-group.is-hover > .mega-flyout {
    display: block;
  }

  .has-mega:hover .mega-group:not(:hover):not(.is-hover) > .mega-flyout {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  display: flex;
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

.btn-teklif {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-teklif:hover {
  background: var(--pink-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 0 100px;
  background-color: var(--gray-bg);
  background-image: url("../images/hero-balon.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.88) 38%,
    rgba(255, 255, 255, 0.45) 58%,
    transparent 78%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--teal);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.hero h1 .highlight {
  color: var(--teal);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: var(--pink-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal-text);
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ─── İSTATİSTİK ─── */
.stats-bar {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.stats-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(57, 197, 187, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-text);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--teal-dark);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── BÖLÜM BAŞLIKLARI ─── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-text);
  background: var(--white);
  transition: 0.2s;
}

.btn-link:hover {
  border-color: var(--teal);
  background: var(--gray-bg);
}

/* ─── KATEGORİLER ─── */
.categories {
  padding: 20px 0 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-bg);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-img .img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
}

.category-card-body {
  padding: 14px;
}

.category-card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.category-card-body a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink);
}

.category-card-body a:hover {
  color: var(--pink-dark);
}

/* ─── GALERİ ─── */
.gallery {
  padding: 20px 0 60px;
  background: var(--gray-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: #e0e5e8;
}

/* ─── ÖZELLİKLER ─── */
.features {
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(57, 197, 187, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-text);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── YORUMLAR ─── */
.testimonials {
  padding: 20px 0 60px;
  background: var(--gray-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-bg);
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--teal-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── SSS ─── */
.faq {
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.faq-question .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(57, 197, 187, 0.15);
  color: var(--teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.2s;
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 0 0 60px;
}

.cta-inner {
  background-color: #f5c4d8;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(80, 20, 50, 0.62) 0%,
    rgba(80, 20, 50, 0.35) 42%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

.cta-text,
.cta-inner .btn-whatsapp {
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.cta-inner .btn-whatsapp {
  background: var(--white);
  color: var(--pink);
  position: relative;
  z-index: 1;
}

.cta-inner .btn-whatsapp:hover {
  background: #f8f8f8;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-logo-globos-wrap {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-logo-globos {
  height: 36px;
  width: auto;
  margin: 0;
  display: block;
}

.footer-logo-yck img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-distributor-note {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 12px;
}

.footer-distributor-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-distributor-note a:hover {
  color: var(--white);
}

.footer-brand--compact {
  padding: 8px 0 20px;
  text-align: center;
}

.footer-brand--compact .footer-brand-logos {
  justify-content: center;
}

.footer-brand p:not(.footer-distributor-note) {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer ul a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-footer ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  min-height: 140px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-bar-contact {
    flex-direction: column;
    gap: 6px;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    position: relative;
  }

  .logo img {
    height: 44px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    flex: none;
    display: none;
    width: 100%;
    order: 3;
    border-top: 1px solid var(--gray-border);
    padding-top: 8px;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-link {
    padding: 12px 8px;
    border-bottom: 1px solid var(--gray-border);
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 12px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .has-mega:hover > .nav-link,
  .has-mega.open > .nav-link {
    box-shadow: none;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding-top: 0;
  }

  .has-mega.open .mega-menu {
    display: block;
  }

  .has-mega.open .mega-group {
    position: relative;
  }

  .mega-primary {
    width: 100%;
    border-radius: 8px;
    margin-top: 8px;
  }

  .mega-group::after {
    display: none;
  }

  .mega-flyout {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: none !important;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.12);
    margin: 0 10px 6px;
    min-width: 0;
  }

  .mega-flyout::before {
    display: none;
  }

  .mega-group.open > .mega-flyout {
    display: block !important;
  }

  .mega-group > a {
    padding: 12px 14px;
  }

  .hero {
    min-height: 420px;
    padding: 40px 0 72px;
    background-position: 75% center;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.65) 100%
    );
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-bar {
    margin-top: -36px;
    margin-bottom: 48px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
  }

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

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    min-height: 280px;
    text-align: left;
  }

  .cta-bg {
    object-position: 60% center;
  }

  .cta-inner::before {
    background: linear-gradient(
      to bottom,
      rgba(80, 20, 50, 0.65) 0%,
      rgba(80, 20, 50, 0.4) 55%,
      rgba(255, 255, 255, 0.1) 100%
    );
  }

  .cta-inner .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

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

  .footer-map {
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 20px, var(--max));
  }

  .category-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 6px 4px;
  }

  .hero {
    min-height: 380px;
    padding: 32px 0 64px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-whatsapp,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .btn-teklif span.label {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .section-head h2 {
    font-size: 1.35rem;
  }

  .category-card-body h3 {
    font-size: 0.82rem;
  }
}
