/* ================================================
   123webmaster.fr — CSS Global
   ================================================ */

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

:root {
  --primary: #0077B6;
  --primary-dark: #005f91;
  --primary-light: #e8f4fd;
  --secondary: #90E0EF;
  --secondary-dark: #48cae4;
  --accent: #00B4D8;
  --dark: #0d1b2a;
  --dark-2: #1b2d3e;
  --text: #1a2332;
  --text-muted: #5a6a7a;
  --border: #e2eaf2;
  --bg: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,119,182,0.08);
  --shadow-md: 0 8px 30px rgba(0,119,182,0.12);
  --shadow-lg: 0 20px 60px rgba(0,119,182,0.15);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--text-muted); line-height: 1.75; }

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

/* ================================================
   BUTTONS
   ================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 15px rgba(0,119,182,0.35); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,182,0.4); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Bouton outline hero — visible sur fond sombre */
.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Badge */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #d1fae5; color: #065f46; }

/* Section header */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Card */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--secondary); }
.card-icon { width: 56px; height: 56px; border-radius: var(--radius); background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.card-icon svg { width: 26px; height: 26px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 32px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--dark); text-decoration: none; }
.navbar-logo .logo-num { color: var(--primary); }
.logo-icon { width: 38px; height: 38px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.9rem; }
.navbar-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.navbar-nav a { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); transition: all var(--transition); }
.navbar-nav a:hover, .navbar-nav a.active { background: var(--primary-light); color: var(--primary); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-phone { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: 8px; font-weight: 500; color: var(--text); font-size: 0.95rem; }
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }

/* ================================================
   HERO
   ================================================ */
.hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0a3d6b 100%); position: relative; overflow: hidden; padding: 96px 0; min-height: 85vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230077B6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-blob { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,119,182,0.2) 0%, transparent 70%); right: -100px; top: -100px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text .badge { margin-bottom: 16px; }
.hero-text h1 { color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.hero-text h1 span { color: var(--secondary); }
.hero-text p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.hero-stats { display: flex; gap: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 450px; object-fit: cover; }
.hero-image-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.hero-image-badge .icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.hero-image-badge .text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.hero-image-badge .text span { font-size: 0.75rem; color: var(--text-muted); }

/* Trust bar */
.trust-bar { background: var(--primary); padding: 14px 0; }
.trust-items { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================
   SECTIONS
   ================================================ */
.services-section { padding: 96px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--secondary); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; margin-bottom: 16px; }
.service-card .price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* ================================================
   PRICING QUICK SECTION
   ================================================ */
.pricing-quick { padding: 96px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(144,224,239,0.2) 100%);
}
.pricing-icon { font-size: 2rem; margin-bottom: 10px; }
.pricing-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 10px; }
.pricing-price { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); font-weight: 800; }
.pricing-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Regions */
.regions-section { padding: 96px 0; }
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.region-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 12px; transition: all var(--transition); text-decoration: none; color: var(--text); }
.region-card:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.region-card:hover p { color: rgba(255,255,255,0.8); }
.region-card:hover .region-icon { background: rgba(255,255,255,0.2); color: white; }
.region-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.region-icon svg { width: 20px; height: 20px; }
.region-card strong { display: block; font-size: 0.875rem; }
.region-card p { font-size: 0.75rem; margin: 0; color: var(--text-muted); }

.whyus-section { padding: 96px 0; background: var(--bg); }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.whyus-image { position: relative; }
.whyus-image img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; }
.whyus-badge { position: absolute; top: 20px; right: -20px; background: var(--primary); color: white; padding: 16px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.whyus-badge .num { font-size: 2rem; font-weight: 800; display: block; }
.whyus-badge span { font-size: 0.75rem; opacity: 0.9; }
.whyus-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.whyus-item { display: flex; gap: 16px; align-items: flex-start; }
.whyus-item-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.whyus-item-icon svg { width: 22px; height: 22px; }
.whyus-item h4 { font-size: 1rem; margin-bottom: 4px; }
.whyus-item p { font-size: 0.875rem; }

.process-section { padding: 96px 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px; box-shadow: 0 4px 15px rgba(0,119,182,0.3); }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }

.testimonials-section { padding: 96px 0; background: var(--dark); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-card p { color: rgba(255,255,255,0.8); margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.9rem; }
.author-name { font-weight: 600; font-size: 0.9rem; color: white; }
.author-city { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 8px; }

/* Devis / Tally */
.devis-section { padding: 96px 0; background: linear-gradient(135deg, var(--primary-light) 0%, rgba(144,224,239,0.2) 100%); }
.devis-header { text-align: center; margin-bottom: 48px; }
.tally-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); width: 100%; }
.tally-intro { text-align: center; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 2px solid var(--border); }
.tally-intro h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.3rem; }
.tally-wrapper iframe { display: block; width: 100%; border: none; }

