/* =========================
   GLOBAL
========================= */

:root{
  --red:#d90429;
  --red-light:#ff2d55;
  --black:#0f1115;
  --dark:#111827;
  --text:#222;
  --muted:#666;
  --light:#f3f4f6;
  --white:#fff;
  --border:rgba(0,0,0,0.08);
  --shadow:0 14px 40px rgba(0,0,0,0.09);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:var(--white);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

button{
  font-family:inherit;
}

section{
  max-width:100%;
}

/* =========================
   NAVBAR
========================= */

.site-header{
  position:relative;
  z-index:1000;
}

.navbar{
  width:100%;
  height:85px;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6%;
  background:rgba(10,10,10,0.96);
  border-bottom:1px solid rgba(255,0,0,0.12);
  backdrop-filter:blur(12px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  flex-shrink:0;
}

.logo img{
  width:72px;
  height:82px;
  object-fit:contain;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-main{
  color:var(--red);
  font-size:21px;
  font-family:'Montserrat',sans-serif;
  font-weight:900;
}

.brand-sub{
  color:var(--white);
  font-size:15px;
  letter-spacing:1.5px;
}

.phone{
  color:var(--white);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:var(--white);
  font-size:15px;
  font-weight:500;
  position:relative;
  transition:0.3s ease;
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--red);
  transition:0.3s ease;
}

.nav-links a:hover{
  color:var(--red);
}

.nav-links a:hover::after{
  width:100%;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-contact-btn{
  text-decoration:none;
  color:var(--white);
  padding:12px 22px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  box-shadow:0 10px 25px rgba(217,4,41,0.25);
  transition:0.3s ease;
}

.nav-contact-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(217,4,41,0.35);
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  border:0;
  background:transparent;
  padding:6px;
}

.hamburger span{
  width:26px;
  height:3px;
  border-radius:20px;
  background:var(--white);
  transition:0.3s ease;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
  background:var(--red);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
  background:var(--red);
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:min(300px,86vw);
  height:100vh;
  background:#111;
  padding:110px 30px 30px;
  display:flex;
  flex-direction:column;
  gap:22px;
  transition:0.4s ease;
  z-index:999;
  box-shadow:-20px 0 40px rgba(0,0,0,0.25);
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  text-decoration:none;
  color:var(--white);
  font-size:18px;
  font-weight:500;
  transition:0.3s ease;
}

.mobile-menu a:hover{
  color:var(--red);
}

.mobile-contact-btn,
.mobile-call-btn{
  padding:14px 18px;
  border-radius:14px;
  text-align:center;
  font-weight:700 !important;
}

.mobile-contact-btn{
  background:var(--red);
}

.mobile-call-btn{
  background:var(--white);
  color:#111 !important;
}

/* =========================
   HERO
========================= */

.hero-wrapper{
  width:100%;
  padding:120px 20px 35px;
  background:
    radial-gradient(circle at top right, rgba(217,4,41,0.10), transparent 28%),
    linear-gradient(to bottom,#f1f3f5,#e9ecef);
  overflow:hidden;
}

.hero{
  width:100%;
  max-width:1320px;
  margin:auto;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(255,255,255,0.7);
  border-radius:34px;
  padding:48px;
  display:flex;
  justify-content:space-between;
  gap:45px;
  position:relative;
  overflow:hidden;
  box-shadow:0 16px 45px rgba(0,0,0,0.08);
}

.hero::before{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  top:-120px;
  right:-100px;
  border-radius:50%;
  background:radial-gradient(rgba(217,4,41,0.10),transparent 70%);
}

.hero-left{
  flex:1;
  z-index:2;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:24px;
}

.hero-badges span{
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(217,4,41,0.12);
  padding:12px 20px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#222;
  transition:0.35s ease;
  box-shadow:0 10px 20px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter:blur(8px);
}

.primary-badge{
  background:linear-gradient(135deg,rgba(217,4,41,0.12),rgba(255,45,85,0.10)) !important;
  border:1px solid rgba(217,4,41,0.28) !important;
  color:var(--red) !important;
  box-shadow:0 10px 25px rgba(217,4,41,0.16), 0 0 0 4px rgba(217,4,41,0.05) !important;
}

.hero-badges span:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(217,4,41,0.15);
}

.hero h1{
  font-size:clamp(40px,4.4vw,72px);
  line-height:1;
  color:#111;
  margin-bottom:18px;
  font-weight:900;
  letter-spacing:-2.4px;
}

.hero-left p{
  max-width:610px;
  font-size:16px;
  line-height:1.85;
  color:var(--muted);
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-btn{
  text-decoration:none;
  padding:15px 22px;
  border-radius:16px;
  font-size:15px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:0.3s ease;
}

.primary-btn,
.call-btn{
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:var(--white);
  box-shadow:0 10px 25px rgba(217,4,41,0.22);
}

.secondary-btn{
  background:#111;
  color:var(--white);
}

.hero-btn:hover{
  transform:translateY(-2px);
}


.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.road-box{
  width:min(100%,500px);
  height:118px;
  border-radius:26px;
  background:linear-gradient(to right,#111827,#1f2937);
  position:relative;
  overflow:hidden;
  box-shadow:0 22px 42px rgba(0,0,0,0.18);
}

.road-line{
  position:absolute;
  top:50%;
  left:0;
  width:200%;
  height:5px;
  transform:translateY(-50%);
  background:repeating-linear-gradient(to right,white 0,white 40px,transparent 40px,transparent 80px);
  animation:roadMove 2.5s linear infinite;
}

.moving-car{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:105px;
  animation:carFloat 1.6s ease-in-out infinite;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 46px;
  padding:0 20px;
}

.section-heading > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--red);
  background:rgba(217,4,41,0.08);
  border:1px solid rgba(217,4,41,0.14);
  border-radius:999px;
  padding:9px 18px;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.6px;
  margin-bottom:16px;
}

.section-heading p{
  max-width:680px;
  margin:0 auto;
  color:#666;
  font-size:16px;
  line-height:1.75;
}

.package-heading{
  margin-bottom:50px;
}

.section-title{
  text-align:center;
  font-size:clamp(28px,3.2vw,44px);
  font-weight:900;
  margin:0 0 22px;
  color:#111;
  font-family:'Montserrat',sans-serif;
  position:relative;
}

.section-title::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:90px;
  height:4px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--red),var(--red-light));
}


