/* ========================================
   FLAG RENTAL CANADA — LIGHT THEME
   ======================================== */

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

/* ---- CSS Custom Properties ---- */
:root {
  --red:         #C8102E;
  --red-dark:    #9B0C21;
  --red-light:   #E8193D;
  --gold:        #C47B00;
  --gold-light:  #F59E0B;
  --bg:          #FFFFFF;
  --bg-alt:      #F8F9FB;
  --bg-section:  #F2F4F8;
  --bg-card:     #FFFFFF;
  --text:        #111827;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --border-dark: #D1D5DB;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-red:  0 8px 24px rgba(200,16,46,0.20);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-full: 999px;
  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Inter', system-ui, sans-serif;
  --max-w:       1280px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font); background: transparent; }
input, textarea, select { font-family: var(--font); }

/* ---- Utilities ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  background: rgba(200,16,46,0.07);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.025em;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 12px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flagWave {
  0%, 100% { transform: skewX(0deg) scaleX(1); }
  25%       { transform: skewX(2deg) scaleX(0.97); }
  75%       { transform: skewX(-2deg) scaleX(1.03); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ======================================== */
/*  NAVIGATION                              */
/* ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-logo-dot { color: var(--red); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  padding-left: 16px;
  border-left: 1px solid var(--border-dark);
}
.nav-phone:hover { color: var(--red); }
.nav-phone svg { width: 13px; height: 13px; flex-shrink: 0; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-section); }
.nav-link.active { color: var(--text); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  padding: 7px 13px; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--text); background: var(--bg-section); }
.nav-dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; }
.nav-dropdown-item {
  display: block; padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--text-muted);
  transition: var(--transition);
}
.nav-dropdown-item:hover { color: var(--text); background: var(--bg-section); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200,16,46,0.28);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

.nav-mobile {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column; gap: 3px;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.925rem; font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-section); }
.nav-mobile .mobile-cta {
  margin-top: 8px; background: var(--red);
  color: var(--white) !important;
  text-align: center; border-radius: var(--radius-full);
  font-weight: 700;
}

/* ======================================== */
/*  BUTTONS                                 */
/* ======================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em;
  transition: var(--transition); box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200,16,46,0.28);
}
.btn-primary svg { width: 17px; height: 17px; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-dark); color: var(--text);
  padding: 13px 26px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600; transition: var(--transition);
  background: var(--white);
}
.btn-secondary:hover {
  border-color: var(--red); color: var(--red); background: rgba(200,16,46,0.04);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--red); color: var(--red);
  padding: 11px 22px; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600; transition: var(--transition);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

/* ======================================== */
/*  HERO SECTION                            */
/* ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F8 0%, #FFF5F5 40%, #FAFCFF 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(200,16,46,0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 40%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  letter-spacing: 0.05em; margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--text);
  max-width: 700px; margin-bottom: 20px;
  animation: fadeInUp 0.65s 0.2s ease both;
}
.hero-title .accent { color: var(--red); }
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 500px; line-height: 1.75; margin-bottom: 38px;
  animation: fadeInUp 0.65s 0.35s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.65s 0.5s ease both;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid var(--border);
  animation: fadeInUp 0.65s 0.65s ease both;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.9rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.03em; line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

/* Hero illustration side */
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: fadeInUp 0.65s 0.3s ease both;
}
.hero-visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--red), #FF6B6B);
}
.hero-flag-pole {
  width: 6px; height: 180px;
  background: linear-gradient(to bottom, #C0C0C0, #A0A0A0);
  border-radius: 3px;
  margin: 0 auto; position: relative;
}
.hero-flag-pole::before {
  content: ''; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #F59E0B; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.hero-flag-fabric {
  position: absolute; top: 8px; left: 6px;
  width: 110px; height: 66px;
  background: var(--red);
  border-radius: 2px;
  animation: flagWave 2.5s ease-in-out infinite;
  transform-origin: left center;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 2px 2px 8px rgba(200,16,46,0.2);
}
.hero-visual-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 24px;
}
.hero-vis-stat {
  background: var(--bg-alt); border-radius: 10px; padding: 12px;
  border: 1px solid var(--border);
}
.hero-vis-stat .n { font-size: 1.25rem; font-weight: 900; color: var(--text); }
.hero-vis-stat .l { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

/* Floating badges */
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 0.75rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-badge-float.f1 { top: 20px; right: -20px; animation: float 3s ease-in-out infinite; }
.hero-badge-float.f2 { bottom: 40px; left: -30px; animation: float 3.5s ease-in-out infinite 0.5s; }

/* ======================================== */
/*  TRUST BAR                               */
/* ======================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 24px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--text); }
.trust-item svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }

/* ======================================== */
/*  SERVICES SECTION                        */
/* ======================================== */
.services-section { padding: 96px 0; background: var(--bg-alt); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 48px; flex-wrap: wrap;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer; display: block; color: inherit;
}
.service-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img-placeholder { transform: scale(1.07); }
.service-card-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 11px; font-size: 0.72rem; font-weight: 700; color: var(--red);
  box-shadow: var(--shadow-sm);
}
.service-card-img { position: relative; }
.service-card-body { padding: 18px; }
.service-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.service-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; font-size: 0.78rem; font-weight: 700; color: var(--red); transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 8px; }
.service-card-link svg { width: 13px; height: 13px; }

