/* ============================================
   Living Proof Insurance — Global Styles
   ============================================ */

/* === Font Faces === */
@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Variable.woff2') format('woff2'),
       url('./fonts/Satoshi-Variable.woff') format('woff');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

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

/* === CSS Variables === */
:root {
  --navy: #110A45;
  --btn-blue: #046bd2;
  --text-dark: #1e293b;
  --text-body: #334155;
  --white: #FFFFFF;
  --light-bg: #F0F5FA;
  --light-gray: #F6F6F6;
  --font-heading: 'Satoshi', 'Outfit', sans-serif;
  --font-body: 'Outfit', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --header-height: 90px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

/* === Container === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #1a1260;
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--btn-blue);
  color: var(--white);
}

.btn-blue:hover {
  background: #0357ad;
  transform: translateY(-1px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* === Section Label === */
.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--btn-blue);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 700px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: var(--header-height);
}

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

.header-logo img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

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

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--navy);
}

/* Mobile Sub-Links */
.mobile-sub-links {
  display: none;
  flex-direction: column;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .mobile-sub-links {
    display: flex;
  }
}

.mobile-sub-links a {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--text-body) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.mobile-sub-links a:last-child {
  border-bottom: 1px solid #eee !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 40px 20px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav .btn {
  margin-top: 24px;
  text-align: center;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  padding: 60px 0 80px;
}

.slide .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.slide-content {
  flex: 1;
  min-width: 0;
}

.slide-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 16px;
  display: block;
}

.slide-heading {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.slide-image-frame {
  border: 3px solid var(--navy);
  border-radius: 16px;
  padding: 16px;
  display: inline-block;
}

.slide-image-frame img {
  max-height: 380px;
  object-fit: contain;
}

.slide-image img {
  max-height: 400px;
  object-fit: contain;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--navy);
  color: var(--white);
}

.slider-arrow:hover svg {
  stroke: var(--white);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 40px;
  background: var(--light-bg);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c4c4c4;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--navy);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
  padding: 80px 0;
  text-align: center;
  background: var(--light-bg);
}

.welcome-section .section-heading {
  max-width: 600px;
  margin: 0 auto 20px;
}

.welcome-section .section-text {
  max-width: 800px;
  margin: 0 auto 32px;
}

/* ============================================
   OPTIONS SECTION
   ============================================ */
.options-section {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.options-section .section-heading {
  max-width: 600px;
  margin: 0 auto 20px;
}

.options-section .section-text {
  max-width: 850px;
  margin: 0 auto;
}

/* ============================================
   SERVICE CARDS CAROUSEL
   ============================================ */
.service-cards-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.service-cards-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

.service-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 280px;
  max-width: 280px;
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   STATS/NUMBER SECTION
   ============================================ */
.stats-section {
  padding: 100px 0;
  background: url('./images/number-bg.webp') center/cover no-repeat;
  position: relative;
  color: var(--white);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 69, 0.88);
}

.stats-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stats-big {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.stats-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.stats-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.stats-section p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   TABS SECTION
   ============================================ */
.tabs-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.tabs-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #ddd;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.testimonials-section .section-heading {
  margin-bottom: 40px;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-icon {
  width: 48px;
  margin: 0 auto 24px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--navy);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.why-section .section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.why-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================
   CARRIER LOGOS
   ============================================ */
.carrier-section {
  padding: 60px 0 80px;
  background: var(--white);
  text-align: center;
}

.carrier-section .section-heading {
  margin-bottom: 8px;
}

.carrier-section .section-text {
  margin: 0 auto 40px;
}

.carrier-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.carrier-logos img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: var(--transition);
}

.carrier-logos img:hover {
  filter: grayscale(0%);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: 80px 0 120px;
  background: var(--light-bg);
}

.faq-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

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

.faq-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

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

.faq-content .section-heading {
  margin-bottom: 32px;
}

.accordion-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
  text-align: left;
  gap: 16px;
}

.accordion-header:hover {
  color: var(--navy);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ============================================
   CTA / FREE CONSULTATION SECTION
   ============================================ */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-section {
  background: var(--navy);
  position: relative;
  padding: 80px 0 60px;
  overflow: visible;
}

.cta-logo-wrapper {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.cta-logo-spin {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-logo-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

.cta-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-top: 40px;
}

.cta-left {
  flex: 1;
}

.cta-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: block;
}

.cta-heading {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  font-style: italic;
}

.cta-right {
  flex: 1;
}

.cta-right p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.cta-contact-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.25);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-attribution a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-attribution a:hover {
  color: var(--white);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--navy);
  padding: 60px 0 80px;
  color: var(--white);
}

.about-hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-hero-content {
  flex: 1;
}

.about-hero-content .section-label {
  color: rgba(255,255,255,0.7);
}

.about-hero-content h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
}

.about-hero-image {
  flex: 1;
}

.about-hero-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-intro {
  padding: 80px 0;
}

.about-intro .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-intro-content {
  flex: 1;
}

.about-intro-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-intro-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.core-values {
  padding: 80px 0;
  background: url('./images/number-bg.webp') center/cover no-repeat;
  position: relative;
  color: var(--white);
}

.core-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 69, 0.92);
}

.core-values .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.core-values h2 {
  color: var(--white);
  margin-bottom: 48px;
  font-size: 36px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
}

.value-item-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}

.value-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.leadership-section {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}

.leadership-section .section-heading {
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.team-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), #2a1f6e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-avatar svg {
  width: 80px;
  height: 80px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
}

.team-card-info {
  padding: 24px;
}

