/* ============================================
   Özkardeş Sigorta – Premium CSS v3.0
   ============================================ */

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

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --primary-light: #e8f0fe;
  --secondary: #ff5e14;
  --secondary-dark: #e04d00;
  --accent-gold: #f5a623;
  --success: #22c55e;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, #1a237e 0%, #0d6efd 50%, #1a237e 100%);
  background-size: 200% 100%;
  animation: shimmerBg 5s linear infinite;
  color: #fff;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1100;
}

@keyframes shimmerBg {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ann-link {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.ann-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ann-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.ann-close:hover {
  color: #fff;
}

/* ---------- Header ---------- */
header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav */
#main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--dark);
  background: var(--primary-light);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.call-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav li {
  margin: 0.8rem 0;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-call {
  background: var(--secondary) !important;
  color: #fff !important;
  border-radius: 50px;
  font-size: 1.1rem !important;
  margin-top: 1rem;
  padding: 0.75rem 2rem !important;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a6e 40%, #0d6efd 80%, #1565C0 100%);
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #60a5fa, transparent);
  top: -200px;
  left: -100px;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f5a623, transparent);
  bottom: -100px;
  right: -100px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #22c55e, transparent);
  top: 50%;
  left: 50%;
  animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

/* Hero Text */
.hero-text {
  flex: 1;
  min-width: 0;
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #a5f3fc;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text>p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.stat-item>span:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 1rem;
}

.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Quote Form */
.quote-container {
  flex: 0 1 420px;
  min-width: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInRight 1s ease-out forwards;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

.tabs {
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.tab-btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-2);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 0.9rem;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  font-family: inherit;
}

.form-group select {
  padding-left: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), #09459e);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.45);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-footer-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

.response-msg {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
  animation: fadeInUp 0.5s ease;
}

.response-msg.success {
  display: block;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.response-msg.error {
  display: block;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: linear-gradient(90deg, #ff5e14 0%, #ff8c42 100%);
  padding: 1.2rem 2rem;
}

.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.promo-icon {
  font-size: 2rem;
}

.promo-text {
  flex: 1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-text strong {
  font-weight: 800;
  font-size: 1.05rem;
}

.promo-text em {
  font-style: normal;
  font-weight: 700;
  text-decoration: underline;
}

.promo-cta {
  background: #fff;
  color: var(--secondary);
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- Section Shared ---------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Insurance Types ---------- */
.insurance-types {
  background: var(--bg);
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ins-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ins-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.ins-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ins-card:hover::before {
  opacity: 1;
}

.ins-featured {
  background: linear-gradient(145deg, #0f172a, #1e3a6e);
  color: #fff;
  border-color: transparent;
}

.ins-featured::before {
  background: var(--accent-gold);
  opacity: 1;
}

.ins-card-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ins-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ins-blue {
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
}

.ins-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.ins-green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.ins-featured .ins-red {
  background: rgba(239, 68, 68, 0.2);
}

.ins-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.ins-featured h3 {
  color: #fff;
}

.ins-card>p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.ins-featured>p {
  color: rgba(255, 255, 255, 0.65);
}

.ins-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.ins-features li {
  font-size: 0.9rem;
  color: var(--muted);
}

.ins-featured .ins-features li {
  color: rgba(255, 255, 255, 0.7);
}

.ins-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.featured-btn {
  background: var(--accent-gold);
  color: #1a1a1a;
}

.featured-btn:hover {
  background: #d4901f;
  color: #fff;
}

/* ---------- Ad Banners ---------- */
.ad-section {
  padding: 1rem 2rem;
}

.ad-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ad-content {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.ad-label {
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  z-index: 5;
  text-transform: uppercase;
}

/* Ad Primary (Araç Sigortası) */
.ad-primary .ad-content {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 50%, #0d6efd 100%);
  padding: 2.5rem 3rem;
}

.ad-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ad-graphic {
  flex-shrink: 0;
}

.ad-shield {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ad-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.ad-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.ad-text {
  flex: 1;
  color: #fff;
}

.ad-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.ad-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.ad-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ad-cta-btn {
  display: block;
  padding: 0.85rem 2rem;
  background: var(--accent-gold);
  color: #1a1a1a;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.ad-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.ad-cta-btn-sec {
  display: block;
  padding: 0.7rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: var(--transition);
}

.ad-cta-btn-sec:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Ad Secondary (DASK) */
.ad-secondary .ad-content {
  background: linear-gradient(135deg, #0d4726 0%, #16803d 50%, #22c55e 100%);
  padding: 2.5rem 3rem;
}

.ad-inner-2 {
  gap: 2rem;
}

.ad-split-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.house-graphic {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ad-badge-pill {
  background: var(--accent-gold);
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.pill-light {
  background: rgba(255, 255, 255, 0.95);
  color: #0d4726;
}

.ad-split-text {
  flex: 1;
  color: #fff;
}

.ad-split-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.ad-split-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.bright-btn {
  background: #fff;
  color: #0d4726;
}

.bright-btn:hover {
  background: #f0fdf4;
}

.ad-phone {
  text-align: center;
}

.ad-phone a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.ad-phone a:hover {
  color: #fff;
}

/* Ad Health */
.ad-health .ad-content {
  background: linear-gradient(135deg, #7c0032 0%, #be185d 50%, #ec4899 100%);
  padding: 2.5rem 3rem;
}

.ad-inner-3 {
  gap: 2rem;
}

.ad-health-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.health-icon-anim {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse2 2s ease-in-out infinite;
}

@keyframes pulse2 {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(236, 72, 153, 0);
  }
}

.pink-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #be185d;
}

.pink-btn:hover {
  background: #fff;
}

/* ---------- Partners / Companies ---------- */
.partners {
  background: var(--surface);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.partner-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 80px;
}

.partner-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

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

/* ---------- Stats Section ---------- */
.stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
  overflow: hidden;
}

.stats-section .section-container {
  padding: 4rem 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.big-stat {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.big-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.big-stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.big-stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  display: inline-block;
}

.big-stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ---------- About Section ---------- */
.about-section {
  background: var(--surface);
}

.about-container {
  display: flex;
  gap: 5rem;
  align-items: center;
}

/* About Visual */
.about-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.about-card-visual {
  position: relative;
  padding: 2rem;
}

.av-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), #eff6ff);
  border-radius: var(--radius-lg);
}

.av-card {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 300px;
  width: fit-content;
}

.av-card-main {
  margin-bottom: 1.5rem;
}

.av-card-bottom {
  margin-left: auto;
}

.av-icon {
  font-size: 1.8rem;
}

.av-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.av-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.av-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.experience-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: var(--primary);
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.35);
  animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.experience-badge .years {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* About Text */
.about-text-content {
  flex: 1;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 36px;
  height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.about-text-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-text-content>p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 253, 0.15);
  background: var(--surface);
}

.icon-wrapper {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--bg);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.secondary-btn:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.t-featured {
  background: linear-gradient(145deg, #0f172a, #1e3a6e);
  border-color: transparent;
}

.t-stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card>p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-featured>p {
  color: rgba(255, 255, 255, 0.75);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.t-author>div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.t-author strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.t-featured .t-author strong {
  color: #fff;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.t-featured .t-author span {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--surface);
}

.contact-box {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1.5px solid var(--border);
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0.5rem 0 1rem;
}

.contact-left>p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  font-size: 1.5rem;
}

.contact-method>div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-method strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-method span {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-right {
  flex: 0 0 320px;
}

.contact-cta-card {
  background: linear-gradient(145deg, #0f172a, #1e3a6e);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: #fff;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-cta-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.full-btn {
  width: 100%;
  justify-content: center;
}

.cta-guarantee {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
footer {
  background: #070d1a;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}



.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact-info a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact-info a:hover {
  color: #fff;
}

.footer-contact-info p {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-bottom strong {
  color: #fff;
}

/* ---------- WhatsApp Btn ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  animation: none;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
}

/* ---------- Scroll Top Btn ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 172px;
  right: 28px;
  z-index: 9998;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }

  60% {
    transform: translateX(-50%) scale(1.1);
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

/* Scroll-triggered fade-in utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 900px) {
  #main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    gap: 3rem;
  }

  .quote-container {
    flex: unset;
    min-width: unset;
    width: 100%;
  }

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

  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

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

  .contact-box {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-right {
    flex: unset;
    width: 100%;
  }

  .ad-inner,
  .ad-inner-2,
  .ad-inner-3 {
    flex-direction: column;
    text-align: center;
  }

  .ad-action {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ad-split-left,
  .ad-health-left {
    display: none;
  }

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

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

@media (max-width: 600px) {
  .header-inner {
    padding: 0.8rem 1rem;
  }

  .call-btn span {
    display: none;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .section-container {
    padding: 3.5rem 1rem;
  }

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

  .about-card-visual {
    padding: 1rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
    padding: 1rem;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .faq-grid {
    gap: 0.75rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* ---------- Skip Link (Erişilebilirlik) ---------- */
.skip-link:focus {
  top: 0 !important;
}

/* ---------- FAQ / SSS Section ---------- */
.faq-section {
  background: linear-gradient(180deg, var(--bg) 0%, #e2e8f0 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.faq-answer a:hover {
  color: var(--primary-dark);
}

/* ---------- Visual Refresh v4.0 ---------- */
:root {
  --primary: #0f6b7f;
  --primary-dark: #0b4858;
  --primary-light: #e5f3f5;
  --secondary: #d95f20;
  --secondary-dark: #b84d17;
  --accent-gold: #f3b33d;
  --success: #15915b;
  --bg: #f5f7f8;
  --surface: #ffffff;
  --dark: #14202b;
  --dark-2: #243646;
  --text: #1d2b36;
  --muted: #647382;
  --border: rgba(20, 32, 43, 0.1);
  --shadow-sm: 0 1px 2px rgba(20, 32, 43, 0.06), 0 8px 24px rgba(20, 32, 43, 0.04);
  --shadow-md: 0 14px 32px rgba(20, 32, 43, 0.1);
  --shadow-lg: 0 20px 48px rgba(20, 32, 43, 0.13);
  --shadow-xl: 0 28px 70px rgba(10, 24, 34, 0.28);
  --radius: 8px;
  --radius-sm: 8px;
  --radius-lg: 8px;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.68);
}

html * {
  letter-spacing: 0;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 247, 248, 0.96)),
    var(--bg);
  color: var(--text);
}

a,
button {
  overflow-wrap: anywhere;
}

header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(20, 32, 43, 0.08);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  max-width: 1240px;
  padding: 0.75rem 2rem;
}

.logo {
  min-width: 0;
}

.logo-img {
  width: 74px;
  max-height: 48px;
  object-fit: contain;
}

.logo-main {
  font-size: 1.18rem;
}

.logo-sub {
  color: var(--secondary);
}

.nav-link {
  color: #4f6273;
  border-radius: 8px;
}

.nav-link:hover,
.active-nav {
  color: var(--primary-dark);
  background: var(--primary-light);
}

.call-btn,
.mobile-call,
.primary-btn,
.secondary-btn,
.ins-btn,
.submit-btn,
.promo-cta,
.ad-cta-btn,
.ad-cta-btn-sec {
  border-radius: 8px;
}

.call-btn {
  background: var(--secondary);
  box-shadow: 0 10px 24px rgba(217, 95, 32, 0.22);
}

.call-btn:hover {
  background: var(--secondary-dark);
}

.hero {
  isolation: isolate;
  min-height: calc(100vh - 74px);
  padding: 6rem 2rem 4.5rem;
  background: #0b2230;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 29, 0.94) 0%, rgba(10, 34, 48, 0.82) 45%, rgba(10, 34, 48, 0.28) 100%),
    url('../assets/img/about-us.png');
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.hero-bg-shapes {
  display: none;
}

.hero-content {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 390px);
  gap: 4rem;
  max-width: 1180px;
  overflow: hidden;
}

.hero-text {
  min-width: 0;
  max-width: 760px;
}

.hero-badge {
  border-radius: 8px;
  color: #d7f3f4;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
  max-width: 720px;
  font-size: 4rem;
  line-height: 1.05;
}

.gradient-text {
  background: none;
  background-clip: initial;
  color: var(--accent-gold);
  -webkit-text-fill-color: currentColor;
}

.hero-text>p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-stats {
  max-width: 650px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-label {
  color: rgba(255, 255, 255, 0.74);
}

.hero-trust-badges {
  flex-direction: row;
  flex-wrap: wrap;
}

.trust-item {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.quote-container {
  flex: auto;
  min-width: 0;
  align-self: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  color: var(--dark);
}

.quote-container::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 1.25rem;
  border-radius: 99px;
  background: var(--secondary);
}

.form-header h2 {
  color: var(--dark);
}

.direct-contact-action {
  display: grid;
  gap: 0.75rem;
}

.submit-btn {
  min-height: 52px;
  margin-top: 0;
  text-align: center;
}

.wa-btn {
  background: #128c7e;
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.22);
}

.wa-btn:hover {
  background: #0f756a;
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.28);
}

.phone-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.section-container {
  max-width: 1180px;
  padding: 5rem 2rem;
}

.section-header {
  margin-bottom: 2.75rem;
}

.section-tag {
  border-radius: 8px;
  color: var(--primary-dark);
}

.section-header h2,
.about-text-content h2 {
  font-size: 2.65rem;
  line-height: 1.12;
}

.section-header p {
  color: #637283;
}

.insurance-types {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}

.insurance-grid,
.testimonials-grid {
  gap: 1rem;
}

.ins-card,
.testimonial-card,
.faq-item,
.feature-card,
.big-stat,
.contact-method,
.partner-card {
  border-radius: 8px;
  border-color: rgba(20, 32, 43, 0.09);
}

.ins-card,
.testimonial-card {
  box-shadow: var(--shadow-sm);
}

.ins-card:hover,
.testimonial-card:hover,
.feature-card:hover,
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ins-card::before {
  opacity: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.ins-featured,
.t-featured,
.contact-cta-card {
  background:
    linear-gradient(135deg, rgba(15, 107, 127, 0.95), rgba(21, 45, 66, 0.98)),
    #153348;
}

.ins-card-icon,
.icon-wrapper {
  border-radius: 8px;
}

.partners {
  background: #ffffff;
}

.partners .section-container {
  padding-top: 4.25rem;
}

.partners-grid {
  gap: 1rem;
}

.partner-card {
  justify-content: flex-start;
  min-height: 96px;
  padding: 1.35rem;
  background: #f8fafb;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  width: 8px;
  align-self: stretch;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  margin-right: 1rem;
  flex: 0 0 auto;
}

.partner-logo {
  color: var(--dark);
  font-size: 0.98rem;
  line-height: 1.35;
}

.stats-section {
  background: linear-gradient(135deg, #0c2635 0%, #153848 100%);
}

.stats-section .section-container {
  padding: 3.4rem 2rem;
}

.big-stat {
  background: rgba(255, 255, 255, 0.08);
}

.about-section {
  background: linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
}

.about-container {
  gap: 4rem;
}

.about-visual {
  min-height: 460px;
}

.about-card-visual {
  min-height: 460px;
  padding: 1.25rem;
}

.av-bg {
  background: url('../assets/img/about-us.png') center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.av-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 34, 48, 0.08), rgba(10, 34, 48, 0.36));
}

.av-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.experience-badge {
  bottom: 1.25rem;
  width: 132px;
  height: 132px;
  border-radius: 8px;
  background: var(--secondary);
  box-shadow: 0 16px 34px rgba(217, 95, 32, 0.28);
}

.features-grid {
  gap: 0.85rem;
}

.feature-card {
  background: #ffffff;
}

.testimonials {
  background: #f5f7f8;
}

.contact-section {
  background: #ffffff;
}

.contact-box {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 107, 127, 0.08), rgba(217, 95, 32, 0.08)),
    #f6f8f9;
}

.contact-method:hover {
  transform: translateX(4px);
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f7 100%);
}

footer {
  background: #081923;
}

.whatsapp-btn,
.scroll-top-btn {
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.25rem 3.5rem;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(7, 20, 29, 0.92) 0%, rgba(10, 34, 48, 0.84) 100%),
      url('../assets/img/about-us.png');
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-container {
    width: 100%;
    max-width: 100%;
  }

  .section-header h2,
  .about-text-content h2 {
    font-size: clamp(1.6rem, 5vw, 2.25rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .about-visual,
  .about-card-visual {
    width: 100%;
    min-height: 420px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  /* Stats row - 2 columns on tablet */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .big-stat {
    padding: 1.25rem;
  }

  .big-stat-num {
    font-size: 2.5rem;
  }

  /* About CTA stacking */
  .about-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-cta .primary-btn,
  .about-cta .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Contact box */
  .contact-box {
    padding: 1.5rem;
  }

  .contact-left h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  /* ---- Global ---- */
  main,
  header,
  footer,
  section,
  .section-container,
  .hero-content,
  .hero-text,
  .hero-stats,
  .quote-container,
  .contact-box,
  .faq-grid {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ---- Header ---- */
  .header-inner {
    width: 100%;
    position: relative;
    padding: 0.7rem 0.75rem;
    padding-right: 3.75rem;
    gap: 0.75rem;
  }

  .logo {
    gap: 0.45rem;
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-img {
    width: 48px;
    flex-shrink: 0;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .logo-sub {
    display: none;
  }

  .header-actions {
    gap: 0.35rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .call-btn {
    display: none;
  }

  .hamburger {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0.55rem;
    flex: 0 0 40px;
    background: var(--primary);
    border-radius: 8px;
    z-index: 1200;
  }

  .hamburger span {
    background: #ffffff;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 3.5rem 0.85rem 2.5rem;
  }

  .hero-text {
    min-width: 0;
  }

  .hero-text h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    word-break: break-word;
  }

  .hero-text > p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0.75rem;
    max-width: 100%;
  }

  .hero-stats .stat-item {
    padding: 0.5rem;
  }

  .hero-stats .stat-item:last-child {
    grid-column: span 2;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .trust-item {
    font-size: 0.85rem;
    padding: 0.45rem 0.6rem;
  }

  .quote-container {
    padding: 1.25rem;
    max-width: 100%;
  }

  /* ---- Sections ---- */
  .section-container {
    padding: 2.75rem 0.85rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .about-text-content h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .section-header p {
    font-size: 0.92rem;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
  }

  /* ---- Insurance Cards ---- */
  .insurance-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .ins-card {
    padding: 1.5rem 1.25rem;
  }

  /* ---- Partners Grid ---- */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .partner-card {
    min-height: 72px;
    padding: 1rem 1.25rem;
  }

  .partner-logo {
    font-size: 0.92rem;
  }

  /* ---- Stats Section ---- */
  .stats-section .section-container {
    padding: 2.5rem 0.85rem;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .big-stat {
    padding: 1rem;
  }

  .big-stat-num {
    font-size: 2rem;
  }

  .big-stat-plus {
    font-size: 1.4rem;
  }

  .big-stat-label {
    font-size: 0.78rem;
  }

  /* ---- About Section ---- */
  .about-container {
    gap: 2rem;
  }

  .about-visual,
  .about-card-visual {
    min-height: 320px;
    width: 100%;
  }

  .about-text-content > p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .feature-card {
    padding: 0.9rem;
  }

  .about-cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .about-cta .primary-btn,
  .about-cta .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }

  .experience-badge .text {
    font-size: 0.72rem;
  }

  .section-subtitle::after {
    display: none;
  }

  /* ---- Testimonials ---- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-card::before {
    font-size: 3.5rem;
    top: 0.5rem;
    right: 1rem;
  }

  .testimonial-card > p {
    font-size: 0.9rem;
  }

  /* ---- Contact Section ---- */
  .contact-box {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .contact-left h2 {
    font-size: 1.5rem;
  }

  .contact-left > p {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }

  .contact-right {
    flex: unset;
    width: 100%;
  }

  .contact-cta-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-cta-card h3 {
    font-size: 1.2rem;
  }

  .contact-method {
    padding: 0.9rem 1rem;
  }

  .contact-method strong {
    font-size: 0.85rem;
  }

  .contact-method span {
    font-size: 0.8rem;
    word-break: break-all;
  }

  /* ---- FAQ Section ---- */
  .faq-grid {
    gap: 0.6rem;
  }

  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
    gap: 0.75rem;
  }

  .faq-question span {
    flex: 1;
    min-width: 0;
  }

  .faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* ---- Footer ---- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-logo {
    gap: 0.5rem;
  }

  .footer-logo .logo-img {
    width: 44px;
  }

  .footer-logo span {
    font-size: 1.05rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h4,
  .footer-contact-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }

  .footer-links a,
  .footer-contact-info a,
  .footer-contact-info p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.78rem;
    padding: 1rem 0.85rem;
    gap: 0.35rem;
  }

  /* ---- Promo Banner ---- */
  .promo-inner {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .promo-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .promo-text strong {
    font-size: 0.92rem;
  }

  /* ---- Floating Buttons ---- */
  .whatsapp-btn {
    bottom: 20px !important;
    right: 14px !important;
    width: 54px;
    height: 54px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .wa-tooltip {
    display: none;
  }

  .scroll-top-btn {
    bottom: 156px !important;
    right: 18px !important;
    width: 40px;
    height: 40px;
  }

  .scroll-top-btn svg {
    width: 18px;
    height: 18px;
  }

  /* ---- Ad Banners ---- */
  .ad-primary .ad-content,
  .ad-secondary .ad-content,
  .ad-health .ad-content {
    padding: 1.5rem 1.25rem;
  }

  .ad-text h3 {
    font-size: 1.15rem;
  }

  .ad-text p {
    font-size: 0.88rem;
  }

  /* ---- Mobile Nav Improvements ---- */
  .mobile-nav a {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }

  .mobile-nav li {
    margin: 0.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
