/* =========================================================
   BASE / THEME - LIGHT VERSION
   ========================================================= */
:root{
  --bg:#ffffff;
  --bg-grad: radial-gradient(1200px 700px at 80% -10%, #e8f1ff 0%, transparent 60%);
  --glass-bg: rgba(255,255,255,0.85);
  --glass-bd: rgba(10,42,95,0.12);
  --glass-shadow: 0 10px 26px rgba(0,0,0,.08);
  --text-soft:#1a1a1a;
  --brand-blue: #0a2a5f;
  --accent: #0080cc;
  --accent-blue: #0080cc;
  --accent-blue-2: #0099e6;
  --text-light: #1a1a1a;
  --text-muted: #4a5568;
  --border-light: rgba(10,42,95,0.1);
  --transition: 360ms cubic-bezier(.4,.0,.2,1);
}
body{
  background: var(--bg-grad), var(--bg);
  color: var(--text-light);
}

/* Utilities */
.full-bleed{ width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); }
.text-shadow-soft{ text-shadow:0 2px 18px rgba(0,0,0,.08); }
.py-6{ padding-top:4.5rem; padding-bottom:4.5rem; }

/* Glass card utility */
.glass-card{
  background: var(--glass-bg);
  border:1px solid var(--glass-bd);
  box-shadow: var(--glass-shadow);
  border-radius:14px;
}

/* =========================================================
   TYPOGRAPHY / FONTS
   ========================================================= */
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Apply site-wide font */
html, body {
  font-family: "Creato Display", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base copy */
p, li, label, input, textarea {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Headings scale and weight */
h1, .hero-title {
  font-family: "Creato Display", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
  color: var(--brand-blue);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight:700;
  margin-bottom:.6rem;
  color: var(--brand-blue);
}
h3 {
  font-size: 1.25rem;
  font-weight:700;
  margin-bottom:.4rem;
  color: var(--brand-blue);
}
h4, h5, h6 {
  font-weight:500;
  margin-bottom:.35rem;
  color: var(--text-light);
}

/* Utility tweaks for UI elements */
.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Small form text & captions */
small, .muted {
  color: var(--text-muted);
}

/* Adjust nav branding */
.navbar-brand {
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 1.05rem;
}

/* Make sure headings look crisp on smaller devices */
@media (max-width: 576px) {
  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .btn { font-size: .95rem; }
}

/* =========================================================
   NAVBAR - LIGHT VERSION
   ========================================================= */
#mainNav{
  font-family: 'Inter', sans-serif;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
#mainNav.nav-scrolled{
  background-color: rgba(255,255,255,0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}
#mainNav .navbar-brand img{
  height:52px;
  transition:height .3s ease;
}
#mainNav.nav-scrolled .navbar-brand img{
  height:44px;
}
#mainNav .navbar-brand{
  color: var(--brand-blue) !important;
  letter-spacing:.3px;
}

/* Navigation Links */
#mainNav .nav-link{
  color: var(--brand-blue) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
#mainNav .nav-link:hover{
  background: rgba(10,42,95,0.08);
  color: var(--accent) !important;
}
#mainNav .nav-link.active{
  background: rgba(10,42,95,0.12);
  font-weight: 600;
}

/* Phone Button in Nav */
.nav-phone-btn{
  color: var(--brand-blue) !important;
  font-size: 1.05rem;
  border: 1px solid rgba(10,42,95,0.3);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-phone-btn i{
  font-size: 1.25rem;
}
.nav-phone-btn:hover{
  background: rgba(10,42,95,0.08);
  border-color: rgba(10,42,95,0.5);
  color: var(--accent) !important;
}

/* Mobile Hamburger Menu - Modern Design */
.navbar-toggler {
  border: 2px solid var(--brand-blue) !important;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  background: rgba(10,42,95,0.05);
  transition: all 0.3s ease;
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:hover {
  background: rgba(10,42,95,0.12);
  border-color: var(--accent-blue) !important;
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0,128,204,0.15);
  outline: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  transform-origin: top left;
}

.navbar-toggler-icon::after {
  transform-origin: bottom left;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(2px, -2px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(2px, 2px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
  transform: scale(0);
}

/* Create the middle line */
.navbar-toggler-icon span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
  #mainNav .nav-link{
    margin: 0.25rem 0;
  }
  .nav-phone-btn{
    margin-top: 0.5rem;
    justify-content: center;
  }
}

/* =========================================================
   HERO SECTION - LIGHT THEME (HOME PAGE)
   ========================================================= */
.hero-video-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  box-sizing: border-box;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform .4s ease-out, opacity .4s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,.35) 0%,
    rgba(255,255,255,.25) 40%,
    rgba(255,255,255,.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--brand-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  transition: transform .3s ease-out, opacity .3s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: .95;
  letter-spacing: .5px;
  color: var(--brand-blue);
}

