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

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

:root {
  --primary: #0284c7; 
  --primary-hover: #0369a1;
  --secondary: #0f766e; 
  --secondary-hover: #115e59;
  --bg-light: #f8fafc; 
  --surface: #ffffff; 
  --text-dark: #0f172a; 
  --text-muted: #475569; 
  --border: #e2e8f0; 
  --accent-blue: #e0f2fe;
  --accent-teal: #ccfbf1; 
  --danger: #ef4444;
  --success: #10b981;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

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

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  background-color: var(--accent-blue);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--surface);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--surface);
  color: var(--surface);
}

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

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- STICKY NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition-smooth);
  width: 100%;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

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

.nav-menu {
  
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

.nav-link.active {
  color: var(--primary);
}

.menu-toggle-checkbox {
  display: none;
}

.menu-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001; 
  position: relative;
}

.menu-toggle-label span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--surface);
  padding: 6rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(2, 132, 199, 0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: pulse-border 3s infinite;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--surface);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 600px;
}

.hero-trust-badges {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
}

.trust-badge-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--surface);
}

.trust-badge-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.policy-card-mock {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.9) 0%, rgba(15, 118, 110, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3), 0 0 50px rgba(2, 132, 199, 0.15);
  color: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
  animation: card-floating 6s ease-in-out infinite;
}

.policy-card-mock:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.4), 0 0 60px rgba(2, 132, 199, 0.25);
}

.card-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.card-mock-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 4px;
}

.card-mock-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
}

.card-mock-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  font-weight: 500;
}

.card-mock-holder-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-mock-holder-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}

.card-mock-holder-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-mock-status-badge {
  background-color: rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes card-floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* --- TRUSTED PARTNERS --- */
.partners {
  padding: 2.5rem 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

.partners-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.partners-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #cbd5e1;
  user-select: none;
  transition: var(--transition-smooth);
}

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

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--surface);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.experience-badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.about-content-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-bullet-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-bullet-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* --- PROTECTION PLANS --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(2, 132, 199, 0.2);
}

.plan-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.plan-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--surface);
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

.plan-period {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.plan-features-list {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.plan-feature-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.plan-feature-line i {
  color: var(--primary);
  font-style: normal;
  font-weight: bold;
}

.plan-feature-line.disabled {
  color: #cbd5e1;
  text-decoration: line-through;
}

.plan-feature-line.disabled i {
  color: #cbd5e1;
}

.plan-card .btn {
  width: 100%;
}

/* --- COVERAGE CATEGORIES --- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.2);
}

.coverage-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--accent-teal);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.coverage-card:hover .coverage-icon {
  background-color: var(--secondary);
  color: var(--surface);
}

.coverage-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.coverage-card-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.coverage-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.coverage-link:hover {
  color: var(--secondary-hover);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.why-feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-blue);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.why-image-wrap {
  position: relative;
}

.why-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.why-overlay-stat {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
}

.why-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

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

.benefit-item {
  text-align: left;
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(2, 132, 199, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stats-bar {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--surface);
  padding: 5rem 0;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--surface);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

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

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars-rating {
  color: #fbbf24;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

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

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

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--font-body);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-color: var(--border);
}

/* --- BLOG PREVIEW CARDS --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(2, 132, 199, 0.2);
}

.blog-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--surface);
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.blog-title:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-readmore {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-readmore:hover {
  color: var(--primary-hover);
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.form-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

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

.form-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.info-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-blue);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-item-detail {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-placeholder {
  height: 250px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.map-background-unsplash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/13.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: grayscale(1);
}

.map-card-info {
  position: relative;
  z-index: 2;
  background-color: var(--surface);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.map-pin {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.newsletter-section {
  padding: 5rem 0;
  background-color: var(--accent-blue);
  border-radius: var(--radius-lg);
  margin: 6rem auto 4rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--surface);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 4rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 1.25rem;
}

.footer-brand-logo span {
  color: var(--primary);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  transition: var(--transition-smooth);
  font-weight: bold;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--surface);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.footer-link {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-link:hover {
  color: var(--surface);
}

.success-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  padding: 2rem;
}

.success-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 550px;
  box-shadow: var(--shadow-premium);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--accent-teal);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  font-weight: bold;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.success-msg {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* --- NEW TIMELINE COMPONENT --- */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: calc(-3rem - 1px);
  transform: translateX(-50%);
  width: 60px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--surface);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.timeline-content-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-content-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- NEW COMPARISON TABLE COMPONENT --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background-color: var(--surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background-color: var(--bg-light);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background-color: rgba(2, 132, 199, 0.02);
}

.comparison-table td i {
  margin-right: 0.25rem;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
  
  .about-grid,
  .why-grid {
    gap: 3rem;
  }
  
  .about-image,
  .why-image {
    height: 400px;
  }
  
  .benefits-grid,
  .testimonials-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-title-wrap {
    margin-bottom: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .menu-toggle-label {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background-color: var(--surface);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 2rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-link{
    font-size: 1.15rem;
    width: 100%;
    text-align: center;
  }

  .nav-menu .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .menu-toggle-checkbox:checked ~ .nav-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    padding: 4.5rem 0 3.5rem;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-trust-badges {
    margin-top: 2.5rem;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
  }
  
  .trust-badge-value {
    font-size: 1.5rem;
  }

  .about-grid,
  .why-grid,
  .contact-section-grid,
  .newsletter-box,
  .footer-grid,
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image-wrap,
  .why-image-wrap {
    order: -1; 
  }
  
  .about-image,
  .why-image {
    height: 350px;
  }
  
  .why-overlay-stat {
    left: 20px;
    top: -20px;
  }
  
  .about-experience-badge {
    right: 20px;
    bottom: -20px;
  }
  
  .form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .newsletter-section {
    margin: 4rem auto 2rem;
  }
  
  .footer {
    padding: 4rem 0 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  
  .hero-title {
    font-size: 2.15rem;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .why-overlay-stat {
    position: relative;
    left: 0;
    top: 15px;
    box-shadow: var(--shadow-sm);
  }
  
  .about-experience-badge {
    position: relative;
    right: 0;
    bottom: -15px;
  }
  
  .timeline-wrapper {
    padding-left: 2rem;
  }
  
  .timeline-badge {
    left: calc(-2rem - 1px);
    width: 50px;
    height: 28px;
    font-size: 0.75rem;
  }
}