/* Page hero */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--primary)); }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 650px; }
.page-hero-meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.page-hero-meta .meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* Page content grid */
.page-content { padding: 64px 0; }
.page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow); }
.sidebar-card h4 { margin-bottom: 16px; color: var(--primary); font-size: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { padding: 10px 12px; border-radius: 8px; background: var(--bg); color: var(--text); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; transition: all var(--transition); }
.sidebar-links a:hover { background: var(--primary-light); color: var(--primary); }
.sidebar-cta { background: var(--primary); color: white; border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.sidebar-cta h4 { color: white; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 16px; }

/* Dept / cities */
.dept-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; margin-top: 24px; }
.dept-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; transition: all var(--transition); text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 12px; }
.dept-card:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.dept-card:hover .dept-code { background: rgba(255,255,255,0.2); color: white; }
.dept-code { background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.8rem; padding: 4px 8px; border-radius: 6px; flex-shrink: 0; }
.dept-name { font-size: 0.875rem; font-weight: 500; }

.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-top: 24px; }
.city-link { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 0.875rem; transition: all var(--transition); text-decoration: none; }
.city-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.city-link svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.5; }
.city-link:hover svg { opacity: 1; }

/* Nearby */
.nearby-section { margin-top: 48px; padding-top: 48px; border-top: 2px solid var(--border); }
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; margin-top: 16px; }
.nearby-link { display: flex; flex-direction: column; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; transition: all var(--transition); }
.nearby-link:hover { background: var(--primary-light); border-color: var(--primary); }
.nearby-link strong { font-size: 0.875rem; color: var(--dark); }
.nearby-link span { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.nearby-link .difficulty { display: inline-block; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; font-weight: 600; margin-top: 4px; }
.difficulty-low { background: #d1fae5; color: #065f46; }
.difficulty-medium { background: #fef3c7; color: #92400e; }
.difficulty-high { background: #fee2e2; color: #991b1b; }

/* FAQ */
.faq-section { margin-top: 48px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; cursor: pointer; background: var(--white); font-weight: 600; font-size: 0.95rem; color: var(--dark); transition: background var(--transition); }
.faq-question:hover { background: var(--primary-light); }
.faq-question svg { width: 20px; height: 20px; transition: transform var(--transition); flex-shrink: 0; color: var(--primary); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 16px 24px; background: var(--bg); color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* Services page */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.service-full-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.service-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card-header { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); padding: 28px; color: white; }
.service-card-header h3 { color: white; font-size: 1.15rem; }
.service-card-header .icon { width: 48px; height: 48px; background: rgba(255,255,255,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.service-card-header .icon svg { width: 24px; height: 24px; }
.service-card-body { padding: 24px; flex: 1; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); }
.service-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.service-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.service-price { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.service-price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; font-family: var(--font); display: block; }

/* Listing */
.listing-section { padding: 64px 0; }
.listing-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); align-items: center; }
.listing-filters input, .listing-filters select { padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem; background: var(--bg); color: var(--text); outline: none; transition: border-color var(--transition); }
.listing-filters input:focus, .listing-filters select:focus { border-color: var(--primary); }
.listing-filters input { flex: 1; min-width: 200px; }
.listing-count { font-size: 0.875rem; color: var(--text-muted); margin-left: auto; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.listing-city-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; transition: all var(--transition); text-decoration: none; display: block; }
.listing-city-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.listing-city-card:hover .city-name { color: white; }
.listing-city-card:hover .city-dept { color: rgba(255,255,255,0.7); }
.city-name { font-weight: 600; font-size: 0.875rem; color: var(--dark); display: block; }
.city-dept { font-size: 0.75rem; color: var(--text-muted); }

/* Calculator */
.calculator-section { padding: 64px 0; background: var(--bg); }
.calculator-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); max-width: 800px; margin: 0 auto; }
.calc-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.calc-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.calc-section { margin-bottom: 24px; }
.calc-section-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; color: var(--dark); }
.calc-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.calc-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); }
.calc-option:hover { border-color: var(--secondary); }
.calc-option.active { border-color: var(--primary); background: var(--primary-light); }
.calc-option input[type="checkbox"], .calc-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; }
.calc-option label { font-weight: 500; font-size: 0.875rem; cursor: pointer; }
.calc-result { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 24px; }
.calc-result .total { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); }
.calc-result .label { font-size: 0.9rem; opacity: 0.85; }
.calc-result-details { display: flex; justify-content: center; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.calc-result-detail { font-size: 0.8rem; opacity: 0.8; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--white); text-decoration: none; margin-bottom: 16px; }
.footer-logo .logo-num { color: var(--secondary); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-link:hover { background: var(--primary); color: white; }
.footer-section h5 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* Floating CTA mobile */
.floating-cta { display: none; position: fixed; bottom: 16px; right: 16px; z-index: 999; }
.floating-cta a { display: flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 14px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 20px rgba(0,119,182,0.4); animation: pulse-btn 2s infinite; }
@keyframes pulse-btn { 0%, 100% { box-shadow: 0 4px 20px rgba(0,119,182,0.4); } 50% { box-shadow: 0 4px 30px rgba(0,119,182,0.7); } }

/* Reveal on scroll */
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-image { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-phone { display: none; }
  .navbar-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; padding: 64px 0; }
  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .floating-cta { display: block; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-full-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .regions-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}