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

:root {
  --primary: #0052cc;
  --primary-light: #0066ff;
  --primary-dark: #003d99;
  --accent: #00b894;
  --accent-light: #00cba9;
  --dark: #0d1b2a;
  --gray-900: #1a1a2e;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #003d99 100%);
  --gradient-accent: linear-gradient(135deg, #00b894 0%, #00cba9 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900);
  line-height: 1.7;
  background: var(--white);
}

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

/* ── NAV ─────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { font-size: 1.5rem; font-weight: 900; text-decoration: none; color: var(--dark); letter-spacing: -0.5px; }
.logo em { font-style: normal; color: var(--primary); }
.nav-links { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-700); font-weight: 500;
  font-size: 0.92rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.btn-nav {
  background: var(--primary); color: var(--white) !important;
  padding: 0.55rem 1.3rem; border-radius: 10px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--primary-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -1rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 0.5rem 0; z-index: 100;
  list-style: none;
}
.dropdown-menu li a { display: block; padding: 0.55rem 1.2rem; font-size: 0.9rem; color: var(--gray-700); }
.dropdown-menu li a:hover { background: var(--gray-50); color: var(--primary); }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 0.4rem 0; pointer-events: none; }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.nav-toggle-cb { display: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); transition: 0.3s; }

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 12px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(0,82,204,0.35); }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-light); box-shadow: 0 8px 30px rgba(0,82,204,0.4); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(0,184,148,0.35); }
.btn-accent:hover { transform: translateY(-2px); background: var(--accent-light); }

/* ── HERO ─────────────────────────────── */
.hero {
  padding: 10rem 2rem 5rem;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.18);
  padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.2rem; }
.hero .highlight { color: var(--accent-light); }
.hero-sub { font-size: 1.15rem; opacity: 0.92; max-width: 680px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 2rem; font-weight: 900; }
.hero-stats .stat span { font-size: 0.85rem; opacity: 0.8; }

/* ── PAGE HERO ───────────────────────── */
.page-hero {
  padding: 9rem 2rem 4rem;
  background: var(--gradient);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .inner { max-width: 750px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; opacity: 0.92; }
.page-hero .tag {
  display: inline-block; background: rgba(255,255,255,0.2);
  padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 1rem; backdrop-filter: blur(4px);
}

/* ── BREADCRUMB ─────────────────────── */
.breadcrumb { padding: 5.5rem 2rem 0; font-size: 0.85rem; max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--gray-400); margin: 0 0.4rem; }

/* ── SECTIONS ─────────────────────────── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark); margin-bottom: 0.8rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }

/* ── SERVICES GRID ─────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
.service-card {
  display: block; text-decoration: none;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }
.service-link { display: inline-block; margin-top: 1rem; color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ── CITY GRID ─────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.city-card {
  display: block; text-decoration: none;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 1.2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--dark);
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); color: var(--primary); }
.city-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.city-card span { font-size: 0.82rem; color: var(--gray-500); }

/* ── FEATURE GRID ─────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.feature-item p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }

/* ── STATS ROW ─────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.stat-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2rem 1rem; }
.stat-number { display: block; font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { display: block; font-size: 0.85rem; color: var(--gray-500); margin-top: 0.4rem; }

/* ── PROCESS STEPS ─────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { text-align: center; counter-increment: step; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  font-size: 1.3rem; font-weight: 900; margin: 0 auto 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--gray-500); }

/* ── CTA BAND ─────────────────────────── */
.cta-band {
  background: var(--gradient); color: var(--white);
  padding: 5rem 2rem; text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── HIGHLIGHT BOX ─────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,82,204,0.06), rgba(0,184,148,0.06));
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0; padding: 2rem; margin: 2rem 0;
}
.highlight-box h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.highlight-box p { color: var(--gray-700); margin-bottom: 0; font-size: 0.95rem; }

/* ── CONTENT BLOCK ─────────────────────── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; margin-top: 2.5rem; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--gray-700); font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.8; }
.content-block strong { color: var(--dark); }
.content-block ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.content-block ul li { color: var(--gray-700); font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.7; }

/* ── FAQ ─────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.faq-a { color: var(--gray-500); font-size: 0.97rem; line-height: 1.7; }

/* ── PACKAGES ─────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.package-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.package-card.featured { border-color: var(--primary); transform: scale(1.03); }
.package-card:hover { transform: translateY(-4px) scale(1.01); border-color: var(--primary); }
.package-card.featured:hover { transform: translateY(-4px) scale(1.04); }
.package-badge { display: inline-block; background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 1rem; letter-spacing: 0.5px; text-transform: uppercase; }
.package-name { font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 0.5rem; }
.package-price { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 0.3rem; }
.package-price small { font-size: 0.9rem; color: var(--gray-500); font-weight: 400; }
.package-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; }
.package-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.package-features li { padding: 0.4rem 0; font-size: 0.92rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.package-features li::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* ── TESTIMONIALS ─────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; }
.testimonial-text { font-size: 0.97rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.testimonial-author span { font-size: 0.85rem; color: var(--gray-500); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.8rem; }

/* ── CONTACT FORM ─────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: 0.97rem; font-family: inherit;
  transition: border-color 0.2s; background: var(--white); color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,82,204,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); display: block; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }
.contact-detail a { color: var(--primary); text-decoration: none; font-weight: 600; }
.form-msg { padding: 1rem; border-radius: 8px; font-size: 0.95rem; margin-top: 1rem; display: none; }
.form-msg.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-msg.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── TAG ─────────────────────────────── */
.tag {
  display: inline-block; background: rgba(0,82,204,0.12);
  color: var(--primary); padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
}
.hero .tag { background: rgba(255,255,255,0.2); color: var(--white); }

/* ── PILL LINKS (city list) ─────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  display: inline-block; text-decoration: none;
  background: var(--gray-100); color: var(--gray-700);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; transition: background 0.2s, color 0.2s;
  border: 1px solid var(--gray-200);
}
.pill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── FOOTER ─────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: 0.9rem; margin-top: 0.8rem; opacity: 0.7; line-height: 1.6; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.2rem; }
.footer-social a { font-size: 1.3rem; text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0; text-align: center;
  font-size: 0.82rem; opacity: 0.5;
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200); gap: 0.8rem;
    box-shadow: var(--shadow-md);
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-hamburger { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-toggle-cb:checked ~ .nav-links .nav-dropdown .dropdown-menu { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .package-card.featured { transform: scale(1); }
}