/* ======================================== */
/*  HOW IT WORKS                            */
/* ======================================== */
.how-section { padding: 96px 0; background: var(--bg); }
.how-header { text-align: center; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.how-connector {
  position: absolute; top: 40px;
  left: calc(16.67% + 14px); right: calc(16.67% + 14px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
  opacity: 0.2;
}
.how-step {
  text-align: center; padding: 36px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,16,46,0.2); }
.how-step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.35rem; font-weight: 900; color: var(--white);
  box-shadow: 0 6px 20px rgba(200,16,46,0.25);
}
.how-step-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.how-step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ======================================== */
/*  WHY CHOOSE US                           */
/* ======================================== */
.why-section { padding: 96px 0; background: var(--bg-alt); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-visual-main {
  background: linear-gradient(145deg, #FFF5F6, #FFF8F8);
  border: 1px solid rgba(200,16,46,0.1);
  border-radius: 24px; padding: 48px;
  min-height: 380px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.why-visual-main::after {
  content: '🍁';
  position: absolute; font-size: 160px; opacity: 0.03;
  right: -20px; bottom: -20px; line-height: 1;
}
.why-flag-demo { text-align: center; position: relative; z-index: 2; }
.why-flag-pole {
  width: 6px; height: 200px;
  background: linear-gradient(to bottom, #C0C0C0, #888);
  border-radius: 3px; margin: 0 auto; position: relative;
}
.why-flag-pole::before {
  content: ''; position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px; background: #F59E0B; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(245,158,11,0.5);
}
.why-flag-panel {
  position: absolute; top: 8px; left: 6px;
  width: 116px; height: 70px;
  background: var(--red); border-radius: 2px;
  animation: flagWave 2.5s ease-in-out infinite;
  transform-origin: left center;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 2px 2px 12px rgba(200,16,46,0.2);
}
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.why-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.why-stat-card .num { font-size: 1.35rem; font-weight: 900; color: var(--red); }
.why-stat-card .lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

.why-features { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.why-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.why-feature:hover { border-color: rgba(200,16,46,0.2); box-shadow: var(--shadow-md); }
.why-feature-icon {
  width: 42px; height: 42px;
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.why-feature-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.why-feature-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ======================================== */
/*  SECTORS                                 */
/* ======================================== */
.sectors-section { padding: 96px 0; }
.sectors-header { text-align: center; margin-bottom: 48px; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 20px;
  transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.sector-card:hover { border-color: rgba(200,16,46,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sector-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.07); border: 1px solid rgba(200,16,46,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px;
}
.sector-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sector-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

/* ======================================== */
/*  CITIES SECTION                          */
/* ======================================== */
.cities-section { padding: 96px 0; background: var(--bg-alt); }
.cities-header { text-align: center; margin-bottom: 52px; }
.cities-provinces { display: flex; flex-direction: column; gap: 36px; }
.province-name {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.province-name::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.province-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 7px 14px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.city-chip:hover { color: var(--red); border-color: rgba(200,16,46,0.3); background: rgba(200,16,46,0.03); }
.city-chip svg { width: 12px; height: 12px; color: var(--red); }

/* ======================================== */
/*  FAQ                                     */
/* ======================================== */
.faq-section { padding: 96px 0; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 1000px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s; box-shadow: var(--shadow-sm);
}
.faq-item.open { border-color: rgba(200,16,46,0.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; font-size: 0.875rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: color 0.2s; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--red); }
.faq-toggle {
  width: 22px; height: 22px;
  background: var(--bg-section); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--red); color: white; transform: rotate(45deg); }
.faq-toggle svg { width: 13px; height: 13px; color: var(--text-muted); }
.faq-item.open .faq-toggle svg { color: white; }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ======================================== */
/*  CTA BANNER                              */
/* ======================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '🍁';
  position: absolute; font-size: 300px; opacity: 0.04;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
  max-width: 580px; margin: 0 auto 14px; position: relative; z-index: 2;
}
.cta-banner-desc {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  max-width: 460px; margin: 0 auto 32px; position: relative; z-index: 2;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-banner .btn-primary { background: white; color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta-banner .btn-primary:hover { background: #f0f0f0; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.5); color: white; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: white; color: white; }

/* ======================================== */
/*  PAGE HERO                               */
/* ======================================== */
.page-hero {
  padding: 130px 0 72px;
  background: linear-gradient(160deg, #FFF8F8 0%, #FFF5F5 50%, #FAFCFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), #FF6B6B, var(--red));
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.8rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--red); font-weight: 600; }
.page-hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--text); letter-spacing: -0.03em;
  max-width: 660px; line-height: 1.1; margin: 12px 0 14px;
}
.page-hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 500px; line-height: 1.7; }

/* ======================================== */
/*  SERVICE DETAIL                          */
/* ======================================== */
.service-detail-section { padding: 72px 0; }
.service-detail-list { display: flex; flex-direction: column; gap: 80px; }
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 1px solid var(--border);
  border-radius: var(--radius); position: relative; overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.service-detail-img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.service-detail-price {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 5px 14px;
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  box-shadow: var(--shadow-sm);
}
.service-detail-title {
  font-size: 1.7rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2;
}
.service-detail-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.service-detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.service-detail-feat {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 0.8rem; color: var(--text);
}
.service-detail-feat svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ======================================== */
/*  CITIES FULL PAGE                        */
/* ======================================== */
.cities-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px;
  transition: var(--transition); cursor: pointer; display: block;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
}
.city-full-card:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.city-full-name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.city-full-province { font-size: 0.72rem; color: var(--text-light); font-weight: 500; margin-bottom: 10px; }
.city-full-services { display: flex; flex-wrap: wrap; gap: 4px; }
.city-tag {
  font-size: 0.65rem; background: rgba(200,16,46,0.07);
  color: var(--red); padding: 2px 8px;
  border-radius: var(--radius-full); font-weight: 600;
}
.city-full-cta { display: block; margin-top: 12px; font-size: 0.76rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.city-full-card:hover .city-full-cta { color: var(--red); }

/* ======================================== */
/*  ABOUT / CONTACT                         */
/* ======================================== */
.about-intro { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  background: linear-gradient(145deg, #FFF5F6, #FFF8F8);
  border: 1px solid rgba(200,16,46,0.12);
  border-radius: 24px; padding: 48px; text-align: center;
  font-size: 7rem; min-height: 300px; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-values { padding: 72px 0; background: var(--bg-alt); }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(200,16,46,0.2); }
.value-icon { font-size: 2.25rem; margin-bottom: 14px; }
.value-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.value-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Contact */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-title { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.contact-info-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact-item:hover { border-color: rgba(200,16,46,0.2); box-shadow: var(--shadow-md); }
.contact-item-icon {
  width: 38px; height: 38px;
  background: rgba(200,16,46,0.07); border: 1px solid rgba(200,16,46,0.12);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-item-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.contact-item-value { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-size: 0.875rem; color: var(--text);
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red); background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; }
.form-submit {
  margin-top: 6px; width: 100%; background: var(--red); color: var(--white);
  border: none; padding: 15px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-red);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ======================================== */
/*  PRICING                                 */
/* ======================================== */
.pricing-section { padding: 96px 0; background: var(--bg-alt); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  position: relative; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--red); box-shadow: 0 8px 24px rgba(200,16,46,0.12); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 4px 14px;
  border-radius: var(--radius-full); letter-spacing: 0.05em; text-transform: uppercase;
}
.pricing-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 3px; }
.pricing-price sub { font-size: 0.95rem; font-weight: 400; color: var(--text-muted); }
.pricing-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 0.82rem; color: var(--text); }
.pricing-feature svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.pricing-cta { display: block; text-align: center; padding: 13px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 700; transition: var(--transition); }
.pricing-cta.outline { border: 1.5px solid var(--border-dark); color: var(--text); }
.pricing-cta.outline:hover { border-color: var(--red); color: var(--red); }
.pricing-cta.solid { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.pricing-cta.solid:hover { background: var(--red-dark); }

/* ======================================== */
/*  FOOTER                                  */
/* ======================================== */
.footer { background: var(--text); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.1rem; color: white; margin-bottom: 14px; }
.footer-logo-icon { width: 30px; height: 30px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 240px; margin-bottom: 22px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-contact-item svg { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; }
.footer-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ======================================== */
/*  BLOG                                    */
/* ======================================== */
.blog-section { padding: 96px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,16,46,0.2); }
.blog-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg, #FFF5F6, #FFF0F0); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 22px; }
.blog-card-tag { display: inline-block; background: rgba(200,16,46,0.08); color: var(--red); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 7px; }
.blog-card-excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.74rem; color: var(--text-light); }

/* ======================================== */
/*  RESPONSIVE                              */
/* ======================================== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-inner { gap: 40px; }
  .cities-full-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item.reverse { direction: ltr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cities-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }
  .service-detail-features { grid-template-columns: 1fr; }
  .trust-item { padding: 10px 14px; font-size: 0.74rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cities-full-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 0; }
}
