/* ============================================================
   ARИК SIGORTA — style.css
   Professional Insurance Website Stylesheet
   ============================================================ */

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners { background: var(--bg); padding-bottom: 72px; }
.partners .section-header { margin-bottom: 48px; }

.logos-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}
/* fade edges */
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logosScroll 32s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes logosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 14px 24px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}
.logo-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.lp-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--dc, #1e40af);
  flex-shrink: 0;
}
.logo-pill strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* Logo image cards (bigger) */
.logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #ea580c;
  --primary-dark:  #c2410c;
  --primary-light: #f97316;
  --accent:        #0d9488;
  --accent-dark:   #0f766e;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --bg:            #ffffff;
  --bg-soft:       #fff7f5;
  --bg-card:       #ffffff;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.3s ease;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;
  --max-width:     1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(30,64,175,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,64,175,.45);
}
.btn-outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.1);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 4px 0;
}
#header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(30,64,175,.3);
}
.logo-icon--lion {
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
}
.lion-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.logo:hover .lion-img {
  transform: scale(1.08);
}
.logo-text { display: flex; align-items: baseline; gap: 2px; }
.logo-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-accent {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.logo-lion {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fbbf24;
  font-style: italic;
  letter-spacing: 0px;
}
/* Logo color on transparent header */
#header:not(.scrolled) .logo-brand,
#header:not(.scrolled) .logo-accent { color: #fff; }
#header:not(.scrolled) .logo-icon { background: rgba(255,255,255,.25); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
#header.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
#header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #431407 0%, #ea580c 40%, #0f766e 70%, #042f2e 100%);
}
.hero-overlay {
  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");
}
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 {
  width: 600px; height: 600px;
  background: #f97316;
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #0d9488;
  bottom: -100px; left: 200px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #fbbf24;
  top: 40%; right: 30%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.2);
  border: 1px solid rgba(245,158,11,.4);
  color: #fcd34d;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: .3px;
}
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg, #fed7aa, #5eead4, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Hero Lion label */
.hero-lion {
  color: #fbbf24;
  font-style: italic;
}

/* Taglines */
.hero-taglines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-tag {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .2px;
}
.hero-tag strong {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: .5px;
}
.tag-fire, .tag-boom {
  font-size: 1.3rem;
  line-height: 1;
}

/* Hero services mini list */
.hero-services-list {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-services-title {
  font-size: 1rem;
  font-weight: 700;
  color: #5eead4;
  margin-bottom: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.hero-services-grid span {
  font-size: .92rem;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.plus { color: var(--accent); }
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 14px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker span {
  white-space: nowrap;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker span i { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(30,64,175,.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,64,175,.2);
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: color-mix(in srgb, var(--clr) 12%, transparent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--clr);
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--clr);
  color: #fff;
  transform: scale(1.1);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--bg); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-image {
  position: relative;
}
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 50%, #ede9fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.5;
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 1;
}
.why-badge i {
  font-size: 2rem;
  color: var(--primary);
}
.why-badge strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
}
.why-badge small {
  color: var(--text-muted);
  font-size: .8rem;
}
.why-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 1rem;
}
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.feature-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.why-us-content .section-label { display: inline-flex; }
.why-us-content .section-title { text-align: left; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: color-mix(in srgb, var(--clr) 12%, transparent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--clr);
  flex-shrink: 0;
}
.contact-card-body h4 { font-weight: 700; margin-bottom: 6px; }
.contact-card-body a,
.contact-card-body p {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1.5;
}
.contact-card-body a:hover { color: var(--primary); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-weight: 600; font-size: .88rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,.12);
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 16px;
  padding: 40px;
}
.form-success i { font-size: 4rem; color: #059669; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--text-muted); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 380px;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-overlay-card {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-overlay-card i { color: var(--primary); font-size: 1.3rem; }
.map-overlay-card strong { display: block; font-size: .95rem; }
.map-overlay-card small { color: var(--text-muted); font-size: .82rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 60px;
  padding: 72px 24px 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-brand,
.footer-brand .logo-accent { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-icon { background: rgba(255,255,255,.15); }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links li a:hover { color: #fff; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.coded-by {
  font-size: .75rem !important;
  color: rgba(255,255,255,.25) !important;
  letter-spacing: .3px;
}
.coded-by span {
  color: var(--accent);
  font-weight: 600;
  opacity: 0.7;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image { order: -1; max-width: 520px; margin: 0 auto; }
  .why-badge { right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,32,87,.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 999;
  }
  .nav-links.open a { color: #fff; font-size: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner .footer-brand { grid-column: 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.4rem; }
}
