body {
  margin: 0;
  font-family: Inter, sans-serif;
  transition: 0.3s;

  /* =========================
     LIGHT MODE (DEFAULT)
  ========================= */
--fade: linear-gradient(
    75deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.90) 20%,
    rgba(255, 255, 255, 0.70) 35%,
    rgba(255, 255, 255, 0.50) 50%,
    rgba(255, 255, 255, 0.00) 70%

	
  );
}



body.dark {

--fade: linear-gradient(
    75deg,
    rgba(17, 17, 17, 0.98) 0%,
    rgba(17, 17, 17, 0.90) 20%,
    rgba(17, 17, 17, 0.70) 35%,
    rgba(17, 17, 17, 0.50) 50%,
    rgba(17, 17, 17, 0.00) 70%
  	
  );
}



body {
  background: var(--bg);
  color: var(--text);
}

*{box-sizing:border-box}
html,body{
  margin:0;

}

body.nav-open{overflow:hidden}

/* NAV */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:20;
  background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
}

.nav-wrap{
  max-width:99%;
  margin:auto;
  padding:22px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
  color:#fff;
}

.logo span{color:var(--blue)}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  opacity:.9;
}

.nav-links a:hover{opacity:1;color:#8fc4ff}

.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:var(--blue);
  color:#fff!important;
  box-shadow:0 10px 30px rgba(0,119,255,.35);
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  cursor:pointer;
}

.menu-btn span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:5px auto;
  transition:.25s;
}

/* HERO */
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;

}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
  background-size:cover;
  background-position:center;
}

.hero-slide.active{opacity:1}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,17,31,.88) 0%, rgba(7,17,31,.58) 45%, rgba(7,17,31,.15) 100%),
    linear-gradient(0deg, rgba(7,17,31,.65), rgba(7,17,31,.05));
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:960px;
  padding:140px 6% 80px;
}

.kicker{
  display:inline-block;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#d8eaff;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.hero h1{
  font-size:clamp(2.6rem, 6vw, 4rem);
  line-height:.95;
  margin:0 0 24px;
  letter-spacing:-.06em;
  color:white;
}
.hero h2{
color:white;
}
.hero p{
  max-width:620px;
  font-size:clamp(1.05rem, 2vw, 1.3rem);
  line-height:1.6;
  color:white;
  margin:0 0 34px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 16px 42px rgba(0,119,255,.38);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
}

.hero-panel{
  position:absolute;
  right:6%;
  bottom:7%;
  z-index:2;
  width:min(420px, 88%);
  padding:24px;
  border-radius:26px;
  background:var(--glass);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
 color:white;
}
.bannermessage{ text-align:center}
.hero-panel h3{
  margin:0 0 8px;
  font-size:1.15rem;
}

.hero-panel p{
  margin:0;
  color:#c8d5e6;
  line-height:1.5;
  font-size:.95rem;
}

/* DOTS */
.hero-dots{
  position:absolute;
  left:6%;
  bottom:38px;
  z-index:3;
  display:flex;
  gap:10px;
}

.hero-dots button{
  width:34px;
  height:4px;
  border:0;
  border-radius:99px;
  background:rgba(255,255,255,.35);
  cursor:pointer;
}

