:root{
  --bg-dark:#050505;
  --bg-dark-2:#0b0b0b;
  --bg-light:#f7f7f8;
  --bg-light-2:#ffffff;

  --text-light:#ffffff;
  --text-dark:#0f1115;
  --text-muted-dark:rgba(15,17,21,.70);
  --text-muted-light:rgba(255,255,255,.76);

  --red:#e10600;
  --red-2:#ff2b1d;
  --red-soft:rgba(225,6,0,.16);

  --border-light:rgba(255,255,255,.14);
  --border-dark:rgba(15,17,21,.10);

  --shadow-dark:0 24px 70px rgba(0,0,0,.40);
  --shadow-light:0 20px 50px rgba(0,0,0,.10);

  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;

  --container:1200px;
  --nav-height:84px;
  --transition:.25s ease;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text-dark);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(225,6,0,.06), transparent 50%),
    linear-gradient(180deg, var(--bg-light-2), var(--bg-light));
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button,input,textarea{font:inherit;}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Navbar */
.navbar{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--nav-height);
  z-index:1000;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-container{
  width:min(1280px, calc(100% - 40px));
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}
.logo img{
  height:48px;
  width:auto;
  object-fit:contain;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}
.nav-menu a{
  color:rgba(255,255,255,.92);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:14px 12px;
  border-radius:10px;
  transition:var(--transition);
}
.nav-menu a:hover{
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  padding-left:14px;
  margin-left:8px;
  border-left:1px solid rgba(255,255,255,.12);
}
.nav-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  transition:var(--transition);
}
.nav-icon:hover{
  background:rgba(225,6,0,.16);
  border-color:rgba(225,6,0,.28);
  transform:translateY(-1px);
}
.nav-dots{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  justify-content:center;
  margin-left:2px;
}
.dot{
  width:7px;
  height:7px;
  border-radius:50%;
}
.dot-solid{
  background:var(--red);
  box-shadow:0 0 14px rgba(225,6,0,.35);
}
.dot-soft{
  background:rgba(225,6,0,.28);
  border:1px solid rgba(225,6,0,.35);
}
.mobile-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:16px;
  align-items:center;
  justify-content:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  transition:all .28s ease;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}

.mobile-toggle:hover{
  background:rgba(255,255,255,.08);
}

.mobile-toggle i{
  transition:transform .28s ease, opacity .28s ease;
}

.mobile-toggle.active i{
  transform:rotate(90deg);
}

.mobile-menu{
  position:absolute;
  top:100%;
  left:12px;
  right:12px;
  z-index:999;

  max-height:0;
  opacity:0;
  overflow:hidden;

  transform:translateY(-14px) scale(.985);
  transform-origin:top center;

  pointer-events:none;

  border-radius:24px;

  background:
    radial-gradient(320px 160px at 88% 12%, rgba(225,6,0,.24), transparent 55%),
    radial-gradient(260px 120px at 12% 0%, rgba(255,43,29,.10), transparent 52%),
    linear-gradient(180deg, rgba(20,20,20,.96) 0%, rgba(6,6,6,.98) 100%);

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    0 28px 60px rgba(0,0,0,.46),
    0 0 0 1px rgba(225,6,0,.08),
    0 0 36px rgba(225,6,0,.10);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  transition:
    max-height .40s cubic-bezier(.22,.61,.36,1),
    opacity .28s ease,
    transform .30s ease,
    box-shadow .30s ease;
}

/* gradient border glow */
.mobile-menu::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;

  background:linear-gradient(
    135deg,
    rgba(255,255,255,.14),
    rgba(225,6,0,.20),
    rgba(255,255,255,.06),
    rgba(225,6,0,.10)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite:xor;
          mask-composite:exclude;

  pointer-events:none;
  opacity:.9;
}

/* glowing top edge */
.mobile-menu::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;

  height:2px;
  border-radius:999px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(225,6,0,.85),
    transparent
  );

  box-shadow:0 0 20px rgba(225,6,0,.35);
  pointer-events:none;
}

/* open state */
.mobile-menu.active{
  max-height:420px;

  opacity:1;
  transform:translateY(14px) scale(1);

  pointer-events:auto;

  box-shadow:
    0 32px 80px rgba(0,0,0,.52),
    0 0 0 1px rgba(225,6,0,.12),
    0 0 50px rgba(225,6,0,.16);
}

