html, body{
  margin:0;
  padding:0;
}
body {
      font-family: "Segoe UI", Arial, sans-serif;
      background: linear-gradient(180deg, #eef2ff, #f8fafc);
      scroll-behavior: smooth;
    }

    /* ============================= */
    /* PREMIUM STICKY NAVBAR STYLE  */
    /* ============================= */

    .custom-navbar {
      background: linear-gradient(90deg, #000428, #004e92);
      padding: 14px 0;

      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;

      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    /* ============================= */
    /* BRAND LOGO STYLE */
    /* ============================= */

    .navbar-brand {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff !important;
      letter-spacing: 1px;
    }

    .navbar-brand span {
      color: #ffc107;
    }

    /* ============================= */
    /* NAV LINKS */
    /* ============================= */

    .nav-link {
      color: #ffffff !important;
      font-weight: 500;
      position: relative;
      transition: 0.3s;
    }

    /* Underline animation */
    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background-color: #ffc107;
      transition: 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover {
      color: #ffc107 !important;
    }

    /* Travel Info Nav Item */
    .nav-item.travel-info {
      list-style: none;
    }

    .nav-item.travel-info a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: 0.3s ease;
    }

    .nav-item.travel-info a i {
      font-size: 16px;
      color: #ffcc00;
      /* Highlight color for icon */
    }

    .nav-item.travel-info a:hover {
      color: #ffcc00;
    }

    /* ============================= */
    /* CONTACT & LOCATION STYLE */
    /* ============================= */

    .contact-info a,
    .location-info span {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      margin-left: 12px;
      transition: 0.3s;
    }

    .contact-info a:hover {
      color: #ffc107;
    }

    /* Icons styling */
    .contact-info i,
    .location-info i {
      margin-right: 6px;
      color: #ffc107;
      font-size: 14px;
    }

    /* ============================= */
    /* MOBILE RESPONSIVE */
    /* ============================= */

    @media (max-width: 991px) {

      .contact-info,
      .location-info {
        margin-top: 10px;
      }

      .contact-info a,
      .location-info span {
        display: block;
        margin-left: 0;
      }

    }
/* HERO SECTION */

.hero{
min-height:100vh;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
color:#fff;
}

/* HERO IMAGE SLIDE */

.hero-slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
opacity:0;
transition:opacity 1.2s ease-in-out;
z-index:-2;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to right,
rgba(0,0,0,0.65),
rgba(0,0,0,0.35),
rgba(0,0,0,0.1)
);
z-index:-1;
}

.hero-slide.active{
opacity:1;
}

/* HERO TEXT POSITION */

.hero-content{
position:absolute;
top:120px;
left:80px;
max-width:520px;
z-index:5;
color:#fff;
}

/* TITLE */

.hero-content h1{
font-size:42px;
font-weight:800;
color:#fff;
margin-bottom:12px;
line-height:1.2;
animation:fadeUp 1s ease;
}

/* DESCRIPTION */

.hero-content p{
font-size:18px;
color:#f3f4f6;
line-height:1.6;
animation:fadeUp 1.4s ease;
}

/* SERVICE BADGE */

.travel-info{
margin-top:14px;
display:inline-block;
background:#ff9800;
color:#fff;
padding:6px 16px;
border-radius:25px;
font-size:14px;
font-weight:600;
animation:fadeUp 1.8s ease;
}

.travel-info i{
margin-right:6px;
}

/* BOOK BUTTON */

.book-btn{
display:inline-block;
margin-top:20px;
background:#ff9800;
color:#fff;
padding:11px 24px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:.3s ease;
animation:fadeUp 2.2s ease;
}

.book-btn:hover{
background:#000;
color:#fff;
}

/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE HERO FIX */

@media(max-width:768px){

.hero-content{
top:90px;
left:20px;
right:20px;
text-align:center;
max-width:100%;
}

.hero-content h1{
font-size:26px;
line-height:1.3;
}

.hero-content p{
font-size:15px;
}

.travel-info{
font-size:12px;
padding:5px 12px;
margin-top:10px;
}

.book-btn{
padding:9px 18px;
font-size:14px;
}

}/* SLIDER DOTS */
    .hero-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 6px;
      background: #fff;
      border-radius: 50%;
      display: inline-block;
      opacity: .5;
    }

    .dot.active {
      opacity: 1;
      background: #ff9800;
    }

