/* ===== 1. RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font: inherit;
}

/* ===== 2. CSS VARIABLES ===== */
:root {
  --color-primary: #0E0B3D;
  --color-secondary: #3855BE;
  --color-accent: #FFBB24;
  --color-bg-cream: #FFF8E5;
  --color-bg-blue: #E8F3FF;
  --color-bg-lavender: #EEE8FF;
  --color-text: #0E0B3DCC;
  --color-heading: #0E0B3D;
  --color-border: #0E0B3D1A;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1140px;
  --gap: 30px;
  --section-py: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
}

/* ===== 3. TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.1;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

h5 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.accent-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
}

/* ===== 4. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-top: 10px;
}

.section-header p {
  margin-top: 16px;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

/* Utility helpers */
.bg-blue {
  background: var(--color-bg-blue);
}

.bg-cream {
  background: var(--color-bg-cream);
}

.gap-50 {
  gap: 50px;
}

.items-center {
  align-items: center;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-30 {
  margin-top: 30px;
}

.img-rounded {
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.container--narrow {
  max-width: 800px;
}

/* ===== 5. HEADER & NAVIGATION ===== */
.site-header {
  position: relative;
  z-index: 5;
  padding: 0 20px;
  background: var(--color-white);
}

/* Transparent header (homepage only) */
.site-header--transparent {
  margin-bottom: -96px;
  background: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1290px;
}

.logo img {
  width: 160px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: 96px;
  gap: 0;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition);
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu a:hover {
  color: var(--color-secondary);
}

.nav-menu .active>a {
  color: var(--color-secondary);
}

/* Dropdown */
.has-submenu {
  position: relative;
}

.has-submenu>a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  vertical-align: 2px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(13, 60, 34, 0.07);
  min-width: 200px;
  padding: 10px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 15px;
  color: var(--color-primary);
  font-size: 0.9rem;
  height: auto;
}

.submenu a:hover {
  background: var(--color-bg-blue);
  color: var(--color-secondary);
}

/* Header CTA */
.btn.header-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
  white-space: nowrap;
}

.btn.header-cta:hover {
  background: var(--color-primary);
}

/* Hamburger (4-bar animated) */
.menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background: var(--color-primary);
  border-radius: 10px;
  transition: 0.4s;
}

.menu-toggle:hover {
  border-radius: 20px;
}

.menu-toggle .bar1,
.menu-toggle .bar2,
.menu-toggle .bar3,
.menu-toggle .bar4 {
  border-radius: 30px;
  background: var(--color-white);
  width: 22px;
  height: 2px;
  transition: 0.4s;
}

.menu-toggle .bar1 {
  margin-bottom: 5px;
}

.menu-toggle .bar2 {
  position: absolute;
}

.menu-toggle .bar4 {
  margin-top: 5px;
}

/* Open state → X animation */
.menu-toggle.open .bar3 {
  transform: rotate(-45deg);
}

.menu-toggle.open .bar2 {
  transform: rotate(45deg);
}

.menu-toggle.open .bar1 {
  opacity: 0;
  width: 14px;
}

.menu-toggle.open .bar4 {
  opacity: 0;
  width: 14px;
}

/* ===== 6. COMPONENTS ===== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}


/* Icon Box */
.icon-box {
  padding: 30px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icon-box img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.icon-box h3 {
  margin-bottom: 12px;
}

/* Sektör Referansları */
.sector-references {
  background-color: #070A1B;
  color: var(--color-white);
  padding: 80px 0;
  position: relative;
}

.sector-header h2 {
  color: var(--color-white);
}

.sector-header p {
  color: rgba(255, 255, 255, 0.7);
}

.text-accent {
  color: var(--color-accent);
}

.text-brand-blue {
  color: var(--color-secondary);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* Increased gap */
  max-width: 1000px;
  /* Increased max width */
  margin: 0 auto;
}

.brand-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  /* Increased height from 120px */
  transition: all 0.3s ease;
}

.brand-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.placeholder-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

.brand-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* Hizmetler Section Design */
.outline-blue {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hizmetler-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.hizmetler-title {
  flex: 1;
}

.hizmetler-desc {
  flex: 1;
  max-width: 500px;
}

.hizmetler-desc p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.display-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin: 0;
}

.hizmetler-wrapper {
  background: var(--color-bg-cream);
  padding: 50px;
  border-radius: 24px;
}