/* =========================
   PACKAGES / PRODUCT CARDS
========================= */

.packages-section{
  padding:85px 0 0;
  background:var(--white);
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  padding:0 6% 80px;
}

.card{
  position:relative;
  text-decoration:none;
  border-radius:24px;
  overflow:hidden;
  background:var(--white);
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid rgba(0,0,0,0.07);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 48px rgba(0,0,0,0.15);
  border-color:rgba(217,4,41,0.22);
}

.card-badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:3;
  background:rgba(17,17,17,0.88);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(8px);
}

.img-box{
  width:100%;
  height:250px;
  background:#e9ecef;
  overflow:hidden;
  position:relative;
}

.img-box::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.16),transparent 42%);
  opacity:0;
  transition:0.3s ease;
}

.card:hover .img-box::after{
  opacity:1;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:0.45s ease;
}

.card:hover .img-box img{
  transform:scale(1.06);
}

.card-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.card-content h3{
  font-size:17px;
  font-weight:900;
  color:#111;
  line-height:1.35;
}

.card-content p{
  color:#666;
  font-size:14px;
  line-height:1.65;
  flex:1;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#111;
  color:var(--white);
  padding:11px 15px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  width:fit-content;
  margin-top:6px;
  transition:0.3s ease;
}

.card:hover .btn{
  background:var(--red);
}