.hero-dots button.active{background:#fff}

/* CONTENT PREVIEW */
.section{
  background:#fff;
  color:#102033;
  padding:80px 6%;
}

.section-inner{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  padding:32px;
  border-radius:24px;
  background:#f5f8fc;
  border:1px solid #e2e8f0;
  min-height:200px;
}

.card h3{margin-top:0}

/* MOBILE */
@media(max-width:860px){
  .menu-btn{display:block;z-index:30}

  .nav-links{
    position:fixed;
    inset:0;
    background:rgba(7,17,31,.96);
    backdrop-filter:blur(20px);
    flex-direction:column;
    justify-content:center;
    gap:24px;
    transform:translateX(100%);
    transition:.3s ease;
  }

  body.nav-open .nav-links{
    transform:translateX(0);
  }

  body.nav-open .menu-btn span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-btn span:nth-child(2){
    opacity:0;
  }

  body.nav-open .menu-btn span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .hero{
    align-items:flex-end;
  }

  .hero:after{
    background:linear-gradient(0deg, rgba(7,17,31,.95) 0%, rgba(7,17,31,.6) 58%, rgba(7,17,31,.25) 100%);
  }

  .hero-content{
    padding:130px 6% 150px;
  }

  .hero-panel{
    display:none;
  }

  .hero-dots{
    bottom:26px;
  }

  .section-inner{
    grid-template-columns:1fr;
  }
}
/* SCROLLED HEADER */
.site-header{
  transition:.28s ease;
}

.site-header.scrolled{
  background:#fff;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.site-header.scrolled .logo,
.site-header.scrolled .nav-links a{
  color:#07111f;
}

.site-header.scrolled .logo span{
  color:var(--blue);
}

.site-header.scrolled .nav-cta{
  color:#fff;
}

.site-header.scrolled .menu-btn{
  background:#eef3f8;
}

.site-header.scrolled .menu-btn span{
  background:#07111f;
}
.section-head{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}

.section-head h2,
.split-content h2,
.process-section h2,
.cta-section,
.cta-wrap h2{
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.05;
  letter-spacing:-.04em;
  margin:10px 0 16px;
}

.section-head p{
  color:#5d6b7d;
  font-size:1.1rem;
  line-height:1.6;
}

.eyebrow{
  color:var(--blue);
  font-size:.78rem;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.12em;
}

.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:680px;
  background:#07111f;
}

.split-image{
  background:url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1400&q=80') center/cover;
}
.cover{ background-position:center center; background-size:cover;}
.split-content{
  padding:100px 8%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}

.split-content p{
  color:#d8e1ec;
  font-size:1.1rem;
  line-height:1.7;
}

.check-list{
  margin-top:24px;
}

.check-list p{
  margin:10px 0;
  color:#fff;
  font-weight:700;
}

.stats-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#f5f8fc;
  color:#07111f;
  border-top:1px solid #e3eaf2;
  border-bottom:1px solid #e3eaf2;
}

.stat{
  padding:54px 24px;
  text-align:center;
  border-right:1px solid #e3eaf2;
}

.stat:last-child{
  border-right:0;
}

.stat strong{
  display:block;
  font-size:clamp(2rem, 4vw, 4rem);
  letter-spacing:-.06em;
  color:var(--blue);
}

.stat span{
  display:block;
  margin-top:8px;
  font-weight:800;
}

.process-section{
  background:#fff;
  color:#07111f;
  padding:90px 6%;
}

.process-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.process-card{
  padding:34px;
  border-radius:26px;
  background:#f5f8fc;
  border:1px solid #e1e8f0;
}

.process-card span{
  display:inline-flex;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#07111f;
  color:#fff;
  font-weight:900;
  margin-bottom:22px;
}

.process-card h3{
  margin:0 0 10px;
}

.process-card p{
  color:#5d6b7d;
  line-height:1.6;
}

.cta-section{
  padding:110px 6%;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(7,17,31,.86), rgba(7,17,31,.86)),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.cta-section p{
  max-width:620px;
  margin:0 auto 30px;
  color:#d9e4ef;
  font-size:1.15rem;
  line-height:1.6;
}

@media(max-width:860px){
  .split-section,
  .stats-section,
  .process-grid{
    grid-template-columns:1fr;
  }

  .split-image{
    min-height:360px;
  }

  .split-content{
    padding:70px 6%;
  }

  .stat{
    border-right:0;
    border-bottom:1px solid #e3eaf2;
  }
}
.topbar{

    height:38px;

    background:#06111d;

    color:#c6d2df;

    font-size:.82rem;

}

.topbar-inner{

    max-width:1500px;

    height:100%;

    margin:auto;

    padding:0 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-links{

    display:flex;

    gap:25px;

}

.top-links a{

    color:#c6d2df;

    text-decoration:none;

}

.top-links a:hover{

    color:white;

}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:15px;

  max-width:1100px;
  margin:0 auto;
  padding:0 15px;

  box-sizing:border-box;
}


.cta-wrap{
  padding:80px 20px;
  background:linear-gradient(135deg,var(--bg),var(--card));
  text-align:center;
  border-top:1px solid var(--border);
}

.tools-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 300px));
  gap:15px;
  margin-top:30px;
  justify-content:center;
}
.tool-card,
.cta-box{
  background:
    linear-gradient(180deg, var(--button), var(--card)),
    var(--card);

  border:3px solid var(--border);
  border-radius:12px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
	

}
.tool-card img{ max-width:90%;
  max-width:90%;
  max-height:90%;
  width:auto;
  height:auto;
  object-fit:contain;}
  .tool-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:25px;
  text-align:center;
  
}
.tool-card img{ height:150px;}




.footercover{background-color:rgba(0,0,0,0.3); }
footer a{ color:#fff; text-decoration:none; }

.footer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding:20px 10px;
}