.mobile-menu-inner{
  padding:14px 16px 16px;
}

.mobile-menu-item{
  display:block;
  color:#fff;
  padding:14px 4px;
  font-weight:800;
  font-size:17px;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:color .22s ease, padding-left .22s ease;

  opacity:0;
  transform:translateY(10px);
}

.mobile-menu.active .mobile-menu-item{
  opacity:1;
  transform:translateY(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1){ transition:opacity .28s ease .06s, transform .28s ease .06s, color .22s ease, padding-left .22s ease; }
.mobile-menu.active .mobile-menu-item:nth-child(2){ transition:opacity .28s ease .11s, transform .28s ease .11s, color .22s ease, padding-left .22s ease; }
.mobile-menu.active .mobile-menu-item:nth-child(3){ transition:opacity .28s ease .16s, transform .28s ease .16s, color .22s ease, padding-left .22s ease; }
.mobile-menu.active .mobile-menu-item:nth-child(4){ transition:opacity .28s ease .21s, transform .28s ease .21s, color .22s ease, padding-left .22s ease; }

.mobile-menu-item:hover{
  color:#ff2a1d;
  padding-left:8px;
}

.mobile-menu-separator{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  margin:14px 0 16px;

  opacity:0;
  transform:translateY(8px);
  transition:opacity .25s ease .24s, transform .25s ease .24s;
}

.mobile-menu.active .mobile-menu-separator{
  opacity:1;
  transform:translateY(0);
}

.mobile-menu-icons{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.mobile-menu-icon{
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  transition:background .24s ease, border-color .24s ease, transform .24s ease;

  opacity:0;
  transform:translateY(10px);
}

.mobile-menu.active .mobile-menu-icon{
  opacity:1;
  transform:translateY(0);
}

.mobile-menu.active .mobile-menu-icon:nth-child(1){ transition:opacity .28s ease .28s, transform .28s ease .28s, background .24s ease, border-color .24s ease; }
.mobile-menu.active .mobile-menu-icon:nth-child(2){ transition:opacity .28s ease .33s, transform .28s ease .33s, background .24s ease, border-color .24s ease; }
.mobile-menu.active .mobile-menu-icon:nth-child(3){ transition:opacity .28s ease .38s, transform .28s ease .38s, background .24s ease, border-color .24s ease; }
.mobile-menu.active .mobile-menu-icon:nth-child(4){ transition:opacity .28s ease .43s, transform .28s ease .43s, background .24s ease, border-color .24s ease; }

.mobile-menu-icon:hover{
  transform:translateY(-2px);
  background:rgba(225,6,0,.16);
  border-color:rgba(225,6,0,.24);
}

.mobile-menu-icons i{
  font-size:18px;
}

/* Hero */
.hero{
  position:relative;
  min-height:100vh;
  padding-top:var(--nav-height);
  background:#000;
}
.hero-slider{
  width:100%;
  height:calc(100vh - var(--nav-height));
  min-height:720px;
}
.hero-slide{
  position:relative;
  display:flex;
  align-items:center;
  min-height:100%;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  isolation:isolate;
}
.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.52) 40%, rgba(0,0,0,.28) 68%, rgba(0,0,0,.18) 100%),
    radial-gradient(900px 600px at 18% 38%, rgba(225,6,0,.14), transparent 55%);
  z-index:0;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-content{
  position:relative;
  z-index:1;
  width:min(700px, calc(100% - 40px));
  margin-left:clamp(24px, 8vw, 140px);
  color:var(--text-light);
  animation:heroFadeUp .8s ease both;
}
@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(18px);}
  to{opacity:1;transform:translateY(0);}
}
.hero-location{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  margin-bottom:18px;
  font-size:15px;
  font-weight:500;
}
.hero h1,
.hero h2{
  margin:0 0 14px;
  font-family:"Cinzel",serif;
  font-size:clamp(32px, 4.4vw, 56px);
  line-height:1.06;
  letter-spacing:.01em;
  font-weight:700;
  text-transform:none;
}
.hero p{
  width:min(560px, 100%);
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:clamp(16px, 1.4vw, 19px);
  line-height:1.65;
}
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}
.btn-glass-red{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:16px;
  font-weight:800;
  font-size:15px;
  color:#fff;
  background:linear-gradient(135deg, rgba(225,6,0,.20), rgba(255,43,29,.12));
  border:1px solid rgba(225,6,0,.34);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 28px rgba(225,6,0,.12);
  transition:var(--transition);
}
.btn-glass-red:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg, rgba(225,6,0,.28), rgba(255,43,29,.18));
  box-shadow:0 18px 34px rgba(225,6,0,.18);
}

