@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Roboto:wght@400;500&display=swap');
:root {
  --c-primary: #6366f1;
  --c-dark:    #0a0d14;
  --c-accent:  #8b5cf6;
  --c-bg:      #0f1117;
  --c-text:    #e2e8f0;
  --c-muted:   #94a3b8;
}
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --primary: #0b3d91;
  --accent:  #f4b400;
  --dark:    #080b12;
  --dark2:   #0d1018;
  --card:    #111520;
  --border:  rgba(255,255,255,.09);
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --radius:  12px;
  --shadow:  0 8px 32px rgba(0,0,0,.4);
}
body { background:var(--dark); color:var(--text); font-family:"Inter",sans-serif; line-height:1.65; overflow-x:hidden; }
h1,h2,h3,h4,h5,h6 { font-family:"Outfit",sans-serif; font-weight:700; line-height:1.2; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }

/* ── Navbar ── */
.site-nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(8,11,18,.78);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border); transition:background .3s,box-shadow .3s; }
.site-nav.scrolled { background:rgba(8,11,18,.97); box-shadow:0 4px 32px rgba(0,0,0,.55); }
.nav-inner { max-width:1200px; margin:0 auto; height:68px;
  display:flex; align-items:center; justify-content:space-between; padding:0 1.5rem; }
.nav-brand { display:flex; align-items:center; flex-shrink:0; }
.nav-logo { height:48px; width:auto; max-width:210px; object-fit:contain; display:block; }
.nav-links { display:flex; list-style:none; gap:2rem; }
.nav-links a { color:rgba(255,255,255,.75); font-size:.9rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:#fff; }
.nav-dropdown { position:relative; }
.nav-dropdown-link::before { content:"\f107"; font-family:"Font Awesome 6 Free"; font-weight:900; margin-right:.4rem; font-size:.72rem; opacity:.85; }
.nav-submenu {
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%);
  min-width:250px; max-height:70vh; overflow:auto; list-style:none;
  background:rgba(8,11,18,.98); border:1px solid var(--border); border-radius:8px;
  padding:.55rem; box-shadow:var(--shadow); opacity:0; visibility:hidden;
  transition:opacity .2s, visibility .2s, top .2s;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { top:100%; opacity:1; visibility:visible; }
.nav-submenu a { display:block; padding:.5rem .65rem; border-radius:6px; text-align:left !important; }
.nav-submenu a:hover { background:rgba(255,255,255,.08); }
.nav-toggle { display:none; flex-direction:column; justify-content:center; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px; width:32px; height:32px; }
.nav-toggle span { display:block; height:2px; background:var(--text); border-radius:2px; transition:.3s; }
.nav-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero { min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden; padding:90px 1.5rem 70px; }
.hero-bg { position:absolute; inset:0; background-size:cover;
  background-position:center center; background-repeat:no-repeat; z-index:0; }
.hero-overlay { position:absolute; inset:0; z-index:1;
  background:linear-gradient(160deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.42) 55%,rgba(0,0,0,.72) 100%); }
.hero-inner { position:relative; z-index:2; max-width:1200px; margin:0 auto; width:100%; }
.hero-label { display:inline-block; background:rgba(99,102,241,.18); color:var(--primary);
  border:1px solid rgba(99,102,241,.35); border-radius:50px;
  padding:5px 18px; font-size:.78rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; margin-bottom:1.5rem; }
.hero h1 { font-size:clamp(2.4rem,5vw,4rem); font-weight:800; color:#fff;
  margin-bottom:1.25rem; max-width:700px; text-shadow:0 2px 16px rgba(0,0,0,.4); }
.hero-sub { font-size:1.1rem; color:rgba(255,255,255,.78); max-width:560px;
  margin-bottom:2.5rem; line-height:1.72; }
.hero-ctas { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-primary { background:var(--primary); color:#fff; padding:14px 30px; border-radius:8px;
  font-weight:600; font-size:.95rem; transition:opacity .2s,transform .2s; display:inline-block; }
.btn-primary:hover { opacity:.86; transform:translateY(-2px); }
.btn-outline { border:1.5px solid rgba(255,255,255,.38); color:#fff; padding:13px 30px;
  border-radius:8px; font-weight:600; font-size:.95rem;
  transition:border-color .2s,background .2s; display:inline-block; }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.09); }