/* Hero Button Styles */
.btn-primary-cta {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-2));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  border: 2px solid var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0,128,204,.15);
  cursor: pointer;
}
.btn-primary-cta:hover {
  background: var(--accent-blue-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,128,204,.3);
  color: #fff;
}

.btn-outline-cta {
  background: transparent;
  color: var(--brand-blue);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(10,42,95,.3);
  transition: all .3s ease;
  display: inline-block;
}
.btn-outline-cta:hover {
  background: rgba(10,42,95,.08);
  border-color: rgba(10,42,95,.5);
  transform: translateY(-3px);
  color: var(--accent);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 2;
  color: var(--brand-blue);
  opacity: .85;
  font-size: 1.6rem;
  transition: opacity .3s;
}
.scroll-indicator:hover {
  opacity: 1;
}

/* Hero Animations */
.fade-in-up{
  opacity:0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
.fade-in-up.delay-1{ animation-delay:.3s; }
.fade-in-up.delay-2{ animation-delay:.6s; }
.fade-in-up.delay-3{ animation-delay:.9s; }

@keyframes fadeInUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

@media (min-width: 992px){
  body.scrolled .hero-video {
    transform: scale(1.05);
    opacity:.7;
  }
  body.scrolled .hero-content {
    transform: translateY(-40px);
    opacity:.85;
  }
}

/* =========================================================
   WHY CHOOSE DELOAD - LIGHT THEME
   ========================================================= */
#why-deload .why-panel{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#why-deload .why-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .75rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:600;
  color: var(--brand-blue);
  background: rgba(10,42,95,.06);
  border:1px solid rgba(10,42,95,.12);
}
#why-deload .why-pill .dot{
  width:.45rem;
  height:.45rem;
  border-radius:999px;
  background: var(--accent-blue);
}

#why-deload .metrics-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
@media (max-width: 991.98px){
  #why-deload .metrics-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 575.98px){
  #why-deload .metrics-grid{
    grid-template-columns: 1fr;
  }
  #why-deload .why-panel{
    padding: 0;
  }
}

#why-deload .metric-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:18px;
  isolation:isolate;
  background: #f8f9fa;
  border: 1px solid rgba(10,42,95,.08);
  transition:transform .25s ease, box-shadow .25s ease;
  height: clamp(280px, 44vw, 380px);
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
}
#why-deload .metric-card:nth-child(1) { animation-delay: 0.1s; }
#why-deload .metric-card:nth-child(2) { animation-delay: 0.2s; }
#why-deload .metric-card:nth-child(3) { animation-delay: 0.3s; }
#why-deload .metric-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#why-deload .metric-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 128, 204, 0.2);
}

#why-deload .metric-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:contrast(1.05) saturate(1.05);
  transform:scale(1.02);
  transition: transform 0.4s ease;
}

#why-deload .metric-card:hover .metric-media {
  transform: scale(1.08);
}

#why-deload .metric-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:16px 16px 18px;
  z-index:2;
}
#why-deload .metric-overlay::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:58%;
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.65) 40%,
    rgba(255,255,255,.92) 100%);
  z-index:-1;
}

#why-deload .metric-number{
  font-size:clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight:800;
  color: var(--brand-blue);
  letter-spacing:.3px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
