@import "material-icons.css";

/* ===== Custom Properties ===== */
:root {
  --primary: #002868;
  --primary-light: #1a4a8a;
  --accent: #BF0A30;
  --accent-light: #d4243f;
  --surface: #f7f8fa;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5a6677;
  --gold: #c9a84c;
  --dark: #0a1628;
  --radius: 1rem;
  --shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.06), 0 16px 40px rgba(0,0,0,.1);
  --transition: 0.25s ease;
}

/* ===== Base ===== */
*,*::before,*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.25; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid rgba(0,40,104,.06);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: transform 0.3s ease;
}

#header.headroom--unpinned { transform: translateY(-100%); }
#header.headroom--pinned { transform: translateY(0); }

#logo h1 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  white-space: nowrap;
}

#logo h1 img {
  height: 46px;
  object-fit: cover;
}

/* ===== Nav ===== */
#menu ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

#menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

#menu a:hover,
#menu a:focus {
  background: var(--surface);
  color: var(--primary);
}

#menu a.external {
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

#menu a.external:hover {
  background: var(--accent-light);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1032;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Trust Strip ===== */
.trust-strip {
  margin-top: 70px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 56px;
}

.trust-strip-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-strip-location .material-icons {
  font-size: 1rem;
}

.trust-strip-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.trust-stat strong {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.trust-stat span {
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.12);
}

.trust-strip-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.35rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.trust-strip-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(191,10,48,.35);
  color: var(--white);
}

/* ===== Section Label ===== */
.section-label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ===== Carousel / Hero ===== */
#index { height: calc(100vh - 126px); }
.carousel, .carousel-item, .carousel-item.active { height: 100%; }
.carousel-inner { height: 100%; }

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,10,30,.75) 0%, rgba(0,40,104,.4) 50%, rgba(0,20,50,.3) 100%);
}

.carousel-caption {
  z-index: 2;
  bottom: 18%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.carousel-caption .carousel-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.carousel-caption h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.carousel-caption .carousel-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.carousel-caption .btn-group-hero {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.carousel-caption .btn-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.carousel-caption .btn-hero:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191,10,48,.35);
  color: var(--white);
}

.carousel-caption .btn-outline-hero {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
}

.carousel-caption .btn-outline-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  opacity: 0.7;
}

.carousel-indicators .active {
  background: var(--white);
  opacity: 1;
}

/* ===== Section Shared ===== */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--surface);
}

.section .container { max-width: 1100px; }

.section h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  position: relative;
}

