/* ===== TOKENS ===== */
:root {
  --primary: #0A192F;
  --primary-light: #172A45;
  --accent: #FFB800;
  --accent-hover: #E6A600;
  --text: #1A202C;
  --muted: #4A5568;
  --bg: #FFFFFF;
  --bg-light: #F7FAFC;
  --bg-dark: #0F172A;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, .06);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, .10);
  --shadow-lg: 0 20px 40px rgba(10, 25, 47, .14);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --ease: .3s cubic-bezier(.4, 0, .2, 1);
  --ease-fast: .18s ease;
}

.hide {
  display: none
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease-fast);
}

ul {
  list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

.bg-light {
  background: var(--bg-light);
}

.bg-dark {
  background: var(--bg-dark);
}

.text-white {
  color: #fff !important;
}

.mt-2 {
  margin-top: 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, #93C5FD, #BFDBFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 750px;
  margin-inline: auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 25, 47, .2);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  transition: var(--ease);
  padding: 1.2rem 0;
}

.navbar.scrolled {
  padding: .7rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .97);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 52px;
  object-fit: contain;
  transition: var(--ease);
}

.navbar.scrolled .logo-img {
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
  font-size: .98rem;
  position: relative;
  padding: .4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--ease);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: .5rem;
  border-radius: 8px;
  transition: var(--ease-fast);
}

.mobile-menu-btn:hover {
  background: var(--bg-light);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
  transition: var(--ease);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.active {
  color: var(--accent);
  border-color: var(--accent);
}

.mobile-menu .mobile-btn {
  margin-top: 1rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 11rem 0 5.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 3.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  width: 16px;
  height: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(10, 25, 47, .72), rgba(10, 25, 47, .88)),
    url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&q=80') center/cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

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

.hero h1 {
  font-size: 4.75rem;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -.03em;
}

.hero p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2.75rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: .55rem 1.2rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translate(-50%, 18px);
    opacity: 0
  }
}

/* ===== SERVICES GRID (index) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  padding: 3.5rem 2.75rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--ease);
}

.service-icon i {
  width: 34px;
  height: 34px;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: .9rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .88rem;
}

.read-more i {
  width: 18px;
  height: 18px;
  transition: var(--ease-fast);
}

.read-more:hover i {
  transform: translateX(7px);
}

/* ===== QUALITY SECTION ===== */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.quality-content h2 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.quality-content>p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2.5rem;
}

.check-list {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
}

.check-item i {
  color: var(--accent);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.quality-image img {
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
}

/* ===== PARTNER SLIDER ===== */
.partner-slider {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.partner-slider::before,
.partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 130px;
  z-index: 2;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.partner-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.partner-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #CBD5E0;
  transition: var(--ease-fast);
  user-select: none;
  white-space: nowrap;
}

.partner-logo:hover {
  color: var(--primary);
}

/* ===== STATS ===== */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--primary);
  padding: 4.5rem;
  border-radius: 36px;
  color: #fff;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  display: block;
  color: var(--accent);
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

/* ===== CTA CARD ===== */
.cta-card {
  background: linear-gradient(135deg, var(--accent) 0%, #F6AD55 100%);
  padding: 5rem;
  border-radius: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(10, 25, 47, .78);
  font-weight: 500;
  margin: 0;
}

.cta-action {
  position: relative;
  z-index: 1;
}

/* ===== SERVICE DETAIL (hizmetler) ===== */
.service-detail-grid {
  display: flex;
  gap: 6rem;
  align-items: center;
}

.service-detail-grid.reverse {
  flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
  flex: 1;
}

.service-badge {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
  font-size: .88rem;
}

.service-detail-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.service-detail-content>p {
  color: var(--muted);
  font-size: 1.1rem;
}

.service-features-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
}

.feature-item i {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item h4 {
  margin-bottom: .4rem;
  font-size: 1.15rem;
}

.feature-item p {
  color: var(--muted);
  margin: 0;
}

.service-detail-image img {
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
}

/* ===== ABOUT (hakkimizda) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
}

.experience-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: #fff;
  padding: 2.25rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.experience-card .number {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.experience-card .text {
  font-weight: 600;
  color: var(--muted);
  font-size: .9rem;
}

.mission-vision {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

.mv-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--bg-light);
  border-radius: 18px;
}

.mv-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-icon i {
  width: 22px;
  height: 22px;
}

.mv-item h4 {
  margin-bottom: .4rem;
}

.mv-item p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.75rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  transition: var(--ease);
}

.value-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-10px);
}

.value-card i {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  color: #fff;
  margin-bottom: .75rem;
}

.value-card p {
  color: rgba(255, 255, 255, .65);
  margin: 0;
  font-size: .95rem;
}

/* ===== TIMELINE ===== */
.timeline {
  max-width: 780px;
  margin: 3.5rem auto 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.75rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: .4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--border);
}

.timeline-item .time {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .4rem;
}

.timeline-item .desc h4 {
  margin-bottom: .3rem;
  color: var(--primary);
}

.timeline-item .desc p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.process-card {
  padding: 2.75rem;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--ease);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.process-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(10, 25, 47, .06);
  position: absolute;
  top: .75rem;
  right: 1.75rem;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}

.process-card p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-method-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}

.contact-method-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.method-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  width: 24px;
  height: 24px;
}

.method-info h4 {
  margin-bottom: .35rem;
}

.method-info p,
.method-info a {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.method-info a:hover {
  color: var(--primary);
}

.social-box {
  margin-top: 3rem;
}

.social-box h4 {
  margin-bottom: 1.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--ease-fast);
}

.social-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

.social-icons i {
  width: 20px;
  height: 20px;
}

/* Glass card (form) */
.glass-card {
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.glass-card h3 {
  font-size: 1.75rem;
  margin-bottom: .6rem;
}

.glass-card>p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  color: var(--text);
  background: #fff;
  transition: var(--ease-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 25, 47, .08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.faq-card {
  padding: 2.25rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--ease);
}

.faq-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.faq-card h4 {
  margin-bottom: .75rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.faq-card p {
  color: var(--muted);
  margin: 0;
  font-size: .96rem;
}

/* Map */
.map-section iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 7rem 0 2.5rem;
  background: var(--primary);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  height: 65px;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .58);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.footer-links li {
  margin-bottom: .85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .58);
  font-size: .95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  gap: .85rem;
  color: rgba(255, 255, 255, .58);
  font-size: .95rem;
  margin-bottom: .85rem;
}

.footer-contact i {
  width: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: .88rem;
}

/* Footer specific social icons to ensure visibility */
.footer .social-icons a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer .social-icons a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .35);
  z-index: 999;
  transition: var(--ease-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn i {
  width: 32px;
  height: 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    flex-direction: column;
    gap: 3.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width:1024px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn:not(.mobile-menu-btn) {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width:768px) {
  .section-padding {
    padding: 4.5rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .cta-card {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 2rem;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section-header h2 {
    font-size: 2.1rem;
  }

  .experience-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .glass-card {
    padding: 2rem 1.5rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }
}