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

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

:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-darker: #0D2A5B;
  --navy: #0F1C3F;
  --hero-bg-start: #E8F4FD;
  --hero-bg-end: #EEF2FF;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --radius: 1rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.logo-icon {
  background: var(--white); border-radius: 6px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-sep { width: 1px; height: 16px; background: rgba(255,255,255,.3); }
.main-nav a, .main-nav .nav-dropdown-toggle {
  color: var(--white); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 0 1.1rem; transition: color .2s;
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.main-nav a:hover, .main-nav .nav-dropdown-toggle:hover { color: rgba(255,255,255,.75); }
.main-nav a.active { color: rgba(255,255,255,.75); }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--white); border-radius: 8px; min-width: 200px;
  box-shadow: var(--shadow-xl); overflow: hidden; z-index: 200;
}
.dropdown-menu a {
  display: block; padding: .75rem 1.25rem; color: var(--gray-900) !important;
  font-weight: 600; font-size: .85rem; transition: background .15s;
  text-transform: none; letter-spacing: 0;
}
.dropdown-menu a:hover { background: #EEF2FF; color: var(--primary) !important; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: .8rem;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: all .2s ease;
  white-space: nowrap;
  margin-left: 1.5rem;
}
.btn-header-call:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn-header-call svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--primary-dark); padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav a {
  display: block; color: var(--white); font-weight: 700;
  font-size: .9rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(to bottom, var(--hero-bg-start), var(--hero-bg-end));
  padding: 5rem 0 4rem;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.15; color: var(--gray-900); margin-bottom: 1.5rem; letter-spacing: -.02em; }
.hero-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.hero-list li { display: flex; align-items: center; gap: .75rem; font-size: 1.1rem; font-weight: 500; color: #374151; }
.hero-list li::before { content: "•"; color: var(--primary); font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.hero-cta-label { font-size: 1rem; color: var(--gray-600); font-weight: 500; margin-bottom: 1rem; }
.btn-start {
  display: inline-block; background: var(--primary); color: var(--white);
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .1em;
  padding: 1rem 2.5rem; border-radius: 50px;
  box-shadow: var(--shadow-lg); transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-start:hover { background: var(--primary-dark); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.hero-image-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--white); }
.hero-image-wrap img { width: 100%; height: auto; object-fit: cover; }

/* ─── STEP GUIDE ─── */
.steps-section { padding: 5rem 0; background: var(--white); }
.section-header { text-align: center; max-width: 860px; margin: 0 auto 4rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--gray-900); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; }

.steps-list { display: flex; flex-direction: column; gap: 5rem; max-width: 1100px; margin: 0 auto; }
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.step-row.reverse .step-img { order: 2; }
.step-row.reverse .step-content { order: 1; }
.step-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.step-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.step-title {
  font-size: 1.6rem; font-weight: 700; color: var(--primary);
  display: inline-block; border-bottom: 2px solid var(--primary);
  padding-bottom: .4rem; margin-bottom: 1.25rem;
}
.step-bullets { display: flex; flex-direction: column; gap: .85rem; }
.step-bullets li { display: flex; gap: .75rem; font-size: 1.05rem; color: var(--gray-700); }
.step-bullets li::before { content: "•"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ─── TIPS ─── */
.tips-section { padding: 4rem 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.tips-box { background: var(--white); padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--gray-100); max-width: 860px; margin: 0 auto; }
.tips-list { display: flex; flex-direction: column; gap: 1.25rem; }
.tips-list li { display: flex; gap: 1rem; font-size: 1.05rem; color: var(--gray-700); }
.tips-list li::before { content: "•"; color: var(--primary); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; line-height: 1.4; }

/* ─── DISCLAIMER STRIP ─── */
.disclaimer-strip { background: var(--gray-100); border-top: 1px solid var(--gray-300); padding: 2.5rem 0; }
.disclaimer-strip p { font-size: .85rem; color: var(--gray-500); line-height: 1.7; text-align: center; max-width: 900px; margin: 0 auto; }

/* ─── PAGE BANNER ─── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
  padding: 5rem 0; text-align: center; color: var(--white);
}
.page-banner h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: .75rem; }
.page-banner p { font-size: 1.15rem; color: rgba(255,255,255,.8); }

.legal-banner { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 3.5rem 0; text-align: center; }
.legal-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--gray-900); margin-bottom: .5rem; }
.legal-banner .last-updated { font-size: .9rem; color: var(--gray-500); }

/* ─── ABOUT ─── */
.mission-section { padding: 5rem 0; background: var(--white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.mission-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--gray-900); margin-bottom: 1.25rem; }
.mission-text p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.mission-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--gray-50); }
.mission-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.why-us-section { padding: 5rem 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 3rem auto 0; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: box-shadow .2s, transform .2s; }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card-icon { width: 64px; height: 64px; background: #EEF2FF; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--primary); }
.why-card-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; color: var(--gray-900); }
.why-card p { font-size: .95rem; color: var(--gray-600); line-height: 1.6; }