#why-deload .metric-card:hover .metric-number {
  transform: translateY(0);
}
#why-deload .metric-label{
  font-size:.95rem;
  color: var(--text-muted);
}
#why-deload .metric-badge{
  width:40px;
  height:40px;
  border-radius:999px;
  background: rgba(10,42,95,.1);
  display:grid;
  place-items:center;
  transition: transform 0.3s ease, background 0.3s ease;
}
#why-deload .metric-card:hover .metric-badge {
  transform: rotate(15deg) scale(1.1);
  background: var(--accent-blue);
}
#why-deload .metric-badge i{
  font-size:1rem;
  color: var(--accent-blue);
  transition: color 0.3s ease;
}
#why-deload .metric-card:hover .metric-badge i {
  color: #fff;
}

/* =========================================================
   TESTIMONIALS - LIGHT THEME
   ========================================================= */
#testimonials{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

#testimonials .t-head .t-eyebrow{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
#testimonials .t-head .t-accent{
  position: relative;
  color: var(--brand-blue);
}
#testimonials .t-head .t-accent::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:6px;
  background: radial-gradient(20px 6px at 50% 100%, rgba(0,128,204,.3), transparent 70%);
}

#testimonials .t-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(18px, 2vw, 28px);
}
@media (max-width:991.98px){
  #testimonials .t-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width:575.98px){
  #testimonials .t-grid{
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

#testimonials .t-card{
  background: rgba(10,42,95,.04);
  border:1px solid rgba(10,42,95,.12);
  border-radius: 18px;
  padding: 24px 24px 20px;
  color: var(--text-light);
  position: relative;
  min-height: 220px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
#testimonials .t-card:hover{
  transform: translateY(-6px);
  border-color: rgba(10,42,95,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
#testimonials .t-quote{
  position:absolute;
  top:10px;
  left:16px;
  font-size:40px;
  line-height:1;
  color:rgba(10,42,95,.08);
  font-weight:800;
  transform: translateY(-8px) rotate(180deg);
}
#testimonials .t-stars{
  position:absolute;
  top:14px;
  right:16px;
  color: var(--accent-blue);
  font-size:14px;
  letter-spacing:.08em;
}
#testimonials .t-stars .bi{
  margin-left:1px;
}
#testimonials .t-text{
  margin:22px 0 16px;
  font-size:1rem;
  line-height:1.6;
  color: var(--text-muted);
}
#testimonials .t-footer{
  display:flex;
  align-items:center;
  gap:12px;
}
#testimonials .t-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  object-position:center;
  border:1px solid rgba(10,42,95,.15);
  background:rgba(10,42,95,.05);
}
#testimonials .t-name{
  color: var(--brand-blue);
  font-weight:600;
}
#testimonials .t-role{
  display:block;
  color: var(--text-muted);
  font-size:.85rem;
}

/* =========================================================
   FAQ - LIGHT THEME
   ========================================================= */
#faq {
  background: transparent;
  color: var(--text-light);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#faq #faq-subtitle{
  color: var(--text-muted) !important;
  letter-spacing:.2px;
  line-height:1.6;
  margin-bottom: 2.8rem !important;
}

#faq header h2 {
  color: var(--brand-blue);
  font-weight:700;
  margin-bottom:.3rem;
}
#faq header p  {
  color: var(--text-muted);
  font-size:1.06rem;
  margin-bottom:2.8rem;
}

#faq .accordion{
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-border-color: rgba(10,42,95,.16);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-color: var(--text-light);
}

#faq .faq-island{
  max-width: 900px;
  margin-inline: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 767.98px) {
  #faq .faq-island {
    max-width: 500px;
  }
}

#faq .accordion-item{
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid rgba(10,42,95,.16);
  margin: 0 0 1.1rem 0;
  padding-bottom: .3rem;
}

#faq .accordion-button{
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.06rem;
  padding: 1.6rem 0;
  transition: color .2s ease;
}
#faq .accordion-button:focus{
  box-shadow:none;
}

