/* ==========================================================================
   MEDYA HOCASI - Style Cleanups & Active States
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  /* 5 Slider Theme Colors */
  --color-slide-1: #ffffff; /* SEO (White) */
  --color-slide-2: #36bcae; /* Google Ads (Teal/Cyan) */
  --color-slide-3: #ff5722; /* Sosyal Medya (Orange-Red) */
  --color-slide-4: #ff9800; /* Dijital Pazarlama (Amber Gold) */
  --color-slide-5: #2bb673; /* Web Tasarım (Emerald Green) */

  --mh-green: #5eb62b;
  --mh-black-bar: #23272d;
  --text-dark: #222222;
  --text-muted: #666666;
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ==========================================================================
   HEADER & MEGA MENU (CLEAN - NO UNWANTED UNDERLINES)
   ========================================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  position: relative;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: #222222;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link-item {
  text-decoration: none;
  color: #444444;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  border: none;
  background: transparent;
}

.nav-link-item:hover, .nav-item.active-page .nav-link-item {
  color: var(--mh-green);
}

/* Mega menu hover effect */
.nav-item.has-mega:hover .nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #36bcae;
  border-radius: 2px;
}

.nav-item.has-mega:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 820px;
  background: #ffffff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  border: 1px solid #eaeaea;
  border-top: none;
  padding: 30px 32px 0 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(8px);
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 1.05fr 1.5fr;
  gap: 24px;
  z-index: 1001;
  overflow: hidden;
}

.mega-column {
  padding-bottom: 30px;
}

.mega-column h4 {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  letter-spacing: -0.2px;
}

.mega-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mega-column ul a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  cursor: pointer;
}

.mega-column ul a:hover {
  color: var(--mh-green);
  transform: translateX(4px);
}