/* ================= BOOKING FORM FINAL ================= */
/* BOOKING SECTION */
.booking-section{
  background:#f8fafc;
  padding:70px 0;
}

/* LEFT TEXT */
.booking-text h2{
  font-weight:700;
  font-size:36px;
  color:#0f172a;
}

.booking-text .line{
  width:60px;
  height:4px;
  background:#ff9800;
  margin:15px 0 20px;
  border-radius:5px;
}

.booking-text p{
  color:#475569;
  font-size:16px;
  line-height:1.7;
}

/* FORM BOX */
.hero-box{
  background:#ffffff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  width:100%;
  max-width:520px;
  margin:auto;
}


/* Hide default browser icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator{
  opacity:0;
  position:absolute;
  width:100%;
  height:100%;
  cursor:pointer;
}

/* Make icon clickable */
.input-group-text{
  cursor:pointer;
}


/* INPUTS */
.hero-box input,
.hero-box select{
  width:100%;
  box-sizing:border-box;
  border-radius:8px;
  padding:10px;
  border:1px solid #e2e8f0;
  font-size:15px;
}

/* PLACEHOLDER */
.hero-box input::placeholder{
  color:#64748b;
}

/* PHONE GROUP */
.input-group-text{
  background:#f1f5f9;
  border:1px solid #e2e8f0;
}

/* BUTTON */
.hero-box .btn-main{
  background:#ff9800;
  color:#fff;
  border-radius:30px;
  padding:12px 20px;
  font-weight:700;
  border:none;
  width:100%;
  transition:0.3s;
}

.hero-box .btn-main:hover{
  background:#e68900;
}

/* LAPTOP VIEW */
@media (min-width:992px){

  .booking-section{
    padding:80px 0;
  }

  .hero-box{
    margin-left:auto;
  }

}

/* 📱 MOBILE RESPONSIVE */
@media (max-width:768px){

  .booking-text{
    text-align:center;
    margin-bottom:35px;
  }

  .booking-text h2{
    font-size:28px;
  }

  .booking-text p{
    font-size:15px;
  }

  .hero-box{
    padding:22px;
  }

  .hero-box input,
  .hero-box select{
    font-size:14px;
  }

}

/* 📱 SMALL MOBILE */
@media (max-width:480px){

  .booking-text h2{
    font-size:24px;
  }

  .booking-text p{
    font-size:14px;
  }

  .hero-box{
    padding:18px;
  }

}

    /* ///////// */
    /* srevices */
    /* ///////// */
/* OUR SERVICES TITLE */

.title{
font-size:36px;
font-weight:800;
color:#111;
text-align:center;
position:relative;
display:inline-block;
margin-bottom:50px;
}

/* ORANGE LINE UNDER TITLE */

.title::after{
content:"";
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:-12px;
width:70px;
height:4px;
background:#ff9800;
border-radius:10px;
}

/* SECTION SPACING */

.section{
padding:80px 0;
background:#f8fafc;
}

/* MOBILE */

@media (max-width:768px){

.title{
font-size:28px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.title{
font-size:24px;
}

}
.service-card-v2{
border-radius:20px;
overflow:hidden;
background:#fff;
box-shadow:0 18px 45px rgba(0,0,0,.15);
transition:.35s ease;
display:flex;
flex-direction:column;
height:100%;
}

/* IMAGE */

.service-card-v2 img{
width:100%;
height:230px;
object-fit:cover;
display:block;
transition:.5s ease;
}

/* CONTENT BELOW IMAGE */

.service-overlay{
position:relative;
background:#fff;
padding:20px;
text-align:left;
}

/* TITLE */

.service-overlay h5{
font-weight:800;
font-size:20px;
margin-bottom:5px;
color:#111;
}

/* DESCRIPTION */

.service-overlay p{
font-size:.95rem;
margin-bottom:6px;
color:#555;
}

/* RATING */

.service-overlay .text-warning{
font-size:14px;
}

/* PRICE */

.service-overlay .fw-bold{
font-size:15px;
color:#ff9800;
}

/* BUTTON AREA */

.service-overlay .d-flex{
margin-top:12px;
}

/* BUTTON STYLE */

.service-overlay .btn{
border-radius:25px;
font-size:13px;
padding:6px 14px;
}

/* HOVER EFFECT */

.service-card-v2:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,.2);
}