#faq .accordion-button:not(.collapsed){
  color: var(--accent-blue);
}

#faq .accordion-button::after{
  background-image: none !important;
  content:"";
  width:10px;
  height:10px;
  margin-left:auto;
  border-right:2px solid var(--brand-blue);
  border-bottom:2px solid var(--brand-blue);
  transform: rotate(45deg);
  transition: transform .25s ease, border-color .25s ease;
}
#faq .accordion-button:not(.collapsed)::after{
  transform: rotate(-135deg);
  border-color: var(--accent-blue);
}

#faq .accordion-collapse{
  background: transparent !important;
  border:0 !important;
}
#faq .accordion-body{
  background: transparent !important;
  border: 0 !important;
  padding: .75rem 0 1.2rem 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

#faq .accordion-item + .accordion-item{
  margin-top: .2rem;
}

/* =========================================================
   CONTACT CTA - LIGHT THEME
   ========================================================= */
#contact-cta {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 26px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(10,42,95, 0.12);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
#contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 120% at 50% -10%,
    rgba(0, 128, 204, 0.03) 40%,
    transparent 85%
  );
  opacity: 0.8;
}
#contact-cta .cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #contact-cta .cta-wrap {
    grid-template-columns: 1fr;
  }
}
#contact-cta .cta-left {
  background: transparent;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--brand-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact-cta .cta-left h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}
#contact-cta .cta-left p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1rem;
}
#contact-cta .cta-form {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(10,42,95, 0.12);
  padding: 2.5rem;
}
#contact-cta .form-control,
#contact-cta textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10,42,95, 0.15);
  color: var(--text-light);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#contact-cta .form-control::placeholder,
#contact-cta textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
#contact-cta .form-control:focus,
#contact-cta textarea:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,128,204,.1);
  color: var(--text-light);
}
#contact-cta .btn-submit-contact {
  width: 100%;
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s ease;
}
#contact-cta .btn-submit-contact:hover {
  background: var(--accent-blue-2) !important;
  border-color: var(--accent-blue-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,128,204,.3);
}
#contact-cta .btn-light {
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
#contact-cta .btn-light:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
#contact-cta .small {
  color: var(--text-muted) !important;
}
#contact-cta .link-light {
  color: var(--accent-blue) !important;
  text-decoration: underline;
}
#contact-cta .link-light:hover {
  color: var(--brand-blue) !important;
}

/* Fix for text-light-emphasis class */
.text-light-emphasis {
  color: var(--text-muted) !important;
}

/* =========================================================
   ABOUT PAGE - HERO SECTION
   ========================================================= */
.about-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 50%,
      rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--brand-blue);
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #fff;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   ABOUT PAGE - MISSION SECTION
   ========================================================= */
.mission-section {
  padding: 5rem 0;
  background: transparent;
}