/* BUTTON = MAX 50% WIDTH */
.footer-btn{
 text-align:center;
  align-items:center;
  justify-content:center;
  width:155px; overflow:hidden;

  padding:12px 14px;
  border-radius:10px;
  font-size:14px;

  text-decoration:none;
   border:1px solid #fff;
  color:#fff;
  background:#555;

  transition:0.2s ease;

  /* TEXT HANDLING */
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:4em;
  
  
}

/* HOVER */
.footer-btn:hover{
  transform:translateY(-2px);
  border-color:var(--button);
  color:var(--text);
}

/* PRIMARY */
.footer-btn.primary{
  background:#ff6a00;
  border-color:var(--button);
  color:#fff;
  font-weight:600;
  box-shadow:0 8px 20px rgba(255,106,0,0.25);
}

/* LIGHT MODE */

.service-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}



.contact-form{
  max-width:700px;
  margin:30px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-row{
  display:flex;
  gap:12px;
}

.form-row input{
  flex:1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.55);
  background:#fff;
  color:#000;
  font-size:14px;
  outline:none;
  transition:0.2s;
}

/* TEXTAREA */
.contact-form textarea{
  min-height:60px;
  resize:vertical;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#ff6a00;
  box-shadow:0 0 0 1px rgba(255,106,0,0.3);
}

/* BUTTON */
.form-btn{
  margin-top:10px;
  padding:14px;
  border-radius:10px;
  border:none;
  font-size:15px;
  cursor:pointer;
}

/* PRIMARY CTA */
.form-btn.primary{
  background:#ff6a00;
  color:#fff;
  font-weight:600;
  box-shadow:0 8px 20px rgba(255,106,0,0.25);
}

.form-btn.primary:hover{
  background:#ff7a1a;
  transform:translateY(-2px);
}

/* LIGHT MODE */
body.light .contact-form input,
body.light .contact-form textarea{
  border:1px solid rgba(0,0,0,0.15);
  background:#fff;
  color:#111;
}
/* prevent width overflow issues */
*{
  box-sizing:border-box;
}

/* center the form properly */
.contact-form{
  max-width:700px;
  width:100%;
  margin:30px auto;
  padding:0 12px; /* prevents edge clipping on mobile */
}
.logo{ max-width:100%;}

a{ font-weight:bold; color:var(--text); text-decoration:none; font-size: 1.2em; }
a:hover{  text-decoration:underline; }

.cover{ background-size:cover; background-position:center center;}



.heart-btn{
    all: unset;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.heart-btn:focus {
    outline: none;
    box-shadow: none;
}

.heart-btn.active{
    color: red;
}
.image-card {
    position: relative;
    display: inline-block;
}

/* Chrome / Edge / Safari */
.scroll-box::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
}

.scroll-box::-webkit-scrollbar-track {
    background-color: transparent !important;
    box-shadow: none !important;
}

.scroll-box::-webkit-scrollbar-corner {
    background: transparent;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}



@media(max-width:1668px){

  #menu{
    flex-direction:column;
    gap:0;
    padding:0;
    margin:0;
  }

  #menu li{
    list-style:none;
    width:100%;
  }

  /* FULL WIDTH CLEAN ROW */
  #menu li a{
    display:flex;
    align-items:center;

    width:100%;
    padding:16px 18px;

    text-decoration:none;

    /* clean base state */
    background:transparent;
    color:var(--text);

    border-bottom:1px solid var(--border);

    font-size:16px;
    font-weight:500;

    transition:0.2s ease;
  }

  /* TRUE INVERT HOVER */
  #menu li a:hover{
    background:var(--text);
    color:var(--bg);
  }

  /* active state (optional but useful) */
  #menu li a.active{
    background:var(--accent-soft);
    color:var(--text);
  }

  /* click feedback */
  #menu li a:active{
    transform:scale(0.99);
  }
}


.media-wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:center;

  /* IMPORTANT FIX */
  width:100%;
  box-sizing:border-box;
  overflow:hidden;
}

.media-left,
.media-right{
  min-width:0; /* CRITICAL: allows flex shrink */
}

/* LEFT SIDE */
.media-left{
  flex:1;
  min-width:0;
  border-radius:12px;
  overflow:hidden;

  /* KEY FIX: consistent shape */
  aspect-ratio: 16 / 10;
  background:#000;
}