.service-card-v2:hover img{
transform:scale(1.05);
}


    /* ===== GALLERY SECTION ===== */
/* GALLERY CARD */


.gallery-card{
position:relative;
overflow:hidden;
border-radius:20px;
height:300px;
box-shadow:0 15px 40px rgba(0,0,0,.18);
transition:.4s ease;
background:#000;
}

/* IMAGE */

.gallery-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .6s ease;
}

/* OVERLAY */

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px;

background:linear-gradient(
to top,
rgba(0,0,0,.85) 20%,
rgba(0,0,0,.55) 50%,
rgba(0,0,0,.0) 100%
);

color:#fff;

transform:translateY(40%);
transition:.5s ease;
}

/* TITLE */

.gallery-overlay h5{
font-weight:800;
font-size:20px;
margin-bottom:8px;
}

/* DESCRIPTION */

.gallery-overlay p{
font-size:.9rem;
color:#e5e7eb;
line-height:1.4;
opacity:0;
transition:.4s ease;
}

/* HOVER EFFECT */

.gallery-card:hover img{
transform:scale(1.08);
}

.gallery-card:hover .gallery-overlay{
transform:translateY(0);
}

.gallery-card:hover .gallery-overlay p{
opacity:1;
}

.gallery-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,.3);
}#Gallery .title{
margin-top:-60px;
margin-bottom:40px;
}

/* MOBILE OPTIMIZATION */

@media(max-width:768px){

.gallery-overlay{
transform:translateY(0);
}

.gallery-overlay p{
opacity:1;
}

}
    

    /* ============================= */
    /* TOUR PACKAGES SECTION */
    /* ============================= */

    /* Section Spacing */
    .taxi-heading{
text-align:center;
max-width:850px;
margin:40px auto;
padding:0 15px;
}

.taxi-heading h1{
font-size:40px;
font-weight:800;
color:#1e293b;
margin-bottom:12px;
}

.taxi-heading .subtitle{
font-size:18px;
color:#475569;
margin-bottom:10px;
}

.taxi-heading .desc{
font-size:15px;
color:#64748b;
line-height:1.7;
margin-bottom:12px;
}

.taxi-heading .tagline{
font-size:17px;
font-weight:600;
color:#f59e0b;
letter-spacing:.5px;
}
.tour-packages{
padding:90px 0;
}

/* Package Card */

.package-card{
border-radius:20px;
overflow:hidden;
background:#fff;
box-shadow:0 18px 45px rgba(0,0,0,.15);
transition:.35s ease;
display:flex;
flex-direction:column;
height:100%;
}

/* Package Image */

.package-card img{
width:100%;
height:230px;
object-fit:cover;
display:block;
transition:.5s ease;
}

/* Content BELOW image */

.package-content{
position:relative;
background:#fff;
padding:22px;
text-align:left;
}

/* Title */

.package-content h4{
font-weight:800;
font-size:20px;
margin-bottom:6px;
color:#111;
}

/* Description */

.package-content p{
font-size:.95rem;
margin-bottom:8px;
color:#555;
}

/* Price */

.price{
font-weight:700;
margin-bottom:12px;
color:#ff9800;
}

/* Button Group */

.button-group{
display:flex;
align-items:center;
gap:10px;
}

/* Book Button */

.btn-package{
padding:8px 18px;
background:#ffc107;
color:#000;
border-radius:25px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:.3s ease;
}

.btn-package:hover{
background:#e0a800;
}

/* WhatsApp Button */

.whatsapp-btn{
display:flex;
align-items:center;
justify-content:center;
background:#25D366;
color:#fff;
width:38px;
height:38px;
border-radius:50%;
text-decoration:none;
font-size:16px;
transition:.3s ease;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

/* Hover */

.package-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,.2);
}