/* Shared buttons */
.btn-dark,
.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 24px;
  border-radius:16px;
  font-weight:800;
  font-size:16px;
  transition:var(--transition);
}
.btn-dark{
  color:#fff;
  background:linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow:0 18px 44px rgba(225,6,0,.26);
}
.btn-dark:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 52px rgba(225,6,0,.32);
}
.btn-light{
  color:var(--text-dark);
  background:#fff;
  border:1px solid rgba(15,17,21,.10);
  box-shadow:var(--shadow-light);
}
.btn-light:hover{
  transform:translateY(-2px);
}

/* Swiper */
.swiper-pagination{bottom:26px !important;}
.swiper-pagination-bullet{
  width:11px !important;
  height:11px !important;
  background:rgba(255,255,255,.68) !important;
  opacity:.75 !important;
  transition:var(--transition);
}
.swiper-pagination-bullet-active{
  background:var(--red) !important;
  opacity:1 !important;
  transform:scale(1.1);
}

/* Sections */
section{position:relative;}
.section-light{
  padding:110px 0;
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(225,6,0,.05), transparent 50%),
    linear-gradient(180deg, var(--bg-light-2), var(--bg-light));
}
.section-dark{
  padding:110px 0;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(225,6,0,.16), transparent 48%),
    linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  color:#fff;
}
.section-intro{
  margin-bottom:34px;
}
.section-intro.center{
  text-align:center;
}
.section-intro.light p{
  color:var(--text-muted-light);
}
.section-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--red);
}
.section-intro h2{
  margin:0 0 14px;
  font-family:"Cinzel",serif;
  font-size:clamp(34px, 4vw, 54px);
  line-height:1.05;
  text-transform:uppercase;
}
.section-intro h2 span{color:var(--red);}
.section-intro p,
.about-copy p,
.standard-item p,
.service-card p,
.contact-card p,
.form-head p,
.seo-text p{
  line-height:1.7;
}
.section-light .section-intro p{color:var(--text-muted-dark);}
.section-dark .section-intro p{color:var(--text-muted-light);}

/* About */
.about-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.about-copy{
  padding:34px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.75);
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-light);
}
.about-copy .lead{
  font-size:20px;
  font-weight:600;
  color:var(--text-dark);
  margin:0 0 16px;
}
.about-copy p:last-of-type{
  margin:0;
  color:var(--text-muted-dark);
}
.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.about-points{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.point-card{
  padding:24px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-light);
}
.point-icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, var(--red), var(--red-2));
  color:#fff;
  box-shadow:0 14px 30px rgba(225,6,0,.22);
  margin-bottom:16px;
}
.point-card h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
}
.point-card p{
  margin:0;
  color:var(--text-muted-dark);
}
.stats-row{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.stat-box{
  padding:22px 18px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-light);
  text-align:center;
}
.stat-box strong{
  display:block;
  font-size:22px;
  font-weight:800;
  color:var(--red);
  margin-bottom:6px;
}
.stat-box span{
  color:var(--text-muted-dark);
  font-weight:600;
  font-size:14px;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.service-card{
  padding:30px 24px 26px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-dark);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(500px 160px at 0% 0%, rgba(225,6,0,.14), transparent 45%);
  opacity:.8;
  pointer-events:none;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(225,6,0,.24);
  background:rgba(255,255,255,.08);
}
.service-icon-wrap{
  width:60px;
  height:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg, rgba(225,6,0,.96), rgba(255,43,29,.84));
  box-shadow:0 14px 30px rgba(225,6,0,.24);
  font-size:22px;
  margin-bottom:18px;
  position:relative;
  z-index:1;
}
.service-card h3{
  margin:0 0 10px;
  font-size:22px;
  font-weight:800;
  position:relative;
  z-index:1;
}
.service-card p{
  margin:0 0 16px;
  color:var(--text-muted-light);
  position:relative;
  z-index:1;
}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  position:relative;
  z-index:1;
}
.service-link i{
  color:var(--red);
}

