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

:root {
  --navy: #0c1526;
  --navy-light: #111d35;
  --navy-mid: #162544;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-glow: #2563eb;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --rose: #f472b6;
  --rose-light: #fce7f3;
  --white: #fdfafe;
  --gray-100: #f8f5f9;
  --gray-200: #e8e2ec;
  --gray-300: #cbd0d9;
  --gray-400: #94a0b2;
  --gray-500: #64708a;
  --gold: #f59e0b;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 30px rgba(59, 130, 246, 0.1);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overscroll-behavior: none;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(12, 21, 38, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(12, 21, 38, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  border-radius: 8px;
}

.nav-logo span {
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  color: var(--gray-400);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--blue);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}

.hero-stat:last-child {
  border: none;
}

.hero-stat .label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.hero-stat .value {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-stat .value.highlight {
  color: var(--emerald);
}

/* ===== SECTION COMMONS ===== */
section {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 32px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  color: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .heritage-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.heritage-badge .number {
  font-family: 'Outfit';
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.heritage-badge .text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.about-feature .icon {
  font-size: 1.2rem;
}

.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.services .section-label {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.services .section-subtitle {
  color: var(--gray-400);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  padding: 60px 0;
  position: relative;
}

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

.stat-item .stat-number {
  font-family: 'Outfit';
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.stat-item .stat-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--gray-100);
  padding: 40px 0;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partners-track img {
  height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partners-track img:hover {
  opacity: 1;
  filter: none;
}

/* ===== EMERGENCY ===== */
.emergency {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.emergency h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.emergency p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.emergency .btn-emergency {
  background: var(--white);
  color: #dc2626;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.emergency .btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--gray-400);
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq {
  background: var(--gray-100);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter';
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--blue);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  color: var(--white);
}

.contact .section-subtitle {
  color: var(--gray-400);
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter';
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-500);
}

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

.contact-form select option {
  background: var(--navy);
  color: var(--white);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.contact-info-item a {
  color: var(--blue-light);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0 24px;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links h4,
.footer-legal h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.float-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

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

.float-btn:hover {
  transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

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

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

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

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

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

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(12, 21, 38, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--glass-border);
  }

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

  .hamburger {
    display: flex;
  }

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

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

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

  section {
    padding: 40px 0;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== FEMININE ACCENTS ===== */
.hero-badge .dot {
  background: var(--rose);
}

.heritage-badge {
  background: linear-gradient(135deg, var(--blue), var(--rose)) !important;
}

.about-feature {
  border-left: 3px solid var(--rose-light);
}

.about-feature:hover {
  background: var(--rose-light);
}

.service-card::before {
  background: linear-gradient(90deg, var(--blue), var(--rose));
}

.testimonial-card {
  border-top: 3px solid transparent;
}

.testimonial-card:hover {
  border-top-color: var(--rose);
}

.section-title {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .section-title,
.contact .section-title,
.sa-facts .section-title {
  background: none;
  -webkit-text-fill-color: inherit;
}

.float-btn.phone {
  background: var(--rose);
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.stats {
  background: linear-gradient(135deg, var(--blue) 0%, var(--rose) 100%);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--rose));
}

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

/* ===== SA INSURANCE FACTS ===== */
.sa-facts {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sa-facts::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
}

.sa-facts::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.sa-facts .section-label {
  background: rgba(244, 114, 182, 0.12);
  border-color: rgba(244, 114, 182, 0.2);
  color: var(--rose);
}

.sa-facts .section-subtitle {
  color: var(--gray-400);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.fact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--rose));
}

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

.fact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.fact-number {
  font-family: 'Outfit';
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rose);
  margin-bottom: 8px;
}

.fact-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fact-card p strong {
  color: var(--white);
}

/* ===== SCROLLING TICKER ===== */
.ticker {
  background: linear-gradient(90deg, var(--rose), var(--blue), var(--rose));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 25s linear infinite;
}

.ticker-track span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ===== FLOATING PARTICLES ===== */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  margin-top: -2px;
  line-height: 0;
  background: var(--navy);
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ===== PROTECTION SHIELD ===== */
.shield-widget {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}

.shield-container {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}

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

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed;
  animation: spinSlow linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(59, 130, 246, 0.15);
  animation-duration: 20s;
}

.ring-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: rgba(244, 114, 182, 0.2);
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 12s;
  border-style: dotted;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.shield-core {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--rose));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.25), 0 0 80px rgba(244, 114, 182, 0.15);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.25), 0 0 80px rgba(244, 114, 182, 0.15);
  }

  50% {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.35), 0 0 100px rgba(244, 114, 182, 0.25);
  }
}

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

.shield-text {
  color: var(--white);
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}

.shield-labels {
  position: absolute;
  inset: 0;
}

.shield-label {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
  transition: var(--transition);
}

.shield-label:hover {
  transform: scale(1.1);
  border-color: var(--rose);
}

.sl-1 {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.sl-2 {
  top: 18%;
  right: -55px;
}

.sl-3 {
  bottom: 18%;
  right: -65px;
}

.sl-4 {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.sl-5 {
  bottom: 18%;
  left: -55px;
}

.sl-6 {
  top: 18%;
  left: -65px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media(max-width:1024px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shield-container {
    width: 280px;
    height: 280px;
  }
}

@media(max-width:768px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .shield-container {
    width: 240px;
    height: 240px;
  }

  .shield-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .sl-2,
  .sl-3 {
    right: -10px;
  }

  .sl-5,
  .sl-6 {
    left: -10px;
  }
}