.package-card:hover img{
transform:scale(1.05);
}

    /* ////////////// */
    /* why cabigo */
    /* ////////////// */

    #why-cabigo {
      background: #f7f9fc;
      padding: 80px 0;
      font-family: 'Segoe UI', sans-serif;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0d1b2a;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
    }

   .why-section{
  background:#f5f7fb;
}

.section-title{
  font-size:2.5rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:15px;
}

.section-subtitle{
  max-width:750px;
  margin:auto;
  color:#555;
  line-height:1.7;
  font-size:1rem;
}
.cabigo-card{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:all 0.3s ease;
  height:100%;
}

.cabigo-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* ICON */
.icon-box{
  width:70px;
  height:70px;
  background:#f1f1f1;   /* light background */
  color:#000;           /* black icon */
  font-size:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px auto;
  transition:0.3s;
}

/* hover effect */
.cabigo-card:hover .icon-box{
  background:#000;
  color:#fff;
}

.cabigo-card h4{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:10px;
}

.cabigo-card p{
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}.why-footer-text{
max-width:850px;
margin:40px auto 0;
text-align:center;
color:#555;
font-size:15px;
line-height:1.7;
}
    /* ///////// */
    /* request for calling */
    /* ///////// */

    .contact-banner {
      background-color: #f8f8f8;
      /* normal light gray background */
      color: #333;
      /* dark text for readability */
      text-align: center;
      padding: 50px 30px;
      border-radius: 10px;
      max-width: 1300px;
      margin: 50px auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .contact-banner h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      line-height: 1.2;
      letter-spacing: 0.5px;
    }

    .contact-banner p {
      font-size: 1.2rem;
      margin: 8px 0;
    }

    .phone {
      font-weight: 700;
      font-size: 1.4rem;
      margin-top: 10px;
      color: #0077cc;
      /* blue for emphasis */
    }

    .call-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #0077cc;
      /* blue button */
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .call-button:hover {
      background-color: #005fa3;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 600px) {
      .contact-banner {
        padding: 40px 20px;
      }

      .contact-banner h2 {
        font-size: 1.6rem;
      }

      .contact-banner p {
        font-size: 1rem;
      }

      .phone {
        font-size: 1.2rem;
      }

      .call-button {
        font-size: 1rem;
        padding: 10px 20px;
      }
    }
.chat-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

/* Common button style */
.chat-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;          /* smaller size */
  height: 50px;         /* smaller size */
  border-radius: 50%;
  color: #fff;
  font-size: 22px;      /* smaller icon */
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Phone button */
.chat-phone{
  background:#0077cc;
}

/* WhatsApp button */
.chat-whatsapp{
  background:#25d366;
}

/* Mobile responsive */
@media (max-width:768px){

  .chat-buttons{
    bottom:15px;
    right:15px;
    gap:8px;
  }

  .chat-buttons a{
    width:45px;
    height:45px;
    font-size:20px;
  }

}
/* CHAT BOX */

.whatsapp-box{
position:fixed;
bottom:120px;   /* FIX: moved above icon */
right:20px;
width:320px;
max-width:90%;  /* FIX: mobile responsive */
background:#efeae2;
border-radius:10px;
overflow:hidden;
display:none;
font-family:Arial;
box-shadow:0 10px 30px rgba(0,0,0,.4);
z-index:9999;
}


/* header */