/* Service Card */
.service-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}


a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(14, 11, 61, 0.08);
}

.service-card img {
  width: 90px;
  height: auto;
  margin: 0 auto 20px;
}

.service-card h3 {
  margin-bottom: 12px;
}

/* Team Card */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card-body h3 {
  margin-bottom: 4px;
}

.team-card-body h5 {
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.team-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  transition: background var(--transition), transform var(--transition);
}

.social-icon:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 20px 0;
}

/* Contact Info List */
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-list li a {
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-list li a:hover {
  color: var(--color-secondary);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* Testimonial */
.testimonial {
  padding: 30px;
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--color-heading);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-heading);
}

/* FAQ */
.faq-header {
  text-align: left;
  max-width: none;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.faq-grid {
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}

.faq-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}


/* ===== 7. HERO SECTIONS ===== */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 100px 0 80px;
}

.hero-gradient h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.hero-gradient p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Home Hero */
.home-hero {
  background: linear-gradient(180deg, #FFFFFF 65%, #FFFFFF 100%);
  padding: 200px 0 80px;
  overflow: hidden;
  position: relative;
}

.home-hero .container {
  max-width: 1310px;
}

.home-hero .hero-split {
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
}

.home-hero .hero-content {
  flex: 55;
  min-width: 0;
  padding: 10px 20px 10px 10px;
  position: relative;
}

.home-hero .hero-content h1 {
  color: #070A1B;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.home-hero .hero-content h1 strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.home-hero .hero-content p {
  color: var(--color-text);
  max-width: 520px;
}

/* Hero image column */
.home-hero .hero-image {
  flex: 45;
  min-width: 0;
  position: relative;
  display: flex;
  background: var(--color-secondary);
  border-radius: 20px;
  padding: 0 0 0 10px;
}

.home-hero .hero-image .hero-bg {
  display: none;
}

.home-hero .hero-image>img:first-of-type {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: -40px 56px 0 -30px;
  object-fit: contain;
}

/* Stat cards with glass-morphism */
.home-hero-stats {
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.home-hero-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.4);
  border-radius: inherit;
}

.home-hero-stats img {
  position: relative;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(14, 11, 61, 0.15);
}

.home-hero-stats.stat-1 {
  bottom: 44px;
  left: -48px;
  width: 225px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 3px 20px rgba(14, 11, 61, 0.1);
}

.home-hero-stats.stat-2 {
  bottom: 17px;
  right: 15px;
  width: 180px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-floating-icon {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 70px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatIcon 4s ease-in-out infinite;
}

.hero-floating-icon img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.hero-floating-meta {
  top: 15%;
  left: -15px;
  animation-delay: 0s;
}

.hero-floating-google {
  top: 60%;
  right: -5px;
  animation-delay: 1.5s;
}

/* google-with-growth badge */
.hero-growth-badge {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: auto;
  margin-left: 10px;
  margin-top: -5px;
}

/* Hero extras */
.hero-badge {
  margin-bottom: 24px;
}

.hero-badge img {
  width: 30%;
  max-width: 275px;
  height: auto;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-avatars span {
  margin-left: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading);
}

/* ===== 8. FOOTER ===== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

.footer-social {
  margin-top: 16px;
}

.footer-social .social-icon {
  background: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
  background: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom img {
  height: clamp(30px, 6vw, 45px);
  width: auto;
}

.footer-bottom-text {
  text-align: right;
}

.footer-bottom-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* ===== 9. PAGE: CONTACT ===== */
.contact-wrapper {
  background: var(--color-bg-cream);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(14, 11, 61, 0.08);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-form-desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-heading);
}

input::placeholder,
textarea::placeholder {
  color: #999;
  opacity: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-heading);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-color: var(--color-secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Updated Contact Styles */
.btn-blue {
  width: 100%;
  background: var(--color-secondary);
  color: white;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-blue:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 85, 190, 0.3);
}

.contact-info-block {
  padding-left: 10px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 15px;
}

.address-text {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 25px;
}

.contact-map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(14, 11, 61, 0.05);
}

.contact-list {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-heading);
}

.contact-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
}

.contact-list li a {
  color: var(--color-heading);
  transition: color var(--transition);
}

.contact-list li a:hover {
  color: var(--color-secondary);
}