/* Google Analytics Card */
.mega-promo-box {
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 8px 8px 0 0;
  padding: 16px 16px 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.google-logo-row {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-promo-box p {
  font-size: 0.78rem;
  color: #7c2d12;
  line-height: 1.45;
  margin-bottom: 12px;
}

.analytics-curve-img {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 80' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q50,20 100,50 T200,20 T300,5 L300,80 L0,80 Z' fill='%23f97316' opacity='0.9'/%3E%3Cpath d='M0,60 Q50,20 100,50 T200,20 T300,5' fill='none' stroke='%23ffffff' stroke-width='3.5'/%3E%3Ccircle cx='100' cy='50' r='4' fill='%23ffffff'/%3E%3Ccircle cx='200' cy='20' r='4' fill='%23ffffff'/%3E%3Ccircle cx='270' cy='10' r='4' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 100%;
}

/* ==========================================================================
   PAGE HEADER (INNER PAGES)
   ========================================================================== */
.page-header {
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.page-header h1 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
}

.badge-mh {
  display: inline-block;
  background: #f0fdf4;
  color: var(--mh-green);
  border: 1px solid rgba(94,182,43,0.3);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* ==========================================================================
   DYNAMIC HERO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  min-height: 480px;
  transition: background-color 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-slider-section.slide-state-1 { background-color: var(--color-slide-1); color: #222222; }
.hero-slider-section.slide-state-2 { background-color: var(--color-slide-2); color: #ffffff; }
.hero-slider-section.slide-state-3 { background-color: var(--color-slide-3); color: #ffffff; }
.hero-slider-section.slide-state-4 { background-color: var(--color-slide-4); color: #ffffff; }
.hero-slider-section.slide-state-5 { background-color: var(--color-slide-5); color: #ffffff; }

.hero-slide-wrapper {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-slide-wrapper.active {
  display: flex;
  animation: fadeInSlide 0.35s ease forwards;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide-wrapper.centered-layout {
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.hero-slide-content { max-width: 520px; }
.centered-layout .hero-slide-content { max-width: 800px; margin: 0 auto; }

.hero-slide-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.slide-state-1 .hero-slide-title { color: #222222; }
.slide-state-2 .hero-slide-title,
.slide-state-3 .hero-slide-title,
.slide-state-4 .hero-slide-title,
.slide-state-5 .hero-slide-title { color: #ffffff; }

.hero-slide-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
}

.slide-state-1 .hero-slide-desc { color: #666666; }

.btn-teklif-pill {
  display: inline-block;
  background: #2b323b;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 34px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border: 1px solid #475569;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-teklif-pill:hover { background: #1e242b; transform: translateY(-2px); }
.hero-slide-image { max-width: 540px; width: 100%; }
.centered-layout .hero-slide-image { max-width: 780px; margin-top: 20px; }

/* ==========================================================================
   5 SIGNATURE TABS
   ========================================================================== */
.tabs-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}

.tab-btn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.tab-btn-item span:first-child { line-height: 1.3; }
.tab-btn-item .tab-number { font-size: 2.4rem; font-weight: 900; opacity: 0.35; line-height: 1; }

.tab-c1 { background: #f3f4f6; color: #374151; }
.tab-c1 .tab-number { opacity: 0.2; color: #9ca3af; }
.tab-c2 { background: var(--color-slide-2); }
.tab-c3 { background: var(--color-slide-3); }
.tab-c4 { background: var(--color-slide-4); }
.tab-c5 { background: var(--color-slide-5); }

.tab-btn-item:hover { filter: brightness(1.08); }
.tab-btn-item.active { box-shadow: inset 0 4px 0 #ffffff; filter: brightness(1.15); }
.tab-c1.active { background: #ffffff; box-shadow: inset 0 4px 0 #334155; }

/* ==========================================================================
   6 CIRCULAR SERVICE HIGHLIGHTS (3x2 GRID)
   ========================================================================== */
.services-highlight-section { padding: 70px 0 60px; background: #ffffff; }
.service-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.service-highlight-card { display: flex; gap: 20px; align-items: flex-start; color: inherit; }
.service-round-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.service-highlight-card h3 { font-family: var(--font-title); font-size: 1.15rem; font-weight: 700; color: #222222; margin-bottom: 8px; }
.service-highlight-card p { color: #666666; font-size: 0.88rem; line-height: 1.6; }

/* ==========================================================================
   FREE SEO SCORE AUDIT BAR
   ========================================================================== */
.seo-score-bar { background: var(--mh-black-bar); padding: 60px 0; text-align: center; color: #ffffff; }
.seo-score-bar h2 { font-family: var(--font-title); font-size: 2rem; font-weight: 700; margin-bottom: 30px; color: #ffffff; }
.seo-audit-form { display: flex; align-items: center; justify-content: center; gap: 15px; max-width: 850px; margin: 0 auto; flex-wrap: wrap; }
.seo-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid #444444;
  background: #33383f;
  color: #ffffff;
  font-size: 0.95rem;
}
.seo-input:focus { outline: none; border-color: var(--mh-green); }
.btn-gonder-green {
  background: #26a69a;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 38px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-gonder-green:hover { background: #2bbbad; }

/* ==========================================================================
   E-COMMERCE & SPLIT & SEO OUTCOMES
   ========================================================================== */
.ecommerce-section { padding: 90px 0; background: #ffffff; }
.ecommerce-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.ecom-title { font-family: var(--font-title); font-size: 2.2rem; font-weight: 800; color: #222222; margin-bottom: 14px; }
.ecom-subtitle { font-size: 1.05rem; color: #555555; font-weight: 600; margin-bottom: 24px; }
.ecom-checklist { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.ecom-checklist li { display: flex; align-items: center; gap: 12px; color: #555555; font-size: 0.95rem; }
.ecom-checklist li i { color: var(--mh-green); font-size: 1.1rem; }
.ecom-btn-group { display: flex; gap: 15px; }

.btn-outline-cyan {
  border: 2px solid #00bcd4;
  color: #00bcd4;
  background: transparent;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-outline-cyan:hover { background: #00bcd4; color: #ffffff; }

.btn-fill-cyan {
  background: #00bcd4;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-fill-cyan:hover { background: #00acc1; }

.split-banner-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 280px; }
.split-green-half { background: #26a69a; display: flex; align-items: center; justify-content: center; padding: 40px; }
.split-white-half { background: #fdfdfd; display: flex; flex-direction: column; justify-content: center; padding: 50px 60px; }
.split-white-half h3 { font-family: var(--font-title); font-size: 1.8rem; font-weight: 800; color: #222222; margin-bottom: 12px; }
.split-white-half p { color: #666666; font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

.btn-orange-pill {
  display: inline-block;
  background: #ff5722;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
  cursor: pointer;
}
.btn-orange-pill:hover { background: #f4511e; }

.seo-outcomes-section { padding: 90px 0 80px; text-align: center; background: #ffffff; }
.seo-outcomes-title { font-family: var(--font-title); font-size: 2.2rem; font-weight: 800; color: #222222; margin-bottom: 8px; }
.seo-outcomes-subtitle { color: #888888; font-size: 1rem; margin-bottom: 60px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
.outcome-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.outcome-circle-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.outcome-card h4 { font-family: var(--font-title); font-size: 1.15rem; font-weight: 800; color: #222222; margin-bottom: 12px; text-transform: uppercase; }
.outcome-card p { color: #666666; font-size: 0.9rem; line-height: 1.6; }
.outcomes-action-row { display: flex; justify-content: center; gap: 16px; }

.btn-dark-pill {
  background: #2b323b;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-dark-pill:hover { background: #1e242b; }

/* Contact Form & Info Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card, .contact-form-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-text h5 { font-size: 1rem; margin-bottom: 2px; color: #1e293b; }
.contact-text p, .contact-text a { color: #64748b; text-decoration: none; font-size: 0.92rem; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: #1e293b; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #0f172a;
  font-family: var(--font-text);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--mh-green); background: #ffffff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Stats Bar */
.stats-green-bar { background: #26a69a; color: #ffffff; padding: 50px 0; }
.stats-green-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-green-num { font-family: var(--font-title); font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stats-green-label { font-family: var(--font-title); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }

/* ==========================================================================
   MODERN MULTI-COLUMN AGENCY FOOTER
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid #1e293b;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.1fr 1.2fr;
  gap: 45px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1e293b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-social-links a:hover {
  background: var(--mh-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--mh-green);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--mh-green);
  transition: transform 0.2s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item > i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e293b;
  color: var(--mh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-contact-val {
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-val:hover {
  color: var(--mh-green);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-wa-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-bar strong {
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--mh-green);
}

.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #16a34a;
  color: #ffffff;
  padding: 16px 26px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}
.toast-msg.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1024px) {
  .mega-menu-dropdown { width: 100%; right: 0; }
  .tabs-strip { grid-template-columns: repeat(3, 1fr); }
  .service-icon-grid, .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .ecommerce-grid, .split-banner-section, .contact-grid { grid-template-columns: 1fr; }
  .hero-slide-wrapper { flex-direction: column; text-align: center; }
  .hero-slide-content { margin-bottom: 30px; }
  .stats-green-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .tabs-strip { grid-template-columns: 1fr; }
  .service-icon-grid, .outcomes-grid, .stats-green-grid, .form-row { grid-template-columns: 1fr; }
  .hero-slide-title, .page-header h1 { font-size: 2.1rem; }
  .ecom-title, .seo-outcomes-title { font-size: 1.8rem; }
  .split-white-half { padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
}