/* Standards */
.standards-band{
  padding:34px 0;
  background:linear-gradient(180deg, #0b0b0b, #111);
  color:#fff;
}
.standards-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.standard-item{
  padding:26px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.standard-item i{
  color:var(--red);
  font-size:22px;
  margin-bottom:14px;
}
.standard-item h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
}
.standard-item p{
  margin:0;
  color:var(--text-muted-light);
}

/* Contact */
.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
}
.contact-cards{
  display:grid;
  gap:14px;
}
.contact-card{
  display:flex;
  gap:16px;
  padding:24px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-light);
  transition:var(--transition);
}
.contact-card:hover{
  transform:translateY(-4px);
}
.contact-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, var(--red), var(--red-2));
  color:#fff;
  box-shadow:0 14px 30px rgba(225,6,0,.22);
}
.contact-card h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
}
.contact-card p{
  margin:0 0 6px;
  color:var(--text-muted-dark);
}
.contact-card strong{
  color:var(--red);
}
.contact-form-wrap{
  display:grid;
  gap:14px;
}
.contact-map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}
.map-card{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-light);
  background:#fff;
}
.form{
  border-radius:24px;
  border:1px solid var(--border-dark);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-light);
  padding:26px;
}
.form-head h3{
  margin:0 0 8px;
  font-size:24px;
  font-weight:800;
}
.form-head p{
  margin:0;
  color:var(--text-muted-dark);
}
.form-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}
.form-grid label{
  display:grid;
  gap:8px;
}
.form-grid label span{
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(15,17,21,.76);
}
.form-grid .full{
  grid-column:span 2;
}
input,textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(15,17,21,.12);
  background:rgba(255,255,255,.92);
  color:var(--text-dark);
  outline:none;
  font-weight:600;
}
input:focus,textarea:focus{
  border-color:rgba(225,6,0,.30);
  box-shadow:0 0 0 4px rgba(225,6,0,.10);
}
.form-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hidden{display:none;}

/* SEO text */
.seo-text{
  padding:80px 0;
  background:#f6f6f6;
}
.seo-text h2{
  margin:0 0 18px;
  font-family:"Cinzel",serif;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.15;
}
.seo-text p{
  max-width:900px;
  margin:0 0 15px;
  color:var(--text-muted-dark);
}