.location-section { padding: 5rem 0; background: var(--white); text-align: center; }
.location-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 2rem; }
.location-card { background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 3rem; max-width: 560px; margin: 0 auto; box-shadow: var(--shadow-xl); }
.location-card .brand { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.location-card .addr { font-size: 1.1rem; opacity: .9; margin-bottom: .25rem; }
.location-card .note { font-size: .95rem; opacity: .75; margin-top: 1.5rem; }

/* ─── CONTACT ─── */
.contact-section { padding: 4rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.form-wrap h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .9rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font); font-size: .95rem;
  border: 1px solid var(--gray-200); border-radius: .5rem;
  padding: .85rem 1rem; color: var(--gray-900); outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.15); }
.form-group textarea { resize: none; }
.btn-submit {
  width: 100%; padding: 1rem; font-family: var(--font); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; background: var(--primary);
  color: var(--white); border: none; border-radius: .5rem; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.info-wrap h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
.info-cards { background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 2rem; display: flex; flex-direction: column; gap: 2rem; }
.info-card { display: flex; gap: 1rem; align-items: flex-start; }
.info-card-icon { background: var(--white); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); color: var(--primary); flex-shrink: 0; }
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .25rem; }
.info-card p { font-size: .95rem; color: var(--gray-600); line-height: 1.5; }
.map-placeholder { background: var(--gray-100); border-radius: var(--radius); border: 1px solid var(--gray-200); height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 1.5rem; gap: .5rem; color: var(--gray-400); }
.map-placeholder svg { width: 36px; height: 36px; }
.map-placeholder p { font-size: .9rem; font-weight: 500; }
.success-msg { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 2rem; }
.success-msg h3 { font-size: 1.2rem; font-weight: 700; color: #15803d; margin-bottom: .5rem; }
.success-msg p { color: #166534; }

/* ─── LEGAL PAGES ─── */
.legal-content { padding: 4rem 0; background: var(--white); }
.legal-body { max-width: 860px; margin: 0 auto; color: var(--gray-700); line-height: 1.8; font-size: 1rem; }
.legal-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--gray-900); margin: 2.5rem 0 .75rem; }
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body ul li { margin-bottom: .4rem; }
.legal-body address { font-style: normal; line-height: 1.8; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); color: #9ca3af; padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .875rem; color: #9ca3af; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .875rem; color: #9ca3af; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: .875rem; color: #9ca3af; line-height: 1.5; transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: #6b7280; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .main-nav, .nav-sep { display: none; }
  .hamburger { display: block; }
  .hero-grid, .step-row, .two-col, .contact-grid, .cards-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step-row.reverse .step-img, .step-row.reverse .step-content { order: unset; }
  .hero { padding: 3rem 0 2.5rem; }
  .steps-list { gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-image-wrap { margin-top: 1rem; }
  .site-header .logo-text {
    display: none;
  }
  .btn-header-call {
    margin-left: auto;
    margin-right: .75rem;
  }
  .mobile-nav-call {
    color: #a5f3fc !important;
    display: inline-flex !important;
    align-items: center;
  }
  .sticky-mobile-call {
    display: block;
  }
  body {
    padding-bottom: 72px;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 3.5rem 0; }
  .tips-box { padding: 1.75rem; }
  .info-cards { padding: 1.25rem; }
  .btn-header-call span { display: none; }
  .btn-header-call {
    padding: .5rem;
    border-radius: 50%;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: .5rem;
  }
  .btn-header-call svg { width: 16px; height: 16px; margin: 0; }
}

/* ─── STICKY MOBILE CALL FOOTER ─── */
.sticky-mobile-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
  border-top: 2px solid var(--primary);
}
.btn-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.35);
  animation: pulse-blue-sticky 2.5s infinite;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
}
.btn-sticky-call:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
}
.sticky-call-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* ─── HERO CALL BUTTON ─── */
.btn-call-hero {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4) !important;
  animation: pulse-blue-hero 2s infinite;
  border: none;
  font-weight: 800 !important;
  letter-spacing: .05em !important;
}
.btn-call-hero:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.6) !important;
}
.btn-call-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Animations */
@keyframes pulse-blue-hero {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(21, 101, 192, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0);
  }
}

@keyframes pulse-blue-sticky {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(21, 101, 192, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0);
  }
}

/* ─── FLOATING MOBILE CALL BUTTON ─── */
.floating-mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .floating-mobile-call {
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
    z-index: 1001;
    animation: pulse-blue-floating 2s infinite;
    border: none;
    text-decoration: none;
  }
  .floating-call-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
  }
}

@keyframes pulse-blue-floating {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.6), 0 4px 15px rgba(21, 101, 192, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(21, 101, 192, 0), 0 4px 15px rgba(21, 101, 192, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0), 0 4px 15px rgba(21, 101, 192, 0.4);
  }
}