.hero-blob { position:absolute; border-radius:50%; filter:blur(90px); opacity:.16;
  pointer-events:none; z-index:1; animation:blobFloat 9s ease-in-out infinite; }
.hero-blob-1 { width:480px; height:480px; background:var(--primary); top:-100px; right:-80px; }
.hero-blob-2 { width:360px; height:360px; background:var(--accent);
  bottom:-80px; left:-60px; animation-duration:12s; animation-direction:reverse; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(28px,-28px) scale(1.07)} }

/* ── Sections ── */
.section { padding:88px 1.5rem; }
.section-alt { background:var(--dark2); }
.section-inner { max-width:1200px; margin:0 auto; }
.section-header { text-align:center; margin-bottom:3.5rem; }
.section-tag { display:inline-block; color:var(--primary); font-size:.78rem;
  font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.6rem; }
.section-title { font-size:clamp(1.8rem,3.5vw,2.6rem); color:var(--text); margin-bottom:.9rem; }
.section-sub { color:var(--muted); max-width:520px; margin:0 auto; line-height:1.7; }

/* ── Stats ── */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.stat-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:2rem 1.5rem; text-align:center; }
.stat-value { font-family:"Outfit",sans-serif; font-size:2.8rem; font-weight:800;
  color:var(--primary); display:block; line-height:1; }
.stat-suffix { font-size:1.6rem; }
.stat-label { color:var(--muted); font-size:.88rem; margin-top:.6rem; display:block; }

/* ── Services ── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.service-card { background:var(--card); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden;
  transition:transform .3s,box-shadow .3s; }
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.service-img { width:100%; height:200px; object-fit:cover; display:block; }
.service-img-placeholder { width:100%; height:200px;
  background:linear-gradient(135deg,var(--card) 0%,rgba(99,102,241,.12) 100%);
  display:flex; align-items:center; justify-content:center; }
.service-img-placeholder i { font-size:2.5rem; color:var(--primary); opacity:.5; }
.service-body { padding:1.5rem; }
.service-icon { width:42px; height:42px; background:rgba(99,102,241,.14);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  margin-bottom:.9rem; }
.service-icon i { color:var(--primary); font-size:1.05rem; }
.service-title { font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:.5rem; }
.service-desc { color:var(--muted); font-size:.88rem; line-height:1.65; }

/* ── About ── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-tag { color:var(--primary); font-size:.78rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; display:block; margin-bottom:.7rem; }
.about-title { font-size:clamp(1.65rem,3vw,2.25rem); margin-bottom:1.1rem; }
.about-lead { color:var(--muted); line-height:1.78; margin-bottom:1.5rem; }
.about-list { list-style:none; margin-bottom:2rem; }
.about-list li { color:var(--text); padding:.45rem 0 .45rem 1.4rem; position:relative; font-size:.95rem; }
.about-list li::before { content:""; position:absolute; left:0; top:50%;
  transform:translateY(-50%); width:8px; height:8px;
  background:var(--primary); border-radius:50%; }
.about-img-wrap { position:relative; }
.about-img { width:100%; border-radius:var(--radius); object-fit:cover; max-height:440px; }
.about-badge { position:absolute; bottom:-20px; left:-20px;
  background:var(--primary); color:#fff; border-radius:var(--radius);
  padding:1.2rem 1.5rem; box-shadow:var(--shadow); font-family:"Outfit",sans-serif; }
.about-badge strong { display:block; font-size:2rem; line-height:1; }
.about-badge span { font-size:.82rem; opacity:.88; }

/* ── Gallery ── */
.gallery-grid { columns:3; column-gap:12px; }
.gallery-item { display:block; width:100%; break-inside:avoid;
  margin-bottom:12px; overflow:hidden; border-radius:var(--radius);
  line-height:0; cursor:pointer; }
.gallery-item img { width:100%; height:165px; object-fit:cover;
  display:block; transition:transform .38s ease; }
.gallery-item:hover img { transform:scale(1.07); }