.team-card-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 14px;
  color: var(--text-body);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  background: url('./images/services-img-2.webp') center/cover no-repeat;
  position: relative;
  padding: 100px 0 120px;
  color: var(--white);
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 69, 0.85);
}

.services-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-hero-content {
  max-width: 600px;
}

.services-hero-content .section-label {
  color: rgba(255,255,255,0.7);
}

.services-hero-content h1 {
  font-size: 48px;
  color: var(--white);
}

.services-hero-badge {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.services-hero-badge img {
  width: 100%;
  border-radius: 50%;
}

.services-content {
  padding: 80px 0;
}

.services-layout {
  display: flex;
  gap: 60px;
}

.services-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.services-sidebar-nav {
  position: sticky;
  top: 100px;
}

.services-sidebar-nav a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.services-sidebar-nav a:hover,
.services-sidebar-nav a.active {
  color: var(--navy);
  border-left-color: var(--navy);
  background: var(--light-bg);
}

.services-main {
  flex: 1;
  min-width: 0;
}

.service-block {
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-block p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}

.service-block ul {
  list-style: disc;
  padding-left: 24px;
}

.service-block li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 4px;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
  padding: 60px 0 80px;
  background: var(--white);
}

.careers-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.careers-hero-content {
  flex: 1;
}

.careers-hero-content .section-label {
  color: var(--btn-blue);
}

.careers-hero-content h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.careers-hero-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.careers-hero-content .see-openings {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.careers-hero-images {
  flex: 1;
}

.careers-hero-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.benefits-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.benefits-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

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

.benefit-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-body);
}

.jobs-section {
  padding: 80px 0;
  background: var(--white);
}

.jobs-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.job-listing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.job-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.job-info p {
  font-size: 14px;
  color: var(--text-body);
}

.job-listing .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--navy);
  padding: 60px 0 120px;
}

.contact-wrapper {
  position: relative;
  margin-top: -60px;
  padding-bottom: 60px;
}

.contact-wrapper .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-card {
  flex: 1.3;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-height: 960px;
}

.contact-form-card h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form-card .form-note {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-form-card .form-note a {
  color: var(--btn-blue);
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17,10,69,0.1);
}

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

.contact-address {
  flex: 0.8;
  padding-top: 20px;
}

.contact-address h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.address-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.address-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.address-item p {
  font-size: 14px;
  color: var(--text-body);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .slide-heading {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .services-sidebar {
    display: none;
  }

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

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-solution-section {
  padding: 80px 0;
  background: var(--white);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ps-block {
  padding: 48px;
  border-radius: 16px;
}

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

.ps-solution {
  background: var(--navy);
}

.ps-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ps-problem .ps-label {
  color: var(--btn-blue);
}

.ps-solution .ps-label {
  color: rgba(255,255,255,0.5);
}

.ps-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.ps-problem h2 {
  color: var(--navy);
}

.ps-solution h2 {
  color: var(--white);
}

.ps-block p {
  font-size: 16px;
  line-height: 1.75;
}

.ps-problem p {
  color: var(--text-body);
}

.ps-solution p {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   IUL PAGE
   ============================================ */
.iul-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
}

.iul-hero .section-label {
  color: rgba(255,255,255,0.6);
}

.iul-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px;
}

.iul-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.iul-hero .btn-navy {
  background: var(--white);
  color: var(--navy);
}

.iul-hero .btn-navy:hover {
  background: var(--light-bg);
}

.iul-block {
  padding: 72px 0;
}

.iul-block-inner {
  max-width: 720px;
  margin: 0 auto;
}

.iul-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.iul-block p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
}

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

.iul-block-dark {
  background: var(--navy);
}

.iul-block-dark h2 {
  color: var(--white);
}

.iul-block-dark p {
  color: rgba(255,255,255,0.8);
}

.iul-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iul-list li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.iul-list li:last-child {
  border-bottom: none;
}

.iul-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--btn-blue);
  border-radius: 50%;
}

.iul-block-dark .iul-list li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}

.iul-block-dark .iul-list li::before {
  background: var(--white);
}

.iul-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.iul-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.iul-cta p {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 32px;
}

.iul-disclaimer {
  padding: 32px 0;
  background: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.iul-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
  opacity: 0.7;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

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

  .header-phone {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .slide .container {
    flex-direction: column;
    text-align: center;
  }

  .slide-heading {
    font-size: 32px;
  }

  .slide-image {
    order: -1;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .stats-big {
    font-size: 42px;
  }

  .faq-wrapper {
    flex-direction: column;
  }

  .about-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-intro .container {
    flex-direction: column;
  }

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

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

  .services-hero-content h1 {
    font-size: 36px;
  }

  .services-hero-badge {
    display: none;
  }

  .careers-hero .container {
    flex-direction: column;
  }

  .careers-hero-content h1 {
    font-size: 36px;
  }

  .contact-wrapper .container {
    flex-direction: column;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-heading {
    font-size: 30px;
  }

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

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

  .job-listing {
    flex-direction: column;
    align-items: flex-start;
  }

  .carrier-logos {
    gap: 24px;
  }

  .carrier-logos img {
    height: 56px;
  }

  .cta-grid {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .cta-heading {
    font-size: 36px;
  }

  .cta-contact-row {
    justify-content: center;
  }

  .cta-logo-spin {
    width: 120px;
    height: 120px;
  }

  .cta-logo-wrapper {
    top: -60px;
  }
}

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

  .slide-heading {
    font-size: 28px;
  }

  .section-heading {
    font-size: 26px;
  }

  .tabs-nav {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ps-block {
    padding: 32px;
  }
}