.btn i{
  font-size:12px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section{
  padding:85px 6%;
  text-align:center;
  background:#f8f9fb;
}

.slider{
  max-width:1100px;
  margin:auto;
  position:relative;
}

.slide{
  display:none;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.slide.active{
  display:flex;
}

.testimonial-card{
  width:300px;
  background:var(--white);
  padding:24px;
  border-radius:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.05);
}

.avatar{
  width:62px;
  height:62px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 12px;
  border:2px solid var(--red);
}

.testimonial-card h3{
  font-size:17px;
  margin-bottom:8px;
  color:#111;
}

.testimonial-card p{
  color:var(--muted);
  line-height:1.6;
}

.dots{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.dot{
  width:10px;
  height:10px;
  background:#ccc;
  border:0;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s ease;
}

.dot.active{
  width:26px;
  border-radius:999px;
  background:var(--red);
}

/* =========================
   FAQ
========================= */

.faq-section{
  background:#f5f5f5;
  padding:85px 20px 90px;
}

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

.faq-item{
  background:var(--white);
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:18px 54px 18px 20px;
  font-size:1rem;
  font-weight:800;
  text-align:left;
  border:0;
  background:var(--white);
  color:#222;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:'+';
  font-size:1.5rem;
  color:var(--red);
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
}

.faq-item.active .faq-question::after{
  content:'–';
}

.faq-answer{
  display:none;
  padding:16px 20px;
  border-top:1px solid #eee;
  color:#555;
  font-size:0.95rem;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  display:block;
}


/* =========================
   FOOTER
========================= */

.footer{
  background:#eef0f3;
  color:#111;
  padding:70px 20px 24px;
}

.footer-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.35fr 0.8fr 1fr 1fr;
  gap:34px;
}

.footer-logo-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  margin-bottom:16px;
}

.footer-logo-wrap img{
  width:70px;
  height:70px;
  object-fit:contain;
  background:#fff;
  border-radius:18px;
  padding:6px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.footer-logo-wrap strong{
  display:block;
  color:var(--red);
  font-family:'Montserrat',sans-serif;
  font-size:22px;
  font-weight:900;
  line-height:1.2;
}

.footer-logo-wrap small{
  display:block;
  color:#555;
  font-size:12px;
  margin-top:4px;
}

.footer-brand-box p{
  max-width:340px;
  color:#555;
  line-height:1.8;
  font-size:14px;
}

.footer-title{
  display:inline-block;
  font-size:17px;
  font-weight:900;
  margin-bottom:18px;
  position:relative;
}

.footer-title::after{
  content:'';
  width:42px;
  height:3px;
  background:var(--red);
  position:absolute;
  left:0;
  bottom:-7px;
  border-radius:20px;
}

.footer-box a{
  display:block;
  color:#333;
  text-decoration:none;
  margin:10px 0;
  font-size:14px;
  transition:0.25s ease;
}

.footer-box a:hover{
  color:var(--red);
  transform:translateX(4px);
}

.footer-info{
  display:flex !important;
  align-items:flex-start;
  gap:10px;
  margin:12px 0;
  color:#333;
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
}

.footer-info i{
  color:var(--red);
  margin-top:4px;
  min-width:16px;
}

.footer-link{
  font-weight:700;
}

.footer-hours{
  background:var(--white);
  padding:22px;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.footer-hours p:not(.footer-title){
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}

.footer-hours span{
  color:#555;
}

.footer-hours strong{
  text-align:right;
  font-size:13px;
}

.footer-roadtest{
  margin-top:16px !important;
  padding:12px 16px;
  border-radius:12px;
  background:#111;
  color:var(--white) !important;
  text-align:center;
  font-weight:800;
}

.footer-roadtest:hover{
  background:var(--red);
  transform:none !important;
}

.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.footer-socials a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--white);
  color:#111;
  border-radius:50%;
  text-decoration:none;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
  transition:0.25s ease;
}

.footer-socials a:hover{
  background:var(--red);
  color:var(--white);
  transform:translateY(-3px);
}

.footer-bottom{
  max-width:1200px;
  margin:40px auto 0;
  padding-top:18px;
  text-align:center;
  border-top:1px solid rgba(0,0,0,0.1);
}

.footer-bottom p{
  color:#555;
  font-size:13px;
  line-height:1.7;
}