/* ── Testimonials ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card { background:var(--card); border:1px solid var(--border);
  border-radius:var(--radius); padding:2rem; }
.testi-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:.9rem; }
.testi-stars { color:#f59e0b; font-size:1rem; letter-spacing:.1em; }
.testi-google { display:flex; align-items:center; gap:5px; opacity:.8; }
.testi-google svg { width:16px; height:16px; flex-shrink:0; }
.testi-google-word { font-size:13px; font-weight:500; letter-spacing:-.1px; }
.testi-google-word .gc-b { color:#4285F4; }
.testi-google-word .gc-r { color:#EA4335; }
.testi-google-word .gc-y { color:#FBBC05; }
.testi-google-word .gc-g { color:#34A853; }
.testi-text { color:#cbd5e1; line-height:1.72; font-style:italic;
  font-size:.93rem; margin-bottom:1.4rem; }
.testi-author { display:flex; align-items:center; gap:.75rem; }
.testi-avatar { width:42px; height:42px; border-radius:50%;
  background:rgba(99,102,241,.18); display:flex; align-items:center;
  justify-content:center; font-family:"Outfit",sans-serif;
  font-weight:700; color:var(--primary); font-size:.95rem; flex-shrink:0; }
.testi-name { font-weight:600; color:var(--text); font-size:.92rem; }
.testi-role { color:var(--muted); font-size:.8rem; }

/* ── Contact ── */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:4rem; align-items:start; }
.contact-info-title { font-size:1.5rem; margin-bottom:.7rem; }
.contact-info-sub { color:var(--muted); line-height:1.72; margin-bottom:2rem; }
.contact-item { display:flex; gap:.9rem; align-items:flex-start; margin-bottom:1.4rem; }
.contact-icon { width:42px; height:42px; background:rgba(99,102,241,.12);
  border-radius:10px; display:flex; align-items:center;
  justify-content:center; flex-shrink:0; }