.section h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===== Icon Circle ===== */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle .material-icons {
  font-size: 1.25rem;
  color: var(--white);
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

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

.service-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card h3 .material-icons {
  font-size: 1.35rem;
  color: var(--accent);
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-card li::before {
  content: '\e5ca';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Service Banner */
.service-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.service-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.service-banner .banner-stat {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-banner .banner-text {
  font-size: 1.15rem;
  font-weight: 600;
  position: relative;
}

/* Additional services */
.additional-services {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.additional-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.additional-services h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.additional-services li {
  padding: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.92rem;
}

.additional-services li::before {
  content: '\e5ca';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== Pricing Cards ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--gold);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 2;
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: var(--white);
}

.pricing-card.featured .pricing-card-header {
  background: linear-gradient(135deg, #001d4a 0%, var(--primary) 100%);
}

.pricing-card-header .price {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

.pricing-card-header small {
  opacity: 0.85;
  font-size: 0.82rem;
}

.pricing-card-body {
  padding: 1.5rem;
  flex: 1;
}

.pricing-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card-body li {
  padding: 0.45rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--surface);
}

.pricing-card-body li:last-child { border-bottom: none; }

.pricing-card-body li::before {
  content: '\e5ca';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1rem;
}

/* Info wells */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

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

.info-card-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-card h3 .material-icons {
  font-size: 1.2rem;
  color: var(--accent);
}

.info-card p, .info-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FAQ Accordion ===== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--surface);
}

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

.faq-item {
  background: var(--white);
  border-bottom: 1px solid #e8ecf1;
  overflow: hidden;
  transition: background var(--transition);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.active {
  border-left: 3px solid var(--accent);
  background: #fafbfd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p,
.faq-answer li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
}

.footer-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #8a0722 100%);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-cta h3 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-cta p {
  color: rgba(255,255,255,.8);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.footer-cta .btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.footer-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: var(--accent);
}

.footer-main {
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name img {
  height: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}

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

.footer-col span,
.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-col .material-icons {
  font-size: 1.15rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-col a:hover .material-icons {
  color: var(--gold);
}

.footer-col .user {
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 0.35rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
}

/* ===== Modal ===== */
.modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

.modal-header {
  border-bottom: 1px solid var(--surface);
  padding: 1.25rem 1.5rem;
}

.modal-title {
  font-weight: 700;
  color: var(--primary);
}

.modal-body { padding: 1.5rem; }

.contact-form .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form .form-control {
  border-radius: 0.5rem;
  border: 1.5px solid #e0e4eb;
  padding: 0.65rem 0.85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,40,104,.1);
}

.contact-form .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: var(--radius);
  padding: 0.65rem 2rem;
  font-weight: 600;
}

.contact-form .btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.modal-footer {
  border-top: 1px solid var(--surface);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .carousel-caption h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
  .trust-strip-inner {
    height: auto;
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
  .trust-strip-stats { gap: 0.75rem; }
  .trust-stat strong { font-size: 0.95rem; }
  .trust-stat span { font-size: 0.65rem; }
  .trust-strip-cta { padding: 0.4rem 1rem; font-size: 0.72rem; }
  #index { height: calc(100vh - 160px); }

  .nav-toggle { display: block; }

  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    transition: right 0.3s ease;
    z-index: 1031;
  }

  #menu.open { right: 0; }

  #menu ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  #menu a {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  #logo h1 { font-size: 1.1rem; }
  #logo h1 img { width: 38px; height: 38px; }

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

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

  .carousel-caption h2 { font-size: 1.35rem; }
  .carousel-caption .carousel-sub { font-size: 0.85rem; margin-bottom: 1.25rem; }
  .carousel-caption { bottom: 12%; }
  .carousel-caption .btn-hero { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
  .carousel-caption .btn-outline-hero { padding: 0.7rem 1.5rem; font-size: 0.9rem; }

  .section { padding: 3.5rem 0; }
  .section h1 { font-size: 1.75rem; }

  .footer-cta { padding: 2.5rem 1.25rem; }
  .footer-cta h3 { font-size: 1.35rem; }
}

@media (max-width: 576px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-strip-location { display: none; }
  #index { height: calc(100vh - 130px); }
  .carousel-caption .btn-group-hero { flex-direction: column; align-items: center; }
}

/* ===== Menu Overlay (mobile) ===== */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1029;
}

.menu-overlay.active { display: block; }

/* ===== TTP Section (Trusted Traveler Programs) ===== */
.ttp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.ttp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ttp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.ttp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,40,104,.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.ttp-badge-alt {
  background: rgba(191,10,48,.08);
  color: var(--accent);
}

.ttp-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.ttp-icon-alt {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.ttp-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.ttp-card-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.ttp-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ttp-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.ttp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.ttp-benefits li .material-icons {
  font-size: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ttp-card-footer {
  border-top: 1px solid var(--surface);
  padding-top: 1.25rem;
  text-align: center;
}

.ttp-price {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.ttp-price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* TTP Comparison */
.ttp-comparison {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.ttp-comparison h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.ttp-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.ttp-compare-item > .material-icons {
  font-size: 1.75rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ttp-compare-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

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

/* TTP Trust signals */
.ttp-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
}

.ttp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ttp-trust-item .material-icons {
  font-size: 1.25rem;
  color: var(--primary);
}

/* TTP CTA */
.ttp-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #001d4a 100%);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ttp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.ttp-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.ttp-cta p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.btn-cta-ttp {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  position: relative;
}

.btn-cta-ttp:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(191,10,48,.4);
  color: var(--white);
}

/* TTP Responsive */
@media (max-width: 768px) {
  .ttp-grid { grid-template-columns: 1fr; }
  .ttp-compare-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ttp-trust { flex-direction: column; align-items: center; gap: 1rem; }
  .ttp-cta { padding: 2.5rem 1.25rem; }
  .ttp-cta h3 { font-size: 1.25rem; }
  .ttp-card { padding: 2rem 1.5rem 1.5rem; }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  z-index: 1040;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