/* Footer */
.footer{
  padding:44px 0;
  background:linear-gradient(180deg, #080808, #000);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
}
.footer-logo{
  height:48px;
  width:auto;
  margin-bottom:14px;
}
.footer-left p{
  margin:0;
  max-width:540px;
  color:rgba(255,255,255,.74);
  line-height:1.7;
}
.footer-links{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
.footer-links a{
  padding:8px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.90);
}
.footer-links a:hover{background:rgba(255,255,255,.06);}
.footer-social{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-bottom:12px;
}
.footer-social a{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.footer-social a:hover{
  background:rgba(225,6,0,.16);
  border-color:rgba(225,6,0,.26);
}
.footer-copy{
  margin:0 0 8px;
  color:rgba(255,255,255,.52);
  font-weight:700;
  text-align:right;
}
.footer-credit{
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:14px;
  text-align:right;
}
.footer-credit a{
  color:#fff;
  font-weight:700;
}
.footer-credit a:hover{
  color:var(--red-2);
}

/* Responsive */
@media (max-width:1100px){
  .hero-content{margin-left:clamp(24px, 5vw, 80px);}
  .about-layout{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:repeat(2, 1fr);}
  .services-grid{grid-template-columns:repeat(2, 1fr);}
  .standards-grid{grid-template-columns:repeat(2, 1fr);}
  .contact-layout{grid-template-columns:1fr;}
}

@media (max-width:900px){
  .nav-menu,.nav-actions{display:none;}
  .mobile-toggle{display:inline-flex;}
  .hero-slider{min-height:640px;}
  .hero-content{
    width:min(92%, 680px);
    margin:0 auto;
  }
  .hero h1,.hero h2{font-size:clamp(30px, 7vw, 48px);}
  .hero p{font-size:17px;}
  .about-points{grid-template-columns:1fr 1fr;}
  .footer-inner{flex-direction:column;}
  .footer-links,.footer-social{justify-content:flex-start;}
  .footer-copy,.footer-credit{text-align:left;}
}

@media (max-width:680px){
  .nav-container{width:min(100%, calc(100% - 24px));}
  .logo img{height:42px;}
  .hero{padding-top:76px;}
  .hero-slider{
    height:calc(100vh - 76px);
    min-height:560px;
  }
  .hero-slide{padding:50px 16px 60px;}
  .hero-location{
    font-size:13px;
    padding:10px 14px;
  }
  .hero h1,.hero h2{
    font-size:clamp(28px, 9vw, 40px);
    margin-bottom:12px;
  }
  .hero p{font-size:15px;}
  .hero-buttons{gap:10px;}
  .btn-glass-red,.btn-dark,.btn-light{width:100%;}
  .section-light,.section-dark{padding:84px 0;}
  .about-copy{padding:24px;}
  .about-points{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .service-card{text-align:center;}
  .standards-grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .form-grid .full{grid-column:span 1;}
}


.service-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}

.service-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:700;
  color:#e10600;
}

.service-more i{
  font-size:12px;
  transition:.25s;
}

.service-card:hover .service-more i{
  transform:translateX(4px);
}

.service-call{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  font-size:13px;
  font-weight:700;
  background:linear-gradient(135deg,#e10600,#ff2a1d);
  color:#fff;
  border-radius:20px;
}

.service-call i{
  font-size:12px;
}

.mobile-sticky-bar{
  display:none;
}

@media (max-width: 768px){
  .mobile-sticky-bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:1200;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;

    padding:10px;
    border-radius:22px;

    background:rgba(10,10,10,.82);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 40px rgba(0,0,0,.30);
  }

  .sticky-btn{
    min-height:52px;
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    font-size:14px;
    font-weight:800;
    color:#fff;
  }

  .sticky-btn--whatsapp{
    background:linear-gradient(135deg, rgba(37,211,102,.92), rgba(18,140,70,.92));
  }

  .sticky-btn--call{
    background:linear-gradient(135deg, #e10600, #ff2a1d);
  }

  body{
    padding-bottom:84px;
  }
}
.hero-slide--main .hero-content h1 span,
.hero-slide--main .hero-content h2 span{
  color: var(--red);
}

.hero-slide--porsche .hero-content h1 span,
.hero-slide--porsche .hero-content h2 span{
  color: #ff2f20;
  text-shadow: 0 0 18px rgba(225,6,0,.22);
}

.hero-slide--vag .hero-content h1 span,
.hero-slide--vag .hero-content h2 span{
  color: #d9dde3;
  text-shadow: 0 0 18px rgba(255,255,255,.10);
}

/* =========================================================
   Service Detail Pages
   ========================================================= */

.service-hero{
  position: relative;
  min-height: 72vh;
  padding-top: var(--nav-height);
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.24) 72%, rgba(0,0,0,.16) 100%),
    radial-gradient(900px 600px at 18% 34%, rgba(225,6,0,.14), transparent 55%);
  z-index: 0;
}

.service-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.service-hero__content{
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(24px, 8vw, 140px);
  color: #fff;
  padding: 56px 0;
}

.breadcrumbs{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}

.breadcrumbs a{
  color: #fff;
}

.breadcrumbs span{
  opacity: .7;
}

.service-hero__content h1{
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.04;
  text-transform: uppercase;
}

.service-hero__content p{
  width: min(620px, 100%);
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.90);
}

.service-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-wrap{
  padding: 92px 0;
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(225,6,0,.05), transparent 50%),
    linear-gradient(180deg, var(--bg-light-2), var(--bg-light));
}

.service-shell{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

.service-main{
  display: grid;
  gap: 18px;
}

.service-block{
  padding: 30px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-light);
}

.service-block h2{
  margin: 0 0 14px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.15;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: var(--text-dark);
}

.service-block p{
  margin: 0 0 14px;
  color: var(--text-muted-dark);
  line-height: 1.8;
  font-size: 17px;
}

.service-block p:last-child{
  margin-bottom: 0;
}

.service-list{
  margin: 0;
  padding-left: 22px;
}

.service-list li{
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
}

.service-side{
  display: grid;
  gap: 16px;
  position: sticky;
  top: 104px;
}

.side-card{
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b0b0b, #050505);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-dark);
}

.side-card h3{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.side-card p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.side-card .mini-links{
  display: grid;
  gap: 10px;
}

.side-card .mini-links a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-weight: 700;
}

.side-card .mini-links a:hover{
  background: rgba(225,6,0,.16);
  border-color: rgba(225,6,0,.24);
}