.mission-card {
  background: rgba(10,42,95,.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

@media (max-width: 767.98px) {
  .mission-card {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,42,95,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.mission-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-card h2::before {
  content: '';
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-blue-2));
  border-radius: 4px;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Section Header (reusable) */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgba(10,42,95,.06);
  border: 1px solid rgba(10,42,95,.12);
  margin-bottom: 1rem;
}

.section-pill .dot {
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--accent-blue);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

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

/* =========================================================
   ABOUT PAGE - VALUES GRID
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-2));
  transform: scaleX(0);
  transition: transform .3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent-blue);
}

.value-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .75rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   ABOUT PAGE - STATS BAR
   ========================================================= */
.stats-bar {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-box {
  padding: 1rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-blue);
  display: block;
  margin-bottom: .5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   ABOUT PAGE - STORY SECTION
   ========================================================= */
.story-section {
  padding: 5rem 0;
  background: transparent;
}

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

@media (max-width: 991.98px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .story-grid {
    max-width: 500px;
    margin: 0 auto;
  }
}

.story-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  aspect-ratio: 4/3;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.story-image-wrap:hover img {
  transform: scale(1.05);
}

.story-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-highlight {
  background: rgba(0,128,204,.1);
  border-left: 3px solid var(--accent-blue);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.story-highlight p {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

/* =========================================================
   ABOUT PAGE - PROCESS TIMELINE
   ========================================================= */
.process-section {
  padding: 5rem 0;
  background: transparent;
}

.process-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 150px;
  bottom: 120px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-blue), rgba(0,128,204,.2));
  transform: translateX(-50%);
  z-index: 0;
}

@media (max-width: 767.98px) {
  .process-timeline {
    max-width: 500px;
  }

  .process-timeline::before {
    left: 40px;
    top: 0;
    bottom: 0;
    transform: none;
  }
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  position: relative;
}

@media (max-width: 767.98px) {
  .process-item {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .process-item:nth-child(even) .process-content {
    order: 2;
  }
}

.process-item:nth-child(even) .process-content {
  order: 3;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 128, 204, 0.08);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  position: relative;
  z-index: 3;
  grid-column: 2;
  box-shadow: 0 0 18px rgba(0, 128, 204, 0.3),
              inset 0 0 10px rgba(0, 128, 204, 0.1);
  backdrop-filter: blur(6px);
}

.process-item:nth-child(1) .process-number,
.process-item:nth-child(3) .process-number {
  transform: translateY(170%);
}

@media (max-width: 767.98px) {
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    grid-column: 1;
    box-shadow: 0 0 0 6px #ffffff;
    transform: none !important;
  }

  .process-item:nth-child(1) .process-number,
  .process-item:nth-child(3) .process-number {
    transform: none !important;
  }
}

.process-content {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}

.process-content:hover {
  transform: translateY(-6px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.process-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .75rem;
}

.process-content p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

.process-item:nth-child(odd) .process-content {
  grid-column: 1;
}

.process-item:nth-child(even) .process-content {
  grid-column: 3;
}

@media (max-width: 767.98px) {
  .process-item:nth-child(odd) .process-content,
  .process-item:nth-child(even) .process-content {
    grid-column: 2;
  }
}

/* =========================================================
   ABOUT PAGE - PARTNERS SECTION
   ========================================================= */
.partners-section {
  padding: 5rem 0;
  background: transparent;
  overflow: hidden;
}

.partners-slider {
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partner-logo {
  flex-shrink: 0;
  width: 220px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all .3s ease;
}

.partner-logo:hover {
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.partner-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter .3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-220px * 6 - 4rem * 6));
  }
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* =========================================================
   ABOUT PAGE - CTA
   ========================================================= */
.cta-about {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 24px;
  text-align: center;
  margin: 4rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.cta-about h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.cta-about p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   CAREERS PAGE - HERO
   ========================================================= */
.careers-hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e8f1ff 0%, #f0f5ff 50%, #e8f1ff 100%);
}

.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,128,204,.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,128,204,.06) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

.careers-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.careers-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--brand-blue);
}

.careers-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* =========================================================
   CAREERS PAGE - WHY WORK SECTION
   ========================================================= */
.why-work-section {
  padding: 5rem 0;
  background: transparent;
}

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

.benefit-card {
  background: rgba(10,42,95,.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-2));
  transform: scaleX(0);
  transition: transform .3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  box-shadow: 0 20px 60px rgba(0,128,204,.15);
}

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

.benefit-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,128,204,.15), rgba(0,128,204,.05));
  border: 2px solid rgba(0,128,204,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  transition: all .3s ease;
  color: var(--accent-blue);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0,128,204,.25), rgba(0,128,204,.1));
  border-color: rgba(0,128,204,.4);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .75rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   CAREERS PAGE - POSITIONS SECTION
   ========================================================= */
.positions-section {
  padding: 5rem 0;
  background: rgba(10,42,95,.02);
  border-top: 1px solid rgba(10,42,95,.08);
  border-bottom: 1px solid rgba(10,42,95,.08);
}

.positions-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.position-card {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.position-card::after {
  content: '→';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--accent-blue);
  opacity: 0;
  transition: all .3s ease;
}

