*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}
html{scroll-behavior:smooth}
body{background:#111;color:#e5e5e5;font-size:22px;font-weight:600;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
p{font-size:22px;font-weight:600}
h1,h2,h3{font-weight:700}

/* Premium navbar */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:14px 18px;
  background:rgba(10,10,12,0.58);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-wrap{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}
.nav-logo img{height:64px;width:auto;display:block}
.desktop-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
}
.desktop-nav a{
  color:#f3f3f3;
  font-size:18px;
  font-weight:700;
  letter-spacing:0.2px;
  position:relative;
  transition:opacity .2s ease;
}
.desktop-nav a:hover{opacity:.85}
.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:width .25s ease;
}
.desktop-nav a:hover::after{width:100%}
.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.nav-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:#ff3b3b;
  color:#fff;
  font-size:17px;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

/* Mobile side menu */
.side-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:320px;
  max-width:88%;
  height:100%;
  z-index:1000;
  padding:90px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  background:rgba(20,20,24,0.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-left:1px solid rgba(255,255,255,0.08);
  transition:right .28s ease;
}
.side-menu.active{right:0}
.side-menu a{
  color:#fff;
  font-size:20px;
  font-weight:700;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
}
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:900;
}
.overlay.active{opacity:1;visibility:visible}

/* Static hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:140px 20px 100px;
  overflow:hidden;
  background:#0f172a;
}
.hero.inner-hero{
  min-height:70vh;
}
.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.42) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  margin:auto;
}
.hero-content > *{max-width:760px}
.hero-badge{
  display:inline-block;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:16px;
  color:#f3f3f3;
  font-size:14px;
  font-weight:600;
}
.hero h1{
  margin:0 0 16px;
  font-size:clamp(42px,6vw,72px);
  font-weight:800;
  color:#fff;
  line-height:1.05;
  letter-spacing:-1.5px;
}
.hero-highlight{
  margin:0 0 14px;
  font-size:24px;
  color:#00f0ff;
  font-weight:700;
}
.hero p{font-size:22px;color:#fff}
.hero-actions{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ff3b3b;
  color:#fff;
  padding:14px 26px;
  border-radius:30px;
  font-weight:700;
}
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:30px;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
}
.hero-trust{
  margin-top:20px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-trust span{
  background:rgba(255,255,255,0.1);
  padding:8px 12px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
}
.mobile-phone{
  margin-top:10px;
  font-size:20px;
  font-weight:700;
}
.mobile-phone a{color:#fff}


section{padding:80px 25px;background:#1a1a1a}
section:nth-of-type(even){background:#151515}
.container{max-width:1200px;margin:0 auto}
.title{text-align:center;margin-bottom:24px;font-size:36px;font-weight:700}
.section-intro{max-width:860px;margin:0 auto 30px;text-align:center}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.card{
  background:linear-gradient(135deg,#ff3b3b,#b30000);
  padding:22px;
  border-radius:16px;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(255,59,59,0.3);
  border:1px solid rgba(255,255,255,0.15);
  font-size:22px;
  font-weight:600;
  letter-spacing:.2px;
}
.card small{display:block;margin-top:8px;line-height:1.5;color:#fff;font-size:16px}
.review-card{text-align:left}
.review-top{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.review-img{width:55px;height:55px;border-radius:50%;object-fit:cover;border:2px solid rgba(255,255,255,0.2)}
.review-name{font-weight:700}
.review-stars{font-size:14px}
iframe{width:100%;border:none;border-radius:12px}
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:start;max-width:1200px;margin:0 auto}
.content-box{background:#151515;border:1px solid rgba(255,255,255,0.05);padding:28px;border-radius:18px}
.list-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
.seo-copy p{margin-bottom:16px}
.seo-copy ul{margin:10px 0 16px 22px}

/* CTA strip */
.mobile-cta-strip{
  text-align:center;
  padding:28px 18px;
  background:#151515;
}
.mobile-cta-strip h2{
  font-size:28px;
  margin-bottom:14px;
}

@media(max-width:980px){
  .desktop-nav{display:none}
  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:768px){
  body{font-size:20px;font-weight:600}
  p{font-size:20px;font-weight:600;line-height:1.45}
  .site-header{padding:10px 14px}
  .nav-wrap{grid-template-columns:auto 1fr auto;gap:10px}
  .nav-logo img{height:58px}
  .nav-call{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:100%;
    min-height:auto;
    font-size:20px;
    font-weight:800;
    padding:18px 20px;
    border-radius:16px;
  }
  .hero,.hero.inner-hero{
    min-height:auto;
    padding:120px 18px 70px;
  }
  .hero h1{
    font-size:40px;
    letter-spacing:-1px;
    line-height:1.08;
  }
  .hero-highlight{font-size:22px}
  .hero p{font-size:20px}
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .btn,.btn-secondary{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:100%;
    font-size:20px;
    font-weight:800;
    padding:18px 20px;
    border-radius:16px;
  }
  .hero-trust{gap:8px;margin-top:18px}
  .hero-trust span{font-size:16px;font-weight:600;padding:8px 12px}
  .title{font-size:30px;font-weight:700}
  .cards{grid-template-columns:1fr;gap:14px}
  .card{font-size:20px;font-weight:700;padding:20px 18px;border-radius:14px}
  .sticky-call{font-size:20px;font-weight:800;padding:18px 14px}
  .menu-toggle{width:46px;height:46px;font-size:22px}
  .two-col{grid-template-columns:1fr}
}


