/* ============================================================
   VIJAYA INSURANCE LINKS — Global Stylesheet
   shared/style.css
   ============================================================ */

/* ---------- Google Fonts are imported in each HTML file ---------- */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #1B2D5E;
  --navy-dark:   #12204A;
  --navy-light:  #243B7A;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --white:       #FFFFFF;
  --gray-bg:     #F7F8FC;
  --text-dark:   #1A1A2E;
  --text-muted:  #5A6278;
  --whatsapp:    #25D366;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 16px rgba(27,45,94,0.08);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   14px;
  --transition:  0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

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

.section-label {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 10px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.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);
}

/* Stagger delays for grid children */
.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; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.btn-primary:hover {
  background: #b8952f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,45,94,0.35);
}

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

.btn-whatsapp:hover {
  background: #1dba57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

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

.nav-link:hover {
  color: var(--gold);
}

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

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

.header-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: #b8952f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

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

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .site-nav.nav-open {
    max-height: 400px;
    padding: 16px 20px 24px;
  }

  .nav-link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #f0f2f8;
    font-size: 16px;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  .header-cta {
    display: none;
  }
}

/* ============================================================
   HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.025) 40px,
    rgba(255,255,255,0.025) 80px
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero-content .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-style: italic;
}

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

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

.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: all var(--transition);
  color: var(--white);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .fc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-item .fc-val {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.footer-contact-item .fc-val a {
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}

.footer-contact-item .fc-val a:hover {
  color: var(--gold-light);
}

.footer-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: all var(--transition);
  width: fit-content;
}

.footer-wa-btn:hover {
  background: #1dba57;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float .wa-tooltip {
  background: var(--text-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-dark);
  border-right: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  position: relative;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.wa-btn-circle:hover {
  transform: scale(1.08);
}

.wa-btn-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  position: relative;
  z-index: 2;
}

.wa-btn-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  animation: wa-pulse 2s infinite;
  z-index: 1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.home-hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  /* overflow must stay visible so the trust-strip (bottom: -30px) isn't clipped */
  overflow: visible;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 80px
  );
  pointer-events: none;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 0 120px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Trust Badges Strip */
.trust-strip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  z-index: 10;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 0 24px;
}

.trust-badge:not(:last-child) {
  border-right: 1px solid #dde2ef;
}

/* ============================================================
   HOME — SERVICES OVERVIEW
   ============================================================ */
.services-section {
  background: var(--gray-bg);
  padding: 120px 0 80px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(27,45,94,0.14);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E8EDFF 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(27,45,94,0.08);
}

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

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
  flex: 1;
}

.service-card .learn-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 16px;
  transition: gap var(--transition);
}

.service-card .learn-more:hover {
  color: #b8952f;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
}

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

.feature-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  stroke: var(--navy);
}

.feature-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.feature-col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--gray-bg);
  padding: 80px 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,45,94,0.12);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.75;
}

.testimonial-client {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-client strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.testimonial-client span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 18px;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-story-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(27,45,94,0.16);
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(27,45,94,0.25) 100%
  );
  pointer-events: none;
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-values {
  background: var(--gray-bg);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border-top: 4px solid var(--gold);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,45,94,0.12);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-mission {
  background: var(--white);
  padding: 80px 0;
}

.mission-card {
  max-width: 740px;
  margin: 0 auto;
  border-left: 4px solid var(--gold);
  padding: 32px 40px;
  background: var(--gray-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.mission-card p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE — DETAIL SECTIONS
   ============================================================ */
.services-intro {
  background: var(--white);
  padding: 64px 0;
  text-align: center;
}

.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background: var(--gray-bg);
}

.service-detail:nth-child(odd) {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-visual {
  border-radius: var(--radius-md);
  min-height: 340px;
  position: relative;
  overflow: hidden;
  background: var(--navy); /* fallback while image loads */
}

.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.service-detail-grid:hover .service-visual img {
  transform: scale(1.05);
}

.service-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(18, 32, 74, 0.82) 0%,
    rgba(27, 45, 94, 0.60) 55%,
    rgba(201, 168, 76, 0.18) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-visual-overlay .svc-icon {
  width: 84px;
  height: 84px;
  stroke: rgba(255,255,255,0.95);
  color: rgba(255,255,255,0.95);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}

.service-visual .svc-num-badge {
  font-size: 90px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(255,255,255,0.10);
  position: absolute;
  bottom: -12px;
  right: 18px;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.service-detail-content .svc-num {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-benefits {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
}

.benefit-check {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
  padding: 80px 0;
  background: var(--gray-bg);
}

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

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

.contact-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-card .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #e03e3e;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #e0e4ef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: #b4b9cc;
}

.form-control:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A6278' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.contact-info-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-side .info-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #e8ecf5;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.contact-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
}

.contact-card-text .cc-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 3px;
}

.contact-card-text .cc-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact-card-text .cc-val a {
  color: var(--navy);
  transition: color var(--transition);
}

.contact-card-text .cc-val a:hover {
  color: var(--gold);
}

.contact-card-text .cc-val a.email-link {
  color: var(--gold);
}

.map-placeholder {
  background: #e8ecf5;
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.map-placeholder p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.map-placeholder small {
  font-size: 12px;
  color: #a0a8be;
  max-width: 200px;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   SECTION HEADER UTILITY
   ============================================================ */
.section-header {
  margin-bottom: 16px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section-title {
    font-size: 34px;
  }

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

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

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

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

  .hero-h1 {
    font-size: 46px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section-pad, .services-section, .why-section,
  .testimonials-section, .about-story,
  .about-values, .about-mission, .contact-main,
  .services-intro {
    padding: 48px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

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

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

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

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

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-inner {
    padding: 56px 0 32px;
  }

  /* Switch trust strip to in-flow on mobile so it no longer
     hangs below the hero and hides the services section heading */
  .home-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 28px;
  }

  .trust-strip {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: calc(100% - 40px);
    margin: 0 auto;
    flex-direction: column;
    border-radius: 14px;
    padding: 4px 20px;
    gap: 0;
  }

  .trust-badge {
    padding: 10px 0;
    border-right: none !important;
    border-bottom: 1px solid #dde2ef;
    width: 100%;
    justify-content: center;
  }

  .trust-badge:last-child {
    border-bottom: none;
  }

  /* Services section: normal padding — no longer needs to clear an overlapping strip */
  .services-section {
    padding-top: 48px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .cta-banner p {
    font-size: 16px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

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

  .stats-grid-2x2 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

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

  .mission-card {
    padding: 24px 20px;
  }

  .mission-card p {
    font-size: 18px;
  }

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

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

  .service-detail-content h2 {
    font-size: 26px;
  }

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
    text-align: center;
  }

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

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

  .footer-social {
    justify-content: flex-start;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero-content h1 {
    font-size: 26px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .wa-btn-circle {
    width: 50px;
    height: 50px;
  }

  .wa-btn-circle svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   ACCESSIBILITY — FOCUS STYLES
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   PRINT MEDIA
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .cta-banner {
    display: none;
  }
}