.media-left img,
.media-left video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* RIGHT SIDE */
.media-right{
  flex:1;
  min-width:0;
}
/* SPECIALS PAGE COUPON LAYOUT */
offer{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:28px;
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

/* EACH COUPON */
offer .coupon{
  position:relative;
  overflow:hidden;
  background:#fff;
  color:#111;
  border:5px solid #111;
  border-radius:24px;
  padding:36px 30px 26px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* DASHED INNER BORDER */
offer .coupon:before{
  content:"";
  position:absolute;
  inset:14px;
  border:3px dashed #111;
  border-radius:16px;
  pointer-events:none;
  z-index:1;
}

/* 45 DEGREE SPECIALS BANNER */
offer .coupon:after{
  content:"SPECIAL";
  position:absolute;
  top:28px;
  right:-62px;
  width:235px;
  padding:11px 0;
  transform:rotate(45deg);
  background:#f7941d;
  color:#111;
  border-top:4px solid #111;
  border-bottom:4px solid #111;
  text-align:center;
  font-size:16px;
  font-weight:900;
  letter-spacing:2px;
  z-index:3;
}

offer .coupon > *{
  position:relative;
  z-index:2;
}

offer .coupon h2,
offer .coupon h3{
  max-width:78%;
  margin:0 0 16px;
  font-family:"Bebas Neue", Arial, sans-serif;
  font-size:clamp(34px,4vw,48px);
  line-height:.95;
  color:#111;
  letter-spacing:.5px;
}

offer .coupon p{
  margin:12px 0;
  color:#222;
  font-size:17px;
  line-height:1.55;
}

offer .coupon a{
  display:inline-block;
  margin-top:16px;
  background:#111;
  color:#fff;
  padding:13px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

offer .coupon a:hover{
  background:#f7941d;
  color:#111;
}

offer .coupon .expire,
offer .coupon .exp{
  margin-top:22px;
  padding:12px 14px;
  background:#f4f4f4;
  border-left:6px solid #f7941d;
  border-radius:10px;
  color:#333;
  font-size:13px;
  font-weight:700;
}

/* hide the HR inside the coupon grid from breaking layout */
offer hr{
  display:none;
}

@media(max-width:640px){
  offer{
    grid-template-columns:1fr;
  }

  offer .coupon{
    padding:30px 22px 24px;
  }

  offer .coupon h2,
  offer .coupon h3{
    max-width:100%;
    padding-right:54px;
    font-size:34px;
  }

  offer .coupon:after{
    top:22px;
    right:-74px;
    font-size:13px;
  }
}

/* ===========================================
   PREMIUM CONTENT BLOCK
   Standard HTML Elements Only
=========================================== */

section{
    max-width:1200px;
    margin:80px auto;
    padding:0 30px;
}

section header{
    margin-bottom:40px;
}

section header>p:first-child{
    display:inline-block;
    margin:0 0 18px;
    padding-left:22px;
    position:relative;

    color:#b8860b;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.82rem;
    font-weight:800;
}

section header>p:first-child:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:12px;
    height:2px;
    background:#d99a17;
    transform:translateY(-50%);
}

section h1{
    margin:0 0 20px;
    max-width:900px;

    font-size:clamp(3rem,6vw,5.5rem);
    line-height:.95;
    letter-spacing:-3px;
    font-weight:900;
    color:#151515;
}

section h2{
    margin:0;
    max-width:760px;

    font-size:clamp(1.4rem,2vw,2rem);
    font-weight:400;
    line-height:1.45;

    color:#555;
}

section>p{
    margin:45px 0;

    max-width:820px;

    font-size:1.15rem;
    line-height:1.9;
    color:#555;
}

/* ===========================================
   PREMIUM FEATURE LIST
=========================================== */

section ul{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:18px;

    margin:55px 0;
    padding:0;

    list-style:none;
}

section li{

    position:relative;

    padding:22px 24px 22px 70px;

    font-size:1.05rem;
    font-weight:600;
    line-height:1.5;

    border-bottom:1px solid #ececec;

    transition:.25s;
}

section li:before{

    content:"✓";

    position:absolute;

    left:20px;
    top:22px;

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#d99a17;
    color:#fff;

    font-size:15px;
    font-weight:900;
}

section li:hover{

    transform:translateX(8px);

    border-color:#d99a17;

    color:#111;
}

/* ===========================================
   ACTION BUTTONS
=========================================== */

section nav{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

    margin-top:60px;
}

section nav a{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:56px;

    padding:0 34px;

    text-decoration:none;

    font-size:.95rem;
    font-weight:800;

    border-radius:6px;

    transition:.25s;
}

section nav a:first-child{

    background:#111;
    color:#fff;
}

section nav a:first-child:hover{

    background:#d99a17;
}

section nav a:last-child{

    border:2px solid #111;
    color:#111;
}

section nav a:last-child:hover{

    background:#111;
    color:#fff;
}

/* ===========================================
   MOBILE
=========================================== */

@media(max-width:768px){

section{

    padding:0 20px;
    margin:60px auto;
}

section ul{

    grid-template-columns:1fr;
}

section nav{

    flex-direction:column;
}

section nav a{

    width:100%;
}

}
section{
    max-width:1200px;
    margin:100px auto;
    padding:0 40px;
}

/* One content column */
section > *{
    max-width:900px;
}

section header{
    margin-bottom:40px;
}

section header > *,
section > p,
section > ul,
section > nav{
    margin-left:0;
    margin-right:0;
}
/* PREMIUM SPECIALS COUPONS */
offer{
  display:block;
  position:relative;
  overflow:hidden;

  max-width:760px;
  margin:30px auto;
  padding:42px 34px 30px;

  background:var(--card);
  color:var(--text);

  border:5px solid var(--text);
  border-radius:26px;

  box-shadow:0 22px 55px rgba(0,0,0,.16);
}

/* dashed inner coupon border */
offer:before{
  content:"";
  position:absolute;
  inset:14px;
  border:3px dashed var(--text);
  border-radius:18px;
  pointer-events:none;
  opacity:.9;
}

/* 45 degree banner */
offer:after{
  content:"SPECIALS";
  position:absolute;
  top:30px;
  right:-70px;

  width:250px;
  padding:12px 0;

  transform:rotate(45deg);
  background:var(--button);
  color:#111;

  border-top:4px solid var(--text);
  border-bottom:4px solid var(--text);

  text-align:center;
  font-weight:900;
  font-size:15px;
  letter-spacing:2px;
  z-index:3;
}

offer > *{
  position:relative;
  z-index:2;
}

offer h3{
  max-width:82%;
  margin:0 0 18px;

  font-family:"Bebas Neue", Impact, Arial, sans-serif;
  font-size:clamp(32px,4vw,48px);
  line-height:.98;
  letter-spacing:.3px;
  color:var(--text);
}

offer p{
  margin:14px 0;
  max-width:92%;

  font-size:17px;
  line-height:1.6;
  color:var(--muted);
}

offer a{
  display:inline-flex;
  margin-top:18px;
  padding:14px 20px;

  border-radius:999px;
  background:var(--text);
  color:var(--bg) !important;

  font-size:15px;
  font-weight:900;
  text-decoration:none !important;
}

offer a:hover{
  background:var(--button);
  color:#111 !important;
  text-decoration:none !important;
}

offer h4{
  margin:24px 0 0;
  padding:14px 16px;

  display:inline-block;

  background:var(--elevated);
  border-left:7px solid var(--button);
  border-radius:12px;

  color:var(--text);
  font-size:14px;
  line-height:1.45;
  font-weight:800;
}

/* multiple coupons layout */
offer + offer{
  margin-top:34px;
}

@media(max-width:640px){
  offer{
    margin:24px 14px;
    padding:34px 24px 26px;
    border-width:4px;
  }

  offer h3{
    max-width:100%;
    padding-right:54px;
    font-size:34px;
  }

  offer p{
    max-width:100%;
    font-size:16px;
  }

  offer:after{
    top:24px;
    right:-78px;
    width:245px;
    font-size:13px;
  }
}
/* =========================
   CTA / OFFER / FOOTER FIX
========================= */

.cta-wrap{
  max-width:1100px;
  margin:70px auto 40px;
  padding:60px 24px;
  text-align:center;
  background:linear-gradient(135deg,#ffffff,#f4f6fa);
  border:1px solid #e5e7eb;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.cta-wrap h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1;
  color:#111827;
}

.cta-sub{
  color:#667085;
  font-weight:700;
  margin-bottom:24px;
}

.cta-box{
  max-width:680px;
  margin:0 auto;
  padding:28px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border:0;
  border-radius:999px;
  background:#ff7a1a;
  color:#111 !important;
  font-weight:900;
  text-decoration:none !important;
  cursor:pointer;
}

.cta-note{
  margin-top:16px;
  color:#667085;
  line-height:1.5;
}

/* =========================
   PREMIUM OFFER CARD
========================= */

offer{
  display:block;
  position:relative;
  overflow:hidden;
  max-width:760px;
  margin:30px auto;
  padding:42px 32px 30px;
  background:#fff;
  color:#111827;
  border:5px solid #111827;
  border-radius:26px;
  box-shadow:0 22px 55px rgba(0,0,0,.16);
}

offer:before{
  content:"";
  position:absolute;
  inset:14px;
  border:3px dashed #111827;
  border-radius:18px;
  pointer-events:none;
}

offer:after{
  content:"SPECIALS";
  position:absolute;
  top:28px;
  right:-76px;
  width:260px;
  padding:11px 0;
  transform:rotate(45deg);
  background:#ff7a1a;
  color:#111;
  border-top:4px solid #111827;
  border-bottom:4px solid #111827;
  text-align:center;
  font-weight:900;
  letter-spacing:2px;
  z-index:3;
}

offer > *{
  position:relative;
  z-index:2;
}

offer h2,
offer h3{
  max-width:calc(100% - 110px);
  margin:0 0 18px;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;
  color:#111827;
}

offer p{
  margin:14px 0;
  color:#4b5563;
  font-size:16px;
  line-height:1.6;
}

offer a{
  display:inline-flex;
  margin-top:18px;
  padding:13px 18px;
  border-radius:999px;
  background:#111827;
  color:#fff !important;
  font-weight:900;
  text-decoration:none !important;
}

offer h4{
  display:inline-block;
  margin:24px 0 0;
  padding:12px 14px;
  background:#f3f4f6;
  border-left:6px solid #ff7a1a;
  border-radius:12px;
  color:#111827;
  font-size:13px;
  line-height:1.45;
}

/* =========================
   MAP
========================= */

.gmap iframe{
  width:100% !important;
  display:block;
  border:0 !important;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#06111d;
  color:#d8e1ec;
  overflow:hidden;
}

footer .topbar:first-of-type{
  height:auto !important;
  min-height:0 !important;
  padding:26px 20px !important;
  background:#06111d !important;
  border-bottom:1px solid rgba(255,255,255,.18) !important;
}

footer .topbar:first-of-type > div{
  max-width:1200px !important;
  margin:0 auto !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:220px 1fr 1fr;
  align-items:center;
  gap:28px;
}

footer .topbar:first-of-type > div > div{
  width:100%;
  min-width:0;
  display:flex !important;
  align-items:center;
  gap:12px;
  color:#d8e1ec;
  font-size:15px;
  line-height:1.45;
}

footer .topbar:first-of-type .logo{
  max-width:150px !important;
  height:auto;
}

footer .info-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

footer .info-icon svg{
  width:21px;
  height:21px;
  stroke:#ff7a1a;
}

@media(max-width:800px){
  footer .topbar:first-of-type > div{
    grid-template-columns:1fr;
    text-align:center;
  }

  footer .topbar:first-of-type > div > div{
    justify-content:center;
  }
}

footer img.logo{
  max-width:180px !important;
  height:auto;
}

footer a{
  color:#fff !important;
  text-decoration:none !important;
}

footer a:hover{
  color:#ff7a1a !important;
}

/* service-area buttons */
.footer-btn{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:auto !important;
  height:auto !important;
  line-height:1.2 !important;
  margin:5px;
  padding:9px 13px !important;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff !important;
  font-size:13px !important;
  font-weight:800;
}

/* contact form */
footer .contact-form{
  max-width:760px;
  margin:0 auto !important;
  padding:0 12px;
  display:grid;
  gap:12px;
}

footer .contact-form input,
footer .contact-form textarea{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:#fff;
  color:#111;
}

footer .contact-form textarea{
  min-height:90px;
}

/* copyright area */
footer > div:last-of-type{
  background:#040b13 !important;
  padding:28px 20px !important;
  text-align:center;
  color:#b8c4d2;
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){
  .cta-wrap{
    margin:40px 14px;
    padding:42px 20px;
  }

  offer{
    margin:24px 14px;
    padding:34px 22px 24px;
    border-width:4px;
  }

  offer h2,
  offer h3{
    max-width:100%;
    padding-right:62px;
    font-size:30px;
  }

  offer:after{
    top:22px;
    right:-86px;
    width:250px;
    font-size:12px;
  }

  footer .topbar:first-of-type > div{
    flex-direction:column;
    text-align:center;
  }

  footer img.logo{
    margin:0 auto;
  }

  .footer-btn{
    width:100% !important;
    max-width:100%;
  }
}