.chat-header{
background:#25d366;
color:white;
padding:12px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.header-left{
display:flex;
gap:8px;
align-items:center;
}

.header-right{
display:flex;
gap:10px;
align-items:center;
}

.chat-header button{
background:none;
border:none;
color:white;
font-size:16px;
cursor:pointer;
}
/* CHAT FOOTER FIX */

.chat-footer{
display:flex;
align-items:center;
gap:8px;
padding:10px;
background:#f0f0f0;
border-top:1px solid #ddd;
}

/* EMOJI */

.chat-footer .emoji{
font-size:22px;
cursor:pointer;
}

/* INPUT FIELD */

.chat-footer input{
flex:1;
height:40px;
border:none;
border-radius:20px;
padding:0 15px;
font-size:14px;
outline:none;
background:white;
box-shadow:0 1px 3px rgba(0,0,0,0.15);
}

/* SEND BUTTON */

.chat-footer button{
width:40px;
height:40px;
border:none;
border-radius:50%;
background:#25d366;
color:white;
font-size:16px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
transition:0.2s;
}

.chat-footer button:hover{
background:#1ebe5d;
transform:scale(1.05);
}

/* body */

.chat-body{
padding:15px;
}

.support{
color:#25d366;
font-size:12px;
}

.message{
background:white;
padding:10px;
border-radius:8px;
margin-top:5px;
display:inline-block;
}

.time{
font-size:11px;
margin-top:3px;
color:#777;
}




    /* Wider and Centered FAQ Boxes */
    /* FAQ Section CSS */
    #faq {
      padding: 50px 20px;
      background-color: #f9f9f9;
      font-family: Arial, sans-serif;
    }

    #faq .container {
      max-width: 900px;
      /* slightly wider for content */
      margin: 0 auto;
    }

    #faq .faq-title {
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
    }

    #faq .faq-item {
      background-color: #fff;
      padding: 20px 25px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    }

    #faq .faq-item h4 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-weight: 600;
    }

    #faq .faq-item p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.5;
    }

    /* Make FAQ scrollable */
    #faq .container {
      max-width: 1300px;
      /* keep it centered */
      margin: 0 auto;
      max-height: 500px;
      /* adjust height as needed */
      overflow-y: auto;
      /* vertical scroll */
      padding-right: 10px;
      /* prevent content cutoff */
    }

    /* //////// */
    /* reviwes */
    /* //////// */
    /* ================= REVIEWS SECTION ================= */

    .reviews-section {
      padding: 90px 0;
      background: #f8f9fa;
      text-align: center;
    }

    .reviews-title {
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 50px;
    }

    .review-container {
      overflow: hidden;
      position: relative;
      max-width: 100%;
    }

    .review-slider {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: scrollReviews 25s linear infinite;
    }

    .review-card {
      min-width: 350px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .review-card h4,
    .review-card h5 {
      margin-top: 15px;
      font-weight: 700;
    }

    /* Continuous scroll animation */
    @keyframes scrollReviews {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* Pause on hover (optional) */
    .review-slider:hover {
      animation-play-state: paused;
    }

    /* ===== MODERN SIDE-BY-SIDE FOOTER ===== */
    footer {
      background:
        linear-gradient(rgba(15, 23, 42, .95), rgba(15, 23, 42, .95)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");
      background-size: cover;
      background-position: center;
      position: sticky;
      color: #fff;
      padding: 60px 0 20px;
      
    }

    /* Wrapper */
  .footer-wrapper{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:60px;
  padding:0 30px;
}

    /* Left & Right Equal Width */
    .footer-left,
    .footer-right {
      flex: 1;
    }

    /* Headings */
    footer h4 {
      color: #ff9800;
      font-weight: 800;
      margin-bottom: 20px;
    }

    /* Contact text */
    .footer-left p {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      color: #d1d5db;
    }

    .footer-left i {
      color: #ff9800;
    }

    /* Social Icons */
    .footer-social {
      margin-top: 15px;
    }

    .footer-social a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      margin-right: 10px;
      color: #fff;
      transition: .3s;
    }

    .footer-social a:hover {
      background: #ff9800;
      transform: translateY(-3px);
    }

    /* Form */
    .footer-right form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-right input,
    .footer-right textarea {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 10px;
      color: #fff;
    }

    .footer-right input::placeholder,
    .footer-right textarea::placeholder {
      color: #bbb;
    }

    .footer-right input:focus,
    .footer-right textarea:focus {
      border-color: #ff9800;
      outline: none;
    }

    /* Button */
    .footer-right button {
      background: linear-gradient(45deg, #ff9800, #ff5722);
      border: none;
      border-radius: 25px;
      padding: 10px;
      font-weight: 700;
      color: #fff;
      transition: .3s;
    }

    .footer-right button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 152, 0, .5);
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      color: #9ca3af;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .footer-wrapper {
        flex-direction: column;
        gap: 40px;
      }
    }
      /* FORCE FULL WIDTH FOOTER */