.footer-bottom a{
  color:var(--red);
  font-weight:900;
  text-decoration:none;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes roadMove{
  from{ transform:translateY(-50%) translateX(0); }
  to{ transform:translateY(-50%) translateX(-80px); }
}

@keyframes carFloat{
  0%,100%{ transform:translateY(-50%); }
  50%{ transform:translateY(-54%); }
}

@keyframes badgePulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.03); }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){
  .nav-links{
    gap:22px;
  }

  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:992px){
  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-left p{
    margin:auto auto 28px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .package-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:950px){
  .nav-links,
  .nav-contact-btn{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .logo img{
    width:56px;
    height:56px;
  }

  .brand-main{
    font-size:17px;
  }

  .brand-sub{
    font-size:13px;
  }
}

@media(max-width:768px){
  .hero-wrapper{
    padding:145px 14px 30px;
  }

  .hero{
    gap:28px;
    padding:30px 22px;
    border-radius:24px;
  }

  .hero-left{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-badges span:not(.primary-badge){
    display:none;
  }

  .primary-badge{
    width:fit-content;
    margin-bottom:5px;
    font-size:14px;
    font-weight:800;
    padding:14px 24px;
    animation:badgePulse 2.8s infinite;
  }

  .hero h1{
    font-size:34px;
    text-align:left;
    letter-spacing:-1px;
  }

  .hero-left p{
    font-size:15px;
    text-align:left;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    display:none;
  }

  .call-btn{
    width:100%;
    justify-content:center;
    padding:16px 20px;
    font-size:16px;
  }

  .road-box{
    width:100%;
    height:92px;
  }

  .moving-car{
    width:75px;
  }

  .package-grid{
    grid-template-columns:1fr;
    padding:0 18px 60px;
  }

  .img-box{
    height:240px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo-wrap{
    justify-content:center;
  }

  .footer-brand-box p{
    margin:auto;
  }

  .footer-title::after{
    left:50%;
    transform:translateX(-50%);
  }

  .footer-info{
    justify-content:center;
  }

  .footer-socials{
    justify-content:center;
  }

  .footer-hours p:not(.footer-title){
    align-items:center;
  }
}

@media(max-width:480px){
  .navbar{
    height:78px;
    padding:0 16px;
  }

  .mobile-menu{
    padding-top:100px;
  }

  .hero h1{
    font-size:30px;
  }

  .hero-left p{
    font-size:14px;
  }

  .section-title{
    font-size:27px;
  }

  .section-heading > span{
    font-size:12px;
    padding:8px 14px;
  }

  .section-heading p{
    font-size:14px;
  }

  .img-box{
    height:220px;
  }

  .card-content{
    padding:18px;
  }

  .footer-logo-wrap{
    flex-direction:column;
  }

  .footer-hours p:not(.footer-title){
    flex-direction:column;
    gap:4px;
  }

  .footer-hours strong{
    text-align:center;
  }
}


/* =========================
   FINAL FOOTER MOBILE POLISH
========================= */
@media(max-width:768px){
  .footer{
    padding:58px 18px 22px;
  }

  .footer-container{
    gap:26px;
  }

  .footer-brand-box,
  .footer-box,
  .footer-hours{
    width:100%;
  }

  .footer-logo-wrap{
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
  }

  .footer-box a{
    width:fit-content;
    margin:10px auto;
  }

  .footer-info{
    max-width:320px;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:left;
  }

  .footer-hours{
    max-width:360px;
    margin:0 auto;
  }

  .footer-socials a:hover,
  .footer-box a:hover{
    transform:none;
  }
}

@media(max-width:480px){
  .footer-logo-wrap img{
    width:64px;
    height:64px;
  }

  .footer-logo-wrap strong{
    font-size:20px;
  }

  .footer-bottom{
    margin-top:30px;
  }
}


/* =========================
   FINAL CLICKABLE PHONE + AMAZON CARD + REVIEW TAG FIXES
========================= */
.logo,
.brand-main,
.brand-sub{
  text-decoration:none;
}
.phone{
  text-decoration:none;
  width:max-content;
  transition:0.25s ease;
}
.phone:hover{
  color:var(--red);
  transform:translateX(2px);
}
.price-mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(217,4,41,0.07);
  border:1px solid rgba(217,4,41,0.12);
  color:#555;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}
.price-mini strong{
  color:var(--red);
  font-size:17px;
  font-family:'Montserrat',sans-serif;
  white-space:nowrap;
}
.card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:4px;
}
.mini-book-btn,
.card-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border-radius:12px;
  padding:11px 12px;
  font-size:13px;
  font-weight:900;
  transition:.3s ease;
}
.mini-book-btn{
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:#fff;
  box-shadow:0 10px 20px rgba(217,4,41,.20);
}
.card-actions .btn{
  width:100%;
  margin-top:0;
  background:#111;
}
.mini-book-btn:hover,
.card-actions .btn:hover{
  transform:translateY(-2px);
}
.review-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 13px;
  margin:0 auto 14px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  font-size:12px;
  font-weight:900;
  letter-spacing:.7px;
  text-transform:uppercase;
  box-shadow:0 8px 18px rgba(217,4,41,.22);
}
.testimonial-card{
  position:relative;
  overflow:hidden;
}
.testimonial-card::before{
  content:'\f10d';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  position:absolute;
  right:18px;
  top:14px;
  color:rgba(217,4,41,.10);
  font-size:38px;
}
@media(max-width:520px){
  .card-actions{grid-template-columns:1fr;}
  .price-mini{align-items:flex-start;flex-direction:column;}
}


/* =========================
   FINAL FIXES BY CHATGPT
========================= */

/* Clickable phone link */
.phone{
  text-decoration:none;
  transition:0.25s ease;
}
.phone:hover{
  color:var(--red-light);
  transform:translateX(2px);
}

/* New premium goals visual replacing road graphic */
.success-visual{
  min-height:330px;
  border-radius:34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at 20% 90%, rgba(217,4,41,0.30), transparent 28%),
    linear-gradient(135deg,#090909,#171717 58%,#2a050b);
  box-shadow:0 28px 70px rgba(0,0,0,0.28);
  border:1px solid rgba(255,255,255,0.10);
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.success-visual::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,0.16),transparent 60%);
  transform:rotate(18deg);
  animation:successShine 5s ease-in-out infinite;
}
.success-small,
.success-big,
.success-script{
  position:relative;
  z-index:2;
  display:block;
  text-transform:uppercase;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  line-height:0.95;
  text-shadow:0 5px 20px rgba(0,0,0,0.55);
}
.success-small{
  font-size:clamp(24px,3vw,42px);
  font-weight:900;
  letter-spacing:1px;
}
.success-big{
  font-size:clamp(58px,7vw,94px);
  font-weight:900;
  color:#fff;
  -webkit-text-stroke:1px rgba(255,255,255,0.25);
}
.success-script{
  font-size:clamp(30px,4vw,58px);
  color:var(--red-light);
  text-transform:none;
  font-weight:900;
  margin-top:8px;
  text-shadow:0 0 24px rgba(217,4,41,0.55);
}
.success-spark{
  position:absolute;
  right:38px;
  bottom:42px;
  color:#fff;
  font-size:42px;
  text-shadow:0 0 18px rgba(255,255,255,0.7);
}
.success-arrow{
  position:absolute;
  right:34px;
  top:24px;
  color:#fff;
  font-size:54px;
  font-weight:900;
  transform:rotate(-6deg);
}
@keyframes successShine{
  0%,100%{transform:translateX(-15%) rotate(18deg);opacity:.3}
  50%{transform:translateX(30%) rotate(18deg);opacity:.85}
}

