/* ========================================
   ANA MUR Evden Eve Nakliyat - Ana CSS
   SEO & Performans Odaklı, Modern Tasarım
   ======================================== */

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

:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3a6b;
  --blue:       #1e5fc2;
  --blue-hover: #1749a0;
  --accent:     #f0a500;
  --accent-light: #ffc340;
  --white:      #ffffff;
  --off-white:  #f4f7fc;
  --gray-light: #e8eef8;
  --gray:       #8a9ab5;
  --text:       #1c2b45;
  --text-light: #4a5e80;
  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.20);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Montserrat',sans-serif;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); letter-spacing: 0.4px;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(30,95,194,0.35);
}
.btn-primary:hover {
  background: var(--blue-hover); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,95,194,0.45);
}
.btn-accent {
  background: var(--accent); color: var(--navy);
  box-shadow: 0 4px 20px rgba(240,165,0,0.35);
}
.btn-accent:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,165,0,0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ── SECTION TITLES ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: var(--blue); color: var(--white);
  font-family: 'Montserrat',sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px;
  border-radius: 50px; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; backdrop-filter: blur(4px);
}

/* ════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-icon {
  width: 46px; height: 46px; background: var(--blue);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--white); line-height: 1.1;
}
.logo-sub {
  font-size: 0.68rem; color: var(--accent); letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
}

nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,0.85); font-family: 'Montserrat',sans-serif;
  font-weight: 500; font-size: 0.88rem; padding: 8px 14px;
  border-radius: 8px; transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: var(--accent); color: var(--navy) !important;
  font-weight: 700 !important; padding: 10px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 82px; left: 0; right: 0;
  background: rgba(10,22,40,0.98); backdrop-filter: blur(12px);
  padding: 24px; z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link {
  padding: 12px 16px; border-radius: 8px; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-gradient {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,95,194,0.25) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-bg-gradient-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.1) 0%, transparent 70%);
  bottom: -80px; left: 10%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 120px 0 80px;
}
.hero-content { }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero h1 { color: var(--white); margin-bottom: 12px; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { }
.stat-num {
  font-family: 'Montserrat',sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.truck-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 40px;
  backdrop-filter: blur(8px); text-align: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.truck-svg { font-size: 5rem; margin-bottom: 20px; }
.truck-info { color: var(--white); }
.truck-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
.truck-info p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.truck-features {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.truck-feat {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  padding: 10px 14px; color: rgba(255,255,255,0.85); font-size: 0.85rem;
}
.truck-feat span:first-child { font-size: 1rem; }

/* ════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services { padding: 100px 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--gray-light);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--blue); transform: scale(1.08);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 0.85rem;
  margin-top: 20px; font-family: 'Montserrat',sans-serif;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ════════════════════════════════════
   WHY US / FEATURES
═══════════════════════════════════════ */
.why-us { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-content { }
.why-content h2 { margin-bottom: 20px; }
.why-content p { color: var(--text-light); margin-bottom: 36px; font-size: 1.02rem; }
.features-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  border: 1px solid var(--gray-light);
}
.feature-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; color: var(--text-light); }
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 48px; color: white;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '🚚'; font-size: 8rem; position: absolute;
  right: -20px; bottom: -10px; opacity: 0.08;
}
.why-stats { display: flex; flex-direction: column; gap: 28px; }
.why-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 28px; }
.why-stat:last-child { border-bottom: none; padding-bottom: 0; }
.why-stat-num {
  font-family: 'Montserrat',sans-serif; font-size: 2.5rem;
  font-weight: 800; color: var(--accent); line-height: 1;
}
.why-stat-text { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 6px; }

/* ════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process { padding: 100px 0; background: var(--navy); }
.process .section-header h2 { color: white; }
.process .section-header p { color: rgba(255,255,255,0.6); }
.process .section-tag { background: var(--accent); color: var(--navy); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(to right, var(--blue), var(--accent));
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-mid); border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat',sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--accent); margin: 0 auto 24px;
}
.step-card h3 { color: white; margin-bottom: 10px; font-size: 1rem; }
.step-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; }

/* ════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--off-white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; }
.review-text { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat',sans-serif; font-weight: 700; color: white;
  font-size: 1rem;
}
.reviewer-name { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 0.9rem; }
.reviewer-city { color: var(--gray); font-size: 0.78rem; }

/* ════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin: 20px 0 24px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--blue); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Montserrat',sans-serif; font-weight: 700;
  color: white; font-size: 0.9rem; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ════════════════════════════════════
   PAGE HERO (İÇ SAYFALAR)
═══════════════════════════════════════ */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px; align-items: center;
  margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════ */
.contact-section { padding: 100px 0; background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }
.contact-card {
  background: white; border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card p, .contact-card a {
  font-family: 'Montserrat',sans-serif; font-weight: 600;
  font-size: 1rem; color: var(--text);
}
.contact-card a:hover { color: var(--blue); }

.contact-form-wrap {
  background: white; border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block; font-family: 'Montserrat',sans-serif;
  font-weight: 600; font-size: 0.82rem; color: var(--text);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid var(--gray-light); font-family: 'Open Sans',sans-serif;
  font-size: 0.92rem; color: var(--text); background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); background: white;
  box-shadow: 0 0 0 4px rgba(30,95,194,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.78rem; color: var(--gray); margin-top: 16px;
  display: flex; align-items: center; gap: 6px;
}

/* ════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 100px 0; background: white; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.faq-item {
  border: 1px solid var(--gray-light); border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; background: white; border: none; cursor: pointer;
  font-family: 'Montserrat',sans-serif; font-weight: 600;
  font-size: 0.95rem; color: var(--text); text-align: left;
  transition: var(--transition); gap: 12px;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { color: var(--blue); background: rgba(30,95,194,0.04); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; flex-shrink: 0;
  transition: var(--transition);
}
.faq-question.open .faq-arrow { background: var(--blue); color: white; transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.75;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 22px; }

/* ════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 60px 40px;
  text-align: center; color: white; font-size: 6rem;
  position: relative; overflow: hidden; min-height: 380px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.about-img-card h3 { color: white; margin-top: 20px; font-size: 1.1rem; }
.about-img-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 8px; }
.about-float-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--accent); border-radius: var(--radius);
  padding: 16px 22px; text-align: center; box-shadow: var(--shadow-md);
}
.about-float-badge .num {
  font-family: 'Montserrat',sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--navy); line-height: 1;
}
.about-float-badge .lbl { font-size: 0.75rem; color: var(--navy); font-weight: 600; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; font-size: 0.97rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px;
}
.value-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--off-white); border-radius: 8px; padding: 12px 14px;
  font-size: 0.85rem; font-family: 'Montserrat',sans-serif; font-weight: 600;
}

/* ════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite; cursor: pointer; transition: var(--transition);
}
.float-wa:hover { background: #1ebe5a; transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav .nav-link { display: none; }
  nav .nav-link.nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: 80px; }
  .hero-inner { padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.section-padding { padding: 100px 0; }