.position-card:hover {
  transform: translateX(10px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  padding-right: 4rem;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.position-card:hover::after {
  opacity: 1;
  right: 2rem;
}

.position-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.position-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0,128,204,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.position-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .5rem;
}

.position-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: var(--text-muted);
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.position-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.position-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.highlight-tag {
  padding: .4rem .9rem;
  background: rgba(0,128,204,.1);
  border: 1px solid rgba(0,128,204,.2);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--brand-blue);
  font-weight: 600;
}

/* =========================================================
   CAREERS PAGE - TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: 5rem 0;
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.2);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.testimonial-quote {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .25rem;
}

.author-info p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

  .position-card:hover {
    padding-right: 2rem;
  }

  .position-card::after {
    display: none;
  }
}

/* =========================================================
   CONTACT PAGE - HERO
   ========================================================= */
.contact-hero {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #e8f1ff 0%, #f0f5ff 50%, #e8f1ff 100%);
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,128,204,.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,128,204,.06) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.contact-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   CONTACT PAGE - MAIN SECTION
   ========================================================= */
.contact-main {
  padding: 5rem 0;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =========================================================
   CONTACT PAGE - INFO CARDS
   ========================================================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: rgba(10,42,95,.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  background: rgba(10,42,95,.08);
  border-color: rgba(0,128,204,.3);
  box-shadow: 0 20px 60px rgba(0,128,204,.15);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,128,204,.15), rgba(0,128,204,.05));
  border: 2px solid rgba(0,128,204,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 0;
}

.info-card-content {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.info-card-content a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all .3s ease;
}

.info-card-content a:hover {
  color: var(--accent-blue-2);
  text-decoration: underline;
}

.info-card-content p {
  margin: .25rem 0;
}

/* Social Links */
.social-description {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(10,42,95,.06);
  border: 1px solid rgba(10,42,95,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all .3s ease;
}

.social-link:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* Business Hours */
.hours-display {
  padding: .75rem 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
}

.hours-row.hours-divider {
  border-top: 1px solid rgba(10,42,95,.12);
  margin-top: .5rem;
  padding-top: .75rem;
}

.hours-label {
  font-weight: 600;
  color: var(--brand-blue);
}

.hours-value {
  color: var(--text-muted);
}

/* =========================================================
   CONTACT PAGE - FORM
   ========================================================= */
.contact-form-wrapper {
  background: rgba(10,42,95,.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 2.5rem;
}

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

.form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .5rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: .5rem;
  font-size: .95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(10,42,95,.15);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all .3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 3px rgba(0,128,204,.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent-blue);
  color: #fff;
  border: 2px solid var(--accent-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s ease;
}

.contact-form button[type="submit"]:hover {
  background: var(--accent-blue-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,128,204,.4);
}

/* Django form styling */
.contact-form p {
  margin-bottom: 1.5rem;
}

.contact-form p label {
  display: block;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: .5rem;
  font-size: .95rem;
}

.contact-form p input,
.contact-form p textarea,
.contact-form p select {
  width: 100%;
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(10,42,95,.15);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all .3s ease;
}

.contact-form .helptext {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .5rem;
}

.contact-form .errorlist {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0 0;
  color: #dc3545;
  font-size: .9rem;
}

/* Success Messages */
.messages {
  margin-bottom: 2rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid;
}

.alert-success {
  background: rgba(72, 187, 120, .1);
  border-color: rgba(72, 187, 120, .3);
  color: #2d7a4f;
}

.alert-error {
  background: rgba(220, 53, 69, .1);
  border-color: rgba(220, 53, 69, .3);
  color: #dc3545;
}

/* =========================================================
   CONTACT PAGE - MAP SECTION
   ========================================================= */
.map-section {
  padding: 5rem 0;
  background: rgba(10,42,95,.02);
  border-top: 1px solid rgba(10,42,95,.08);
}

.map-wrapper {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) brightness(1.05);
}

@media (max-width: 767.98px) {
  .map-wrapper {
    height: 350px;
  }

  .social-links {
    justify-content: center;
  }
}

/* =========================================================
   SERVICES PAGE - HERO
   ========================================================= */
.services-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 1.5rem 64px;
  text-align: center;
  background: linear-gradient(135deg, #e8f1ff 0%, #f0f5ff 100%);
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0,128,204,.06) 0%, transparent 55%);
}
.services-hero .inner {
  max-width: 940px;
  position: relative;
  z-index: 1;
}
.services-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--brand-blue);
}
.services-hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 1.6rem;
}
.hero-cta {
  display:flex;
  gap:.85rem;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================================================
   SERVICES PAGE - MAIN SECTION
   ========================================================= */
.services-main {
  padding: 3.25rem 0;
  width:100%;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 540px;
  align-items: center;
  gap: 0;
  padding: 1.5rem 0;
  width: 100%;
}
.service-row:nth-child(even) {
  grid-template-columns: 540px 1fr;
}

.service-image {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
.service-image .img-wrap {
  width: 540px;
  max-width: calc(100% - 24px);
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10,42,95,.08);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.service-row:hover .img-wrap {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0,0,0,.18);
}

.service-content {
  padding: 2.4rem 3rem;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 980px;
  margin: 0 auto;
}
.service-content h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--brand-blue);
}
.service-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-features li {
  color: var(--text-muted);
  font-size: .98rem;
  padding: .4rem 0;
  display:flex;
  align-items:center;
  gap:.6rem;
}
.service-features li::before {
  content: '●';
  color: var(--accent-blue);
  font-size: .7rem;
}