/* Homepage cards fixed: no nested anchors, equal heights, clean CTAs */
.package-grid{
  align-items:stretch;
}
.card{
  min-width:0;
  height:100%;
}
.card .img-box{
  flex:0 0 auto;
}
.card-content{
  min-height:245px;
}
.card-content p{
  flex:1;
}
.price-mini{
  margin-top:auto;
  padding:13px 14px;
  border-radius:16px;
  background:linear-gradient(135deg,#fff1f4,#fff);
  border:1px solid rgba(217,4,41,0.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.price-mini span,
.price-mini{
  font-size:12px;
  font-weight:800;
  color:#555;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.price-mini strong{
  color:var(--red);
  font-size:15px;
  text-transform:none;
  letter-spacing:0;
  white-space:nowrap;
}
.card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:2px;
}
.card-actions a{
  text-decoration:none;
  min-height:46px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:13px;
  line-height:1.2;
  transition:.25s ease;
}
.mini-book-btn{
  background:linear-gradient(135deg,var(--red),var(--red-light));
  color:#fff;
  box-shadow:0 12px 24px rgba(217,4,41,0.22);
}
.card-actions .btn{
  background:#111;
  color:#fff;
}
.card-actions a:hover{
  transform:translateY(-2px);
}

/* Package listing page cards */
.package-price{
  margin-top:auto;
  padding:14px 16px;
  border-radius:18px;
  background:linear-gradient(135deg,#fff1f4,#fff);
  border:1px solid rgba(217,4,41,0.14);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.package-price span{
  font-size:12px;
  font-weight:900;
  color:#555;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.package-price strong{
  color:var(--red);
  font-size:16px;
  white-space:nowrap;
}
.package-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.book-card-btn,
.view-card-btn{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  line-height:1.2;
  transition:.25s ease;
}
.book-card-btn{
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-light));
  box-shadow:0 12px 24px rgba(217,4,41,0.22);
}
.view-card-btn{
  color:#fff;
  background:#111;
}
.book-card-btn:hover,
.view-card-btn:hover{
  transform:translateY(-2px);
}
.package-card{
  height:100%;
}
.package-content{
  flex:1;
}
.package-content p{
  min-height:68px;
}

/* Mobile protection */
@media (max-width:900px){
  .success-visual{
    min-height:260px;
    padding:28px;
  }
  .card-content{
    min-height:auto;
  }
}
@media (max-width:640px){
  .card-actions,
  .package-actions{
    grid-template-columns:1fr;
  }
  .price-mini,
  .package-price{
    align-items:flex-start;
    flex-direction:column;
  }
  .success-visual{
    min-height:230px;
    border-radius:26px;
  }
}


/* Final adjustment: Home hero right side removed */
.hero{
  justify-content:flex-start;
}
.hero-left{
  max-width:820px;
}
@media (min-width:992px){
  .hero-left{
    padding-right:30px;
  }
}


/* Final WebP package image fix: show full package posters without corner cropping */
.packages-section .img-box{
  height:auto;
  aspect-ratio:1 / 1;
  background:linear-gradient(135deg,#f7f7f8,#eceef2);
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.packages-section .img-box::after{
  display:none;
}
.packages-section .img-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border-radius:18px;
  transform:none;
}
.packages-section .card:hover .img-box img{
  transform:scale(1.02);
}
@media(max-width:640px){
  .packages-section .img-box{
    padding:10px;
    aspect-ratio:1 / 1;
  }
}


/* Final fix: index page package images should show full WebP poster without cropping */
.home-package-grid .img-box{
  height:auto;
  aspect-ratio:1 / 1;
  background:linear-gradient(135deg,#f7f7f8,#eceef2);
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.home-package-grid .img-box::after{
  display:none;
}
.home-package-grid .img-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border-radius:18px;
  transform:none;
}
.home-package-grid .card:hover .img-box img{
  transform:scale(1.02);
}
@media(max-width:640px){
  .home-package-grid .img-box{
    padding:10px;
    aspect-ratio:1 / 1;
  }
}


/* Mobile navbar phone visibility fix */
@media (max-width: 950px){
  .navbar{
    gap: 10px;
  }

  .nav-left{
    min-width: 0;
    flex: 1;
  }

  .brand{
    min-width: 0;
  }

  .phone{
    display: flex !important;
    align-items: center;
    gap: 5px;
    width: max-content;
    max-width: 100%;
    font-size: 11px;
    line-height: 1;
    margin-top: 4px;
    white-space: nowrap;
    text-decoration: none;
  }
}

@media (max-width: 380px){
  .phone{
    font-size: 10px;
  }

  .brand-main{
    font-size: 16px;
  }

  .brand-sub{
    font-size: 11px;
  }
}

/* Final mobile navbar phone fix: keep number in navbar without crowding */
.phone-short{
  display:none;
}

@media (max-width: 950px){
  .navbar{
    gap:8px;
    padding-left:14px;
    padding-right:14px;
  }

  .nav-left{
    min-width:0;
    flex:1 1 auto;
    gap:9px;
  }

  .logo img{
    width:54px;
    height:62px;
  }

  .brand{
    min-width:0;
  }

  .brand-main{
    font-size:18px;
  }

  .brand-sub{
    font-size:12px;
    letter-spacing:1px;
  }

  .phone{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:fit-content;
    max-width:100%;
    margin-top:5px;
    padding:5px 8px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
    text-decoration:none;
  }

  .phone-full{
    display:none;
  }

  .phone-short{
    display:inline;
  }

  .nav-right{
    flex-shrink:0;
    gap:8px;
  }
}

@media (max-width: 380px){
  .navbar{
    padding-left:10px;
    padding-right:10px;
  }

  .logo img{
    width:46px;
    height:54px;
  }

  .brand-main{
    font-size:16px;
  }

  .brand-sub{
    display:block;
  }

  .phone{
    font-size:10px;
    padding:5px 7px;
  }
}