.related-links{
  display: grid;
  gap: 10px;
}

.related-links a{
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.related-links a:hover{
  background: rgba(225,6,0,.16);
  border-color: rgba(225,6,0,.24);
}

@media (max-width: 980px){
  .service-shell{
    grid-template-columns: 1fr;
  }

  .service-side{
    position: static;
    top: auto;
  }
}

@media (max-width: 680px){
  .service-hero{
    min-height: 62vh;
  }

  .service-hero__content{
    width: min(92%, 100%);
    margin: 0 auto;
  }

  .service-block{
    padding: 24px 20px;
  }

  .service-block p{
    font-size: 16px;
  }

  .service-hero__actions .btn-glass-red,
  .service-hero__actions .btn-dark{
    width: 100%;
  }
}


.local-seo-strip{
  padding:28px 0 50px;
  background:linear-gradient(180deg, #f7f7f8 0%, #f1f2f4 100%);
}

.local-seo-box{
  padding:28px 24px;
  border-radius:24px;
  background:
    radial-gradient(320px 120px at 90% 0%, rgba(225,6,0,.08), transparent 55%),
    rgba(255,255,255,.78);
  border:1px solid rgba(15,17,21,.08);
  box-shadow:0 18px 44px rgba(0,0,0,.08);
}

.local-seo-box h2{
  margin:0 0 12px;
  font-family:"Cinzel", serif;
  font-size:clamp(24px, 2.6vw, 34px);
  line-height:1.15;
  color:#0f1115;
}

.local-seo-box p{
  margin:0 0 14px;
  color:rgba(15,17,21,.72);
  line-height:1.8;
}

.local-seo-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

.local-seo-tags span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(225,6,0,.08);
  border:1px solid rgba(225,6,0,.14);
  color:#8f120c;
  font-size:13px;
  font-weight:700;
}

@media (max-width:680px){
  .local-seo-box{
    padding:22px 18px;
  }
}


/* FAQ Section */
.service-faq{
  padding:70px 0;
  background:#f5f6f7;
}

.faq-grid{
  max-width:900px;
  margin:auto;
}

.faq-item{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  margin-bottom:14px;
  overflow:hidden;
  transition:
    box-shadow .35s ease,
    border-color .35s ease,
    transform .25s ease;
}

.faq-item:hover{
  box-shadow:0 16px 36px rgba(0,0,0,.08);
}

.faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:0;
  background:linear-gradient(180deg, #e10600, #ff2a1d);
  box-shadow:0 0 18px rgba(225,6,0,.18);
  transition:width .35s ease;
  z-index:0;
}

.faq-item[open]{
  border-color:rgba(225,6,0,.18);
  box-shadow:
    0 16px 40px rgba(0,0,0,.08),
    0 0 0 1px rgba(225,6,0,.08),
    0 0 24px rgba(225,6,0,.08);
}

.faq-item[open]::before{
  width:4px;
}

/* Remove default marker */
.faq-item summary{
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

/* Question */
.faq-question{
  position:relative;
  z-index:1;
  padding:20px 22px;
  font-size:18px;
  font-weight:600;
  color:#111;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  cursor:pointer;
  transition:padding-left .3s ease, color .25s ease;
}

.faq-item[open] .faq-question{
  padding-left:28px;
  color:#0f1115;
}

/* Icon */
.faq-icon{
  color:#c40c0c;
  font-size:14px;
  transition:
    transform .35s ease,
    color .25s ease;
  flex-shrink:0;
}

.faq-item[open] .faq-icon{
  transform:rotate(45deg) scale(1.08);
  color:#e10600;
}

/* Answer */
.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:
    grid-template-rows .45s ease,
    opacity .35s ease,
    transform .35s ease;
  opacity:0;
  transform:translateY(-6px);
  position:relative;
  z-index:1;
}

.faq-answer-inner{
  overflow:hidden;
}

.faq-answer p{
  margin:0;
  padding:0 22px 22px 22px;
  color:#555;
  line-height:1.75;
}

.faq-item[open] .faq-answer{
  grid-template-rows:1fr;
  opacity:1;
  transform:translateY(0);
}

@media (max-width:680px){
  .faq-question{
    font-size:16px;
    padding:18px 18px;
  }

  .faq-item[open] .faq-question{
    padding-left:22px;
  }

  .faq-answer p{
    padding:0 18px 18px 18px;
  }
}