@media (max-width: 1200px) {
  .service-row { grid-template-columns: 1fr 460px; }
  .service-image .img-wrap { width: 460px; height: 300px; }
}
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-content { padding: 1.1rem 1rem; }
  .service-image { order: -1; padding: 0 1rem; }
  .service-image .img-wrap { width: 92%; height: 260px; margin: 0 auto; }
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(10,42,95,.12);
}
.cta-section h2 {
  font-size: clamp(1.6rem,3.8vw,2.6rem);
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--brand-blue);
}
.cta-section p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.2rem;
}
.cta-buttons {
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================================================
   PRIVACY PAGE
   ========================================================= */
.privacy-page {
  padding: 5rem 0;
}

.card-modern {
  background: rgba(10,42,95,.04);
  border: 1px solid rgba(10,42,95,.12);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.privacy-page h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.privacy-page .h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-page p,
.privacy-page ul {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-page ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.privacy-page a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color .3s ease;
}

.privacy-page a:hover {
  color: var(--accent-blue-2);
  text-decoration: underline;
}

.privacy-page footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,42,95,.12);
}

.privacy-page .small {
  font-size: .875rem;
  color: var(--text-muted);
}

/* =========================================================
   FOOTER - LIGHT VERSION
   ========================================================= */
.footer-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-light);
  position: relative;
  font-family: 'Inter', sans-serif;
}

.footer-main {
  padding: 4rem 0 3rem;
}

.footer-logo-section {
  max-width: 280px;
}

.footer-logo-section img {
  height: 56px;
  margin-bottom: 1.5rem;
}

.footer-address {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-phone {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--brand-blue);
}

/* Footer Links Container */
.footer-links-container {
  display: flex;
  justify-content: end;
  gap: 6rem;
}

.footer-column h5 {
  color: var(--brand-blue);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

/* Social Icons Section */
.footer-social-section {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(10,42,95,0.12);
}

.footer-social-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-content span {
  color: var(--brand-blue) !important;
}

.social-icon {
  color: var(--text-muted);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(10,42,95,0.04);
  border-top: 1px solid rgba(10,42,95,0.08);
  padding: 1rem 0;
}

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

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--brand-blue);
}

.footer-legal {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  .footer-main .row > div {
    margin-bottom: 2rem;
  }

  .footer-links-container {
    justify-content: start;
    gap: 3rem;
  }

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

@media (max-width: 767.98px) {
  .footer-links-container {
    flex-direction: column;
    gap: 2rem;
  }

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

  .footer-social-section {
    justify-content: center;
  }

  .footer-social-content {
    justify-content: center;
  }
}