.social-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading);
  margin: 0;
}

.social-icons.outline {
  display: flex;
  gap: 10px;
}

.social-icons.outline .social-icon {
  background: var(--color-secondary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}

.social-icons.outline .social-icon svg {
  fill: white;
  width: 16px;
  height: 16px;
}

.social-icons.outline .social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ===== 10. CTA Section ===== */
.cta-section {
  background: var(--color-bg-cream);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ===== 11. WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  animation: none;
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-btn {
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ===== 12. SPLIDE OVERRIDES ===== */
.splide__arrow {
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  opacity: 1;
}

.splide__arrow svg {
  fill: var(--color-secondary);
}

.splide__pagination__page {
  background: var(--color-border);
}

.splide__pagination__page.is-active {
  background: var(--color-secondary);
}

/* Client logo carousel */
.client-logos .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.client-logos .splide__slide img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.client-logos .splide__slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Tools Section — title left, slider right */
.tools-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.tools-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tools-title {
  flex: none;
  width: 220px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-heading);
}

.tools-slider {
  flex: 1;
  min-width: 0;
}

.tools-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.tools-slider .splide__slide img {
  max-height: 110px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
}

.tools-slider .splide__slide img.logo-sm {
  max-height: 55px;
  /* Half the size */
}

.tools-slider .splide__slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ===== 13. RESPONSIVE ===== */
@media (max-width: 1024px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Header tablet */
  .site-header--transparent {
    margin-bottom: -76px;
    z-index: 10;
    padding: 30px 20px 0;
  }

  /* Hero tablet */
  .home-hero .hero-split {
    flex-wrap: wrap;
    gap: 30px;
  }

  .home-hero .hero-content {
    flex: none;
    width: 100%;
    padding: 10px 20px;
  }

  .home-hero .hero-content h1 {
    font-size: 38px;
  }

  .home-hero .hero-content p {
    margin-right: 0;
  }

  .home-hero .hero-image {
    width: calc(100% - 40px);
    margin: 40px auto 0;
  }

  .home-hero .hero-image>img:first-of-type {
    margin: -40px auto 0;
    width: 85%;
  }

  .home-hero-stats.stat-1 {
    width: 180px;
    left: -10px;
    bottom: 68px;
    padding: 4px;
    border-radius: 5px;
  }

  .home-hero-stats.stat-2 {
    width: 140px;
    right: 10px;
    bottom: 23px;
    padding: 4px;
    border-radius: 5px;
  }

  .hero-growth-badge {
    width: 160px;
    top: 8px;
    right: -31px;
  }

  .hero-growth-badge img {
    width: 70%;
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: 50px;
    --gap: 20px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* Header mobile */
  .site-header {
    padding: 10px 0;
  }

  .site-header .container {
    min-height: 64px;
  }

  .site-header--transparent {
    margin-bottom: -64px;
    padding: 20px 0 0;
  }

  /* Mobile Nav */
  .site-header nav {
    display: contents;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #f7f7f7;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 0;
    transition: left 0.6s cubic-bezier(.6, .1, .68, .53);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu a {
    display: block;
    padding: 14px 10px;
    font-size: 1.1rem;
    width: 100%;
    color: var(--color-primary);
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .has-submenu>a::after {
    float: right;
    margin-top: 8px;
  }

  .submenu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu a {
    color: var(--color-text);
    padding: 10px 10px 10px 20px;
    border-bottom: none;
  }

  .submenu a:hover {
    background: transparent;
    color: var(--color-secondary);
  }

  .header-cta {
    display: none;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .menu-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Layouts */
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Home hero mobile: image first, text below (left-aligned) */
  .home-hero .hero-split {
    text-align: left;
  }

  .home-hero .hero-image {
    order: 1;
  }

  .home-hero .hero-content {
    order: 2;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Icon Box - horizontal card layout on mobile */
  .icon-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
  }

  .icon-box:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .icon-box img {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .icon-box > div,
  .icon-box h3,
  .icon-box p {
    margin-top: 0;
  }

  .hizmetler-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hizmetler-wrapper {
    padding: 30px 20px;
  }

  .display-title {
    font-size: 2rem;
  }

  .hizmetler-desc {
    max-width: 100%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 40px;
  }

  .contact-form-card {
    padding: 25px 20px;
  }

  .contact-info-block {
    padding-left: 0;
  }

  .contact-list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .contact-list li {
    flex-wrap: nowrap;
    word-break: break-word;
  }

  .social-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-text {
    text-align: center;
  }

  /* Tools mobile */
  .tools-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .tools-title {
    width: auto;
    font-size: 1.3rem;
  }

  .tools-section {
    overflow: hidden;
  }

  .tools-slider {
    max-width: 100%;
    overflow: hidden;
  }

  .tools-slider .splide__slide img {
    max-height: 40px;
  }

  /* Home Hero mobile */
  .home-hero {
    padding: 100px 0 50px;
  }

  .home-hero .hero-content {
    flex: none;
    width: 100%;
    margin-top: 24px;
    padding: 0 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero .hero-content h1 {
    order: 1;
    width: 100%;
    font-size: 32px;
  }

  .home-hero .hero-content>p {
    order: 2;
  }

  .home-hero .hero-cta-row {
    order: 3;
  }

  .home-hero .hero-badge {
    order: 4;
    margin-top: 16px;
  }

  .home-hero .hero-avatars {
    display: none;
  }

  .home-hero .hero-content p {
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
  }

  .home-hero .hero-image {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .home-hero .hero-image>img:first-of-type {
    margin: -20px auto 0;
    width: 100%;
  }

  .home-hero-stats.stat-1 {
    width: 112px;
    left: 0;
    bottom: 22px;
  }

  .home-hero-stats.stat-1 img,
  .home-hero-stats.stat-2 img {
    border-radius: 3px;
  }

  .home-hero-stats.stat-2 {
    width: 100px;
    right: 0;
    bottom: 11px;
  }

  .hero-growth-badge {
    display: none;
  }

  .hero-cta-row {
    justify-content: flex-start;
  }

  .hero-badge {
    text-align: left;
  }

  .hero-badge img {
    width: 50%;
    margin: 0;
  }
}

/* ===== 13.5 FLOATING CTAs ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.meta-floating-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--color-white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  text-decoration: none;
  border: 2px solid var(--color-secondary);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  visibility: hidden;
  cursor: pointer;
}

.meta-floating-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.meta-floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.meta-floating-icon img {
  display: block;
  border-radius: 5px;
}

.meta-floating-text {
  display: flex;
  flex-direction: column;
}

.meta-floating-text strong {
  color: var(--color-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.meta-floating-text span {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Meta Ads Modal */
.meta-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.meta-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.meta-modal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 380px;
  max-height: calc(100vh - 60px);
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 1101;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.meta-modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.meta-modal-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.meta-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-modal-header-left img {
  border-radius: 6px;
  flex-shrink: 0;
}

.meta-modal-header-left strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.meta-modal-header-left span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  display: block;
  margin-top: 2px;
}

.meta-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.meta-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.meta-modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
}

.meta-modal-form-group {
  margin-bottom: 14px;
}

.meta-modal-form-group input,
.meta-modal-form-group select,
.meta-modal-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-heading);
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.meta-modal-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.meta-modal-form-group input:focus,
.meta-modal-form-group select:focus,
.meta-modal-form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--color-white);
}

.meta-modal-form-group input::placeholder,
.meta-modal-form-group textarea::placeholder {
  color: #aaa;
}

.meta-modal-form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.meta-modal-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a56db 100%);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.meta-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.meta-modal-success {
  text-align: center;
  padding: 30px 20px;
}

.meta-modal-success svg {
  width: 50px;
  height: 50px;
  color: #22c55e;
  margin-bottom: 16px;
}

.meta-modal-success h4 {
  color: var(--color-heading);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.meta-modal-success p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  .meta-floating-cta {
    bottom: 20px;
    left: 20px;
    padding: 8px 12px;
    gap: 8px;
  }

  .meta-floating-icon img {
    width: 24px;
    height: 24px;
  }

  .meta-floating-text strong {
    font-size: 0.75rem;
  }

  .meta-floating-text span {
    font-size: 0.65rem;
  }

  .meta-modal {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
  }

  .meta-modal-body {
    max-height: calc(100vh - 100px);
    padding: 14px;
  }

  .meta-modal-form-group select {
    font-size: 0.82rem;
    padding: 10px 30px 10px 12px;
    background-position: right 10px center;
  }
}

/* ===== 14. ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}