.contact-icon i { color:var(--primary); font-size:.95rem; }
.contact-item-label { font-weight:600; color:var(--text); font-size:.88rem; margin-bottom:.15rem; }
.contact-item-val { color:var(--muted); font-size:.88rem; }
.hours-table { border-collapse:collapse; width:100%; margin-top:.3rem; }
.hours-table td { font-size:.82rem; padding:2px 0; color:var(--muted); vertical-align:top; }
.hours-table td:first-child { color:var(--text); font-weight:600; width:110px; padding-right:.75rem; white-space:nowrap; }
.hours-today td { color:#4ade80 !important; }
.contact-form { background:var(--card); border:1px solid var(--border);
  border-radius:var(--radius); padding:2.25rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-label { display:block; color:var(--muted); font-size:.83rem;
  font-weight:500; margin-bottom:.45rem; }
.form-input { width:100%; padding:12px 15px; background:rgba(255,255,255,.05);
  border:1.5px solid rgba(255,255,255,.11); border-radius:8px;
  color:var(--text); font-size:.93rem; font-family:"Inter",sans-serif;
  outline:none; transition:border-color .2s,background .2s; }
.form-input:focus { border-color:var(--primary); background:rgba(255,255,255,.08); }
.form-input::placeholder { color:rgba(255,255,255,.28); }
textarea.form-input { resize:vertical; min-height:130px; }
.form-btn { width:100%; background:var(--primary); color:#fff; border:none;
  padding:14px; border-radius:8px; font-weight:600; font-size:.97rem;
  cursor:pointer; font-family:"Outfit",sans-serif;
  transition:opacity .2s,transform .2s; margin-top:.5rem; }
.form-btn:hover { opacity:.86; transform:translateY(-1px); }
.form-alert { border-radius:8px; padding:12px 14px; margin-bottom:1.1rem; font-size:.92rem; }
.form-alert-ok { background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.35); color:#bbf7d0; }
.form-alert-error { background:rgba(248,113,113,.12); border:1px solid rgba(248,113,113,.35); color:#fecaca; }
.form-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ── Map ── */
#map-section { background:var(--dark); }
.map-header { max-width:1200px; margin:0 auto; padding:22px 1.5rem;
  display:flex; align-items:center; gap:.75rem; border-bottom:1px solid var(--border); }
.map-header i { color:var(--primary); }
.map-header span { font-family:"Outfit",sans-serif; font-weight:600; color:var(--text); }
#map-section iframe { display:block; width:100%; height:380px; border:0;
  filter:grayscale(20%) contrast(1.05); }

/* ── City SEO pages ── */
.city-hero { min-height:62vh; display:flex; align-items:center; position:relative; overflow:hidden; padding:120px 1.5rem 70px; }
.city-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; }
.city-hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(160deg,rgba(0,0,0,.78),rgba(0,0,0,.46),rgba(0,0,0,.74)); }
.city-hero-inner { position:relative; z-index:2; }
.city-hero h1 { max-width:850px; color:#fff; font-size:clamp(2.2rem,4vw,3.6rem); margin-bottom:1rem; }
.city-hero p { max-width:690px; color:rgba(255,255,255,.8); font-size:1.05rem; margin-bottom:2rem; }
.city-content { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:3rem; align-items:start; }
.city-article { color:#cbd5e1; font-size:1rem; line-height:1.78; }
.city-article h2 { color:#f8fafc; font-size:1.65rem; margin:2rem 0 .75rem; }
.city-article h2:first-of-type { margin-top:1.2rem; }
.city-lead { font-size:1.08rem; color:#e2e8f0; }
.city-sidebar { position:sticky; top:92px; display:grid; gap:1rem; }
.city-card, .city-list-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); }
.city-card { padding:1.5rem; }
.city-card h3 { margin-bottom:.75rem; color:#fff; }
.city-card p, .city-card li { color:var(--muted); font-size:.92rem; }
.city-card ul { padding-left:1.1rem; margin:0; }
.city-card .btn-primary, .city-card .btn-outline { width:100%; text-align:center; margin-top:.75rem; }
.city-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.city-list-card { display:block; padding:1.35rem; transition:transform .2s, border-color .2s; }
.city-list-card:hover { transform:translateY(-3px); border-color:rgba(255,255,255,.24); }
.city-list-card span { display:block; color:var(--primary); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.25rem; }
.city-list-card strong { display:block; color:#fff; font-size:1.15rem; margin-bottom:.5rem; }
.city-list-card small { color:var(--muted); line-height:1.55; display:block; }

/* ── Footer ── */
.site-footer { background:#05070d; border-top:1px solid var(--border); padding:60px 1.5rem 28px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:3rem; margin-bottom:3rem; }
.footer-brand { font-family:"Outfit",sans-serif; font-size:1.25rem; font-weight:800; color:#fff; margin-bottom:.7rem; }
.footer-tagline { color:var(--muted); font-size:.88rem; line-height:1.62; max-width:230px; }
.footer-col-title { color:#fff; font-weight:700; font-size:.83rem;
  margin-bottom:1.1rem; letter-spacing:.07em; text-transform:uppercase; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:.55rem; }
.footer-links a { color:var(--muted); font-size:.88rem; transition:color .2s; }
.footer-links a:hover { color:#fff; }
.footer-contact-line { color:var(--muted); font-size:.88rem; margin-bottom:.5rem;
  display:flex; align-items:center; gap:.5rem; }
.footer-contact-line i { color:var(--primary); width:14px; }
.footer-bottom { border-top:1px solid var(--border); padding-top:1.5rem;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-copy { color:#3d4a5c; font-size:.82rem; }
.footer-socials { display:flex; gap:.6rem; }
.footer-socials a { width:34px; height:34px; border:1px solid var(--border);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:.85rem; transition:color .2s,border-color .2s; }
.footer-socials a:hover { color:#fff; border-color:rgba(255,255,255,.3); }

/* ── Animations ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
.hero-inner > * { animation:fadeUp .7s ease both; }
.hero-inner > *:nth-child(1){animation-delay:.1s}
.hero-inner > *:nth-child(2){animation-delay:.25s}
.hero-inner > *:nth-child(3){animation-delay:.4s}
.hero-inner > *:nth-child(4){animation-delay:.55s}
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ── Cursor glow ── */
#cursor-glow { position:fixed; pointer-events:none; width:420px; height:420px;
  border-radius:50%; z-index:0; top:-999px; left:-999px;
  background:radial-gradient(circle,rgba(99,102,241,.11),transparent 68%);
  transform:translate(-50%,-50%); transition:left .08s linear,top .08s linear; }

/* ── Mobile ── */
@media (max-width:768px) {
  .hero-blob { display:none !important; }
}
@media (max-width:991px) {
  .nav-toggle { display:flex; }
  .nav-links { display:none; flex-direction:column; gap:0;
    position:absolute; top:68px; left:0; right:0;
    background:rgba(8,11,18,.98); border-bottom:1px solid var(--border);
    padding:.5rem 1.5rem 1rem; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:.75rem 0; border-bottom:1px solid var(--border); }
  .nav-submenu {
    position:static; transform:none; min-width:0; max-height:none; overflow:visible;
    display:none; opacity:1; visibility:visible; box-shadow:none; border:0; background:transparent;
    padding:0 0 .35rem 1rem;
  }
  .nav-dropdown.open .nav-submenu { display:block; }
  .nav-dropdown.open .nav-dropdown-link::before { transform:rotate(180deg); }
  .nav-submenu a { padding:.45rem 0; font-size:.86rem; color:rgba(255,255,255,.68) !important; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-img-wrap { order:-1; }
  .testi-grid { grid-template-columns:1fr; gap:1rem; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .city-content { grid-template-columns:1fr; }
  .city-sidebar { position:static; }
  .city-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
}
@media (max-width:600px) {
  .section { padding:56px 1rem; }
  .nav-logo { height:40px; max-width:170px; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-grid { columns:2; column-gap:8px; }
  .gallery-item img { height:125px; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .city-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas a { text-align:center; }
}
@media (max-width:380px) {
  .gallery-grid { columns:1; }
  .gallery-item img { height:195px; }
}

/* ── Floating phone button ── */
.tel-fab { position:fixed; bottom:24px; right:24px; z-index:9999;
  width:58px; height:58px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.35);
  text-decoration:none; transition:transform .2s,box-shadow .2s; }
.tel-fab:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(0,0,0,.45); }
/* generator-patch § hero */
.hero, section.hero, #hero, .hero-section, [class*="hero-wrap"] {
  background-image: none !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 80px !important;
}
.hero::before, section.hero::before, #hero::before,
.hero-section::before, [class*="hero-wrap"]::before {
  content: "" !important;
  position: absolute !important; inset: 0 !important;
  background: linear-gradient(160deg,
    rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.65) 100%) !important;
  z-index: 1 !important;
}
.hero > *, section.hero > *, #hero > *,
.hero-section > *, [class*="hero-wrap"] > * {
  position: relative !important; z-index: 2 !important;
}

/* generator-patch § hero-carousel */
.hero > .gp-carousel, section.hero > .gp-carousel,
#hero > .gp-carousel, .hero-section > .gp-carousel,
[class*="hero-wrap"] > .gp-carousel {
  position: absolute !important; inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.gp-slide {
  position: absolute !important; inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  opacity: 0 !important;
  transition: opacity 1.2s ease-in-out !important;
  z-index: 0 !important;
}
.gp-slide.gp-active { opacity: 1 !important; }
.hero .hero-bg, section.hero .hero-bg, #hero .hero-bg,
.hero-section .hero-bg, [class*="hero-wrap"] .hero-bg {
  display: none !important;
}

/* generator-patch § typography */
body { font-family: "Roboto", sans-serif !important; }
h1, h2,
.navbar-brand, .brand-name,
[class*="hero-title"], [class*="hero"] h1, [class*="hero"] h2
{ font-family: "Barlow Condensed", sans-serif !important; }
h3, h4, h5, h6,
[class*="section-title"], [class*="section-subtitle"],
[class*="card-title"], [class*="card-subtitle"]
{ font-family: "Barlow Condensed", sans-serif !important; }

/* generator-patch § hero-animations */
@keyframes gp-fadeup {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gp-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero .hero-label, .hero [class*="badge"], .hero [class*="tag"],
section.hero .hero-label, #hero .hero-label {
  animation: gp-fadein 0.7s ease 0s both;
}
.hero h1, section.hero h1, #hero h1, .hero-section h1 {
  animation: gp-fadeup 0.8s cubic-bezier(.16,1,.3,1) 0.1s both;
}
.hero p, section.hero p, #hero p, .hero-section p,
.hero .hero-sub, .hero .subtitle, .hero [id*="typed"] {
  animation: gp-fadeup 0.8s cubic-bezier(.16,1,.3,1) 0.28s both;
}
.hero .hero-ctas, .hero .cta-group, .hero [class*="hero-btn"],
section.hero .hero-ctas, #hero .hero-ctas {
  animation: gp-fadein 0.7s ease 0.55s both;
}

/* generator-patch § navbar */
#mainNav, nav.navbar, header nav {
  background: rgba(10,13,20,.82) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  transition: background .3s ease, box-shadow .3s ease !important;
}
#mainNav.scrolled, nav.navbar.scrolled {
  background: rgba(10,13,20,.97) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.45) !important;
}
ul.nav-links, .nav-links {
  text-align: center !important;
  list-style: none !important;
}
#mainNav .nav-link, nav.navbar .nav-link, header nav a,
ul.nav-links li a, .nav-links a {
  color: rgba(226,232,240,.82) !important;
  white-space: nowrap !important;
  text-align: center !important;
  position: relative !important;
  text-decoration: none !important;
  border-radius: 7px !important;
  padding: 6px 14px !important;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease !important;
}
#mainNav .nav-link::after, nav.navbar .nav-link::after,
ul.nav-links li a::after, .nav-links a::after, header nav a::after {
  content: "" !important;
  position: absolute !important;
  bottom: 4px !important;
  left: 50% !important;
  transform: translateX(-50%) scale(0) !important;
  width: 5px !important;
  height: 5px !important;
  background: #818cf8 !important;
  border-radius: 50% !important;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1) !important;
}
#mainNav .nav-link:hover, nav.navbar .nav-link:hover,
ul.nav-links li a:hover, .nav-links a:hover, header nav a:hover {
  color: #ffffff !important;
  background: rgba(129,140,248,.15) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(99,102,241,.18) !important;
}
#mainNav .nav-link:hover::after, nav.navbar .nav-link:hover::after,
ul.nav-links li a:hover::after, .nav-links a:hover::after, header nav a:hover::after {
  transform: translateX(-50%) scale(1) !important;
}
#mainNav .brand-name, #mainNav .navbar-brand,
nav.navbar .navbar-brand { color: #ffffff !important; }
img.gp-logo {
  height: 48px !important; width: auto !important;
  max-height: 60px !important; max-width: 180px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin-right: 8px !important;
  display: inline-block !important;
}

/* generator-patch § gallery */
.gallery-grid, [class*="gallery-grid"], [class*="photo-grid"] {
  columns: 3 !important;
  column-gap: 10px !important;
  width: 100% !important;
}
.gallery-item, [class*="gallery-item"], [class*="photo-item"] {
  display: block !important;
  width: 100% !important;
  break-inside: avoid !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  line-height: 0 !important;
}
.gallery-item img, [class*="gallery-item"] img,
[class*="gallery"] img, [class*="photo-item"] img {
  display: block !important;
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform .35s ease !important;
}
.gallery-item:hover img, [class*="gallery-item"]:hover img {
  transform: scale(1.07) !important;
}

/* generator-patch § contact form */
input:not([type="hidden"]):not([type="submit"]):not([type="button"])
:not([type="checkbox"]):not([type="radio"]),
textarea, select {
  display: block !important;
  width: 100% !important;
  padding: 13px 16px !important;
  margin-bottom: 14px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  border-radius: 8px !important;
  color: #e2e8f0 !important;
  font-size: 0.97rem !important;
  box-sizing: border-box !important;
  outline: none !important;
  transition: border-color .2s !important;
}
input:focus, textarea:focus {
  border-color: var(--c-primary, #6366f1) !important;
  background: rgba(255,255,255,.10) !important;
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,.4) !important;
}
button[type="submit"],
input[type="submit"],
[class*="btn-submit"], [class*="btn-send"],
[class*="form-btn"], [class*="contact-btn"],
[class*="envoyer"], [class*="submit"] {
  display: inline-block !important;
  background: var(--c-primary, #6366f1) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 36px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: opacity .2s !important;
}
button[type="submit"]:hover, [class*="btn-submit"]:hover { opacity: .88 !important; }

/* generator-patch § images global */
img { max-width: 100% !important; }
.card img, [class*="service"] img, [class*="about"] img,
[class*="team"] img, [class*="feature"] img {
  width: 100% !important; max-height: 300px !important;
  object-fit: cover !important; display: block !important;
}

/* generator-patch § testimonials */
[class*="testi"] p, [class*="testi"] blockquote,
[class*="review"] p, [class*="avis"] p { color: #cbd5e1 !important; }
[class*="testi"] [class*="name"], [class*="testi"] strong,
[class*="testi"] [class*="author"] { color: #f1f5f9 !important; }
[class*="testi"] [class*="role"], [class*="testi"] [class*="job"]
{ color: #94a3b8 !important; }
[class*="star"], [class*="rating"] { color: #f59e0b !important; }
.testi-top { display:flex !important; align-items:center !important; justify-content:space-between !important; margin-bottom:.9rem !important; }
.testi-top .testi-stars { margin-bottom:0 !important; }
.testi-google { display:flex !important; align-items:center !important; gap:4px !important; opacity:.85; }
.testi-google svg { width:16px; height:16px; flex-shrink:0; }
.testi-google-word { font-size:13px; font-weight:500; line-height:1; }
.gc-b { color:#4285F4 !important; } .gc-r { color:#EA4335 !important; }
.gc-y { color:#FBBC05 !important; } .gc-g { color:#34A853 !important; }

/* generator-patch § footer */
footer { background: #0a0d14 !important; }
footer p, footer span:not([class*="icon"]),
footer li { color: #94a3b8 !important; }
footer h4, footer h5, footer h6,
footer [class*="brand"], footer [class*="title"] { color: #e2e8f0 !important; }
footer a { color: #94a3b8 !important; text-decoration: none !important; }
footer a:hover { color: #e2e8f0 !important; }
footer small, footer [class*="copy"] { color: #475569 !important; }

/* generator-patch § mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10,13,20,.97) !important;
    padding: 16px !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
  }
  .navbar-collapse .nav-link, #navbarMenu .nav-link {
    color: #e2e8f0 !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: block;
  }
}
@media (max-width: 768px) {
  section { padding: 48px 16px !important; }
  .gallery-grid, [class*="gallery-grid"] { columns: 2 !important; column-gap: 8px !important; }
  .gallery-item img, [class*="gallery"] img { height: 120px !important; }
  h1 { font-size: clamp(1.75rem, 6vw, 2.3rem) !important; }
  h2 { font-size: clamp(1.35rem, 5vw, 1.8rem) !important; }
  .hero { padding-top: 88px !important; padding-bottom: 48px !important; }
  .row > [class^="col-"], .row > [class*=" col-"] {
    flex: 0 0 100% !important; max-width: 100% !important;
  }
  [class*="stats"] [class*="col"], [class*="stat-"] {
  }
}
@media (max-width: 480px) {
  .gallery-grid, [class*="gallery-grid"] { columns: 1 !important; }
  .gallery-item img, [class*="gallery"] img { height: 200px !important; }
}

/* Homepage hero title placement */
.hero#services {
  align-items: flex-start !important;
  padding: 132px 1.5rem 70px !important;
}
.hero#services .hero-inner {
  margin: 0 !important;
  max-width: none !important;
  padding-left: 4rem !important;
}
.hero#services h1 {
  font-size: 7.2rem !important;
  line-height: .95 !important;
  max-width: 960px !important;
  margin-bottom: 1.25rem !important;
}
@media (max-width: 768px) {
  .hero#services {
    padding: 104px 1rem 48px !important;
  }
  .hero#services .hero-inner {
    padding-left: 0 !important;
  }
  .hero#services h1 {
    font-size: 4rem !important;
    max-width: 520px !important;
  }
}
@media (max-width: 480px) {
  .hero#services h1 {
    font-size: 3rem !important;
  }
}