footer{
  width:100vw;
  margin-left:calc(-50vw + 50%);
  margin-right:calc(-50vw + 50%);
  padding:70px 0 30px;
  background:
  linear-gradient(rgba(15,23,42,.95),rgba(15,23,42,.95)),
  url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");
  background-size:cover;
  background-position:center;
  color:#fff;
}
    /* Make phone link look like normal text */
    .contact-text a {
      text-decoration: none;
      color: inherit;
      /* Same color as normal text */
      font-weight: 500;
      cursor: pointer;
    }

    .contact-text a:hover {
      color: #ffc107;
      /* Optional hover effect */
    }

    /* Phone input container */
    .d-flex {
      display: flex;
      width: 100%;
      max-width: 475px;
    }

    /* Country code box */
    .input-group-text {
      background-color: #f8f9fa;
      border: 1px solid #ced4da;
      border-right: none;
      padding: 10px 14px;
      font-weight: 600;
      border-radius: 8px 0 0 8px;
      color: #333;
    }

    /* Phone input field */
    .form-control {
      border: 1px solid #ced4da;
      border-left: none;
      border-radius: 0 8px 8px 0;
      padding: 10px 14px;
      font-size: 15px;
      outline: none;
      transition: 0.3s ease;
    }

    /* Focus effect */
    .form-control:focus {
      border-color: #ff6b00;
      box-shadow: 0 0 5px rgba(255, 107, 0, 0.4);
    }

    /* Responsive */
    @media (max-width: 576px) {
      .d-flex {
        max-width: 100%;
      }
    }

    /* ============================= */
    /* EXTRA MOBILE RESPONSIVE ONLY  */
    /* ============================= */

    @media (max-width:768px) {

      .navbar-brand {
        font-size: 20px;
      }

      .nav-link {
        padding: 8px 0;
      }

      .hero {
        text-align: center;
        padding: 30px 15px;
      }

      .hero h1 {
        font-size: 26px;
        line-height: 1.3;
      }

      .hero p {
        font-size: 15px;
      }

      .hero-box {
        margin-top: 25px;
        padding: 22px;
      }

      .service-card-v2 {
        height: auto;
      }

      .gallery-card {
        height: 220px;
      }

      .package-card {
        height: auto;
      }

      .review-card {
        min-width: 260px;
      }

      .chat-buttons a {
        width: 60px;
        height: 60px;
        font-size: 22px;
      }

    }

    /* SMALL MOBILE */
    @media (max-width:480px) {

      .hero h1 {
        font-size: 22px;
      }

      .hero p {
        font-size: 14px;
      }

      .reviews-title {
        font-size: 1.8rem;
      }

      .section-title {
        font-size: 1.9rem;
      }

      .contact-banner h2 {
        font-size: 1.4rem;
      }

    }

    /* ================= HERO RESPONSIVE FIX ================= */

    /* Laptop zoom fix */
    .hero .container {
      width: 100%;
      max-width: 1200px;
      margin: auto;
    }

    /* Make hero text flexible */
    .hero h1 {
      word-wrap: break-word;
    }

    /* Tablet */
    @media (max-width:992px) {

      .hero {
        padding: 40px 20px;
        text-align: center;
      }

      .hero .row {
        flex-direction: column;
      }

      .hero h1 {
        font-size: 30px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-box {
        width: 100%;
        max-width: 450px;
        margin: auto;
        margin-top: 30px;
      }

    }

    /* Mobile */
    @media (max-width:768px) {

      .hero {
        min-height: 60vh;
        padding: 30px 15px;
      }

      .hero h1 {
        font-size: 26px;
        line-height: 1.3;
      }

      .hero p {
        font-size: 14px;
      }

      .hero-box {
        padding: 22px;
      }

    }

    /* Small Mobile */
    @media (max-width:480px) {

      .hero {
        min-height: 55vh;
      }

      .hero h1 {
        font-size: 22px;
      }

      .hero p {
        font-size: 13px;
      }

    }