.social-links{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.social-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  font-size:18px;
  transition:all .25s ease;
}

.social-icon:hover{
  background:#ff3b3b;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(255,59,59,0.4);
}



/* Premium footer */
.footer{
  position:relative;
  background:#09090c;
  padding:0 20px 110px;
  color:#d0d0d4;
}
.footer-top-line{
  height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.18), rgba(255,255,255,0));
  max-width:1240px;
  margin:0 auto 34px;
}
.footer-shell{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  gap:42px;
  padding-top:54px;
}
.footer-brand{
  padding-right:18px;
}
.footer-brand-logo{
  display:inline-block;
  margin-bottom:18px;
}
.footer-logo{
  height:64px;
  width:auto;
}
.footer-tagline{
  max-width:420px;
  color:#bdbdc4;
  font-size:17px;
  line-height:1.7;
}
.footer-social-row{
  margin-top:20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}
.footer-col h3{
  margin-bottom:16px;
  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}
.footer-col a,
.footer-col p{
  display:block;
  color:#c8c8ce;
  margin-bottom:10px;
  font-size:16px;
  line-height:1.6;
}
.footer-col a:hover{
  color:#fff;
}
.footer-contact p{
  margin-bottom:10px;
}
.footer-cta{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:46px;
  margin-top:12px;
  padding:0 18px;
  border-radius:999px;
  background:#ff3b3b;
  color:#fff !important;
  font-weight:800;
  width:max-content;
}
.social-links{
  display:flex;
  gap:12px;
  margin-top:12px;
}
.social-icon{
  width:44px;
  height:44px;
  display:flex !important;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  color:#fff !important;
  font-size:18px;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-icon:hover{
  background:#ff3b3b;
  border-color:#ff3b3b;
  transform:translateY(-2px);
}
.footer-bottom{
  max-width:1240px;
  margin:34px auto 0;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:#a9a9b0;
  font-size:14px;
}
.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.footer-bottom-links a{
  color:#bfbfc5;
}
.footer-bottom-links a:hover{
  color:#fff;
}
@media(max-width:980px){
  .footer-shell{
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:768px){
  .footer{
    padding:0 16px 110px;
  }
  .footer-top-line{
    margin-bottom:24px;
  }
  .footer-shell{
    padding-top:38px;
    gap:24px;
  }
  .footer-tagline{
    font-size:16px;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .footer-col h3{
    font-size:17px;
  }
  .footer-col a,
  .footer-col p{
    font-size:15px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
}



.share-section{
  padding:60px 20px;
  background:#111;
  text-align:center;
}
.share-section h3{
  font-size:26px;
  margin-bottom:20px;
}
.share-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}
.share-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:30px;
  font-weight:700;
  font-size:16px;
  color:#fff;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  transition:all .25s ease;
}
.share-btn:hover{
  transform:translateY(-2px);
}
.share-btn.fb:hover{background:#1877f2;}
.share-btn.tw:hover{background:#000;}
.share-btn.wa:hover{background:#25D366;}
.share-btn.ln:hover{background:#0A66C2;}
@media(max-width:768px){
  .share-buttons{
    flex-direction:column;
    align-items:stretch;
  }
  .share-btn{
    width:100%;
  }
}


/* Private property towing request form */
.property-form{
  max-width:800px;
  margin:0 auto;
  display:grid;
  gap:15px;
}
.property-form input,
.property-form textarea,
.property-form select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:none;
  background:#1e293b;
  color:#fff;
  font-size:16px;
  outline:none;
}
.property-form input::placeholder,
.property-form textarea::placeholder{
  color:#b8bcc6;
}
.property-form button{
  cursor:pointer;
  border:none;
}
@media(max-width:768px){
  .property-form input,
  .property-form textarea,
  .property-form select{
    font-size:16px;
    padding:16px;
  }
}


.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
.form-alert{
  max-width:800px;
  margin:0 auto 20px;
  padding:14px 16px;
  border-radius:12px;
  font-weight:600;
}
.form-alert.error{
  background:#4a1d1d;
  color:#fff;
  border:1px solid #7f1d1d;
}
