/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f8fb;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 84, 0, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 77, 26, 0.2);
  z-index: 1000;
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image box */
.logo-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px; /* optional */
}

/* Brand text */
.brand .title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.brand .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  color: #f97316;
  margin-top: 2px;
}

/* RIGHT NAV */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* underline effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff4d1a, #dc2626);
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ACTIVE */
.nav-menu a.active {
  color: #ffffff;
}

/* CALL BUTTON */
.nav-phone {
  background: linear-gradient(90deg, #ff4d1a, #dc2626);
  color: rgb(0, 0, 0) !important;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 77, 26, 0.3);
  transition: 0.3s;
}

.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 77, 26, 0.45);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* Animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* RESPONSIVE */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 84, 0, 0.95);
    backdrop-filter: blur(14px);

    flex-direction: column;
    align-items: flex-start;
    padding: 20px;

    gap: 18px;

    /* hidden state */
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-phone {
    width: 100%;
    text-align: center;
  }
}



/* HERO SECTION */
/* HERO BACKGROUND */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* 🌄 YOUR BACKGROUND IMAGE */
  background: url("../images/hero2.jpg") no-repeat center center/cover;

  position: relative;
  color: #fff;
}

/* DARK + ORANGE RED PREMIUM OVERLAY */

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #ff4d1a;
}

.tagline {
  font-size: 1.1rem;
  color: #ff4d1a;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.desc {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(90deg, #ff4d1a, #dc2626);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 77, 26, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.secondary {
  border: 2px solid #ff4d1a;
  color: #ff4d1a;
  background: transparent;
}

.btn.secondary:hover {
  background: #ff4d1a;
  color: #fff;
}

/* responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .desc {
    font-size: 0.95rem;
  }
}
/* SECTION */
/* SECTION BACKGROUND (LIGHT PREMIUM) */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  color: #1f2937;
}

/* CONTAINER */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row-reverse; /* ✅ image right, content left */
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 590px;   /* reduce height here */
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}
.image-badge {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* IMAGE */
.image-badge img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* FLOATING BADGE - TOP */
.floating-badge {
  position: absolute;
  top: 18px;        /* ✅ moved to top */
  left: 18px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  color: #ff4d1a;
  font-weight: 600;
  font-size: 14px;

  padding: 10px 14px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  gap: 6px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  animation: floatBadge 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
/* CONTENT CARD (LIGHT GLASS STYLE) */
.about-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 77, 26, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SUB TITLE */
.sub-title {
  color: #ff4d1a;
  font-weight: 600;
  letter-spacing: 1px;
}

/* HEADING */
.about-content h2 {
  font-size: 2rem;
  margin: 10px 0;
  color: #111827;
}

/* PARAGRAPH */
.about-content p {
  color: #4b5563;
  line-height: 1.7;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

/* FEATURE BOX (LIGHT STYLE) */
.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 77, 26, 0.08);
  border-left: 4px solid #ff4d1a;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-box i {
  color: #ff4d1a;
  font-size: 18px;
}

.feature-box:hover {
  background: rgba(255, 77, 26, 0.15);
  transform: translateX(6px);
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff4d1a, #dc2626);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 77, 26, 0.25);
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .about-image {
    width: 100%;
  }

  .about-image img,
  .image-badge img {
    height: 300px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {

  .about-content {
    padding: 22px;
    border-radius: 16px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .features {
    gap: 10px;
  }

  .feature-box {
    padding: 10px 12px;
    gap: 10px;
  }

  .feature-box i {
    font-size: 16px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}


/* AI-style background shapes */
.bg-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: float 20s infinite linear;
}

.bg-shape.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0d6efd;
  top: 20%;
  left: 5%;
  animation-duration: 25s;
}

.bg-shape.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #6c757d;
  top: 60%;
  right: 10%;
  animation-duration: 30s;
}

.bg-shape.hexagon {
  width: 100px;
  height: 55px;
  background: #0d3b66;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  bottom: 10%;
  left: 30%;
  animation-duration: 35s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-30px) translateX(20px) rotate(180deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 20px;
 background:
    radial-gradient(circle at top left, #fff7ed, transparent 40%),
    radial-gradient(circle at bottom right, #ffe4e6, transparent 40%),
    #ddefff;
  text-align: center;
  position: relative;
}

/* MORE SPACE LEFT & RIGHT */
.services-section .container {
  max-width: 1300px;   /* bigger section width */
  margin: 0 auto;
  padding: 0 30px;
}

/* BIGGER GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;  /* more space between cards */
}

/* BIGGER SQUARE CARDS */
.card {
  aspect-ratio: 1 / 1;
  padding: 35px 28px;   /* more inner spacing */
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* BIGGER ICON */
.icon {
  width: 70px;
  height: 70px;
  font-size: 24px;
  margin-bottom: 18px;
}

/* BIGGER TITLE */
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* BIGGER TEXT */
.card p {
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
/* TITLE */
.services-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* PREMIUM CARD */
.card {
  position: relative;
  padding: 35px 25px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);

  text-align: left;

  transition: all 0.4s ease;
  overflow: hidden;
}

/* TOP COLOR BAR */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ff4d1a, #f97316);
}

/* ICON WRAPPER */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: white;

  margin-bottom: 18px;

  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

/* ICON COLORS */
.card-blue .icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.card-orange .icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.card-red .icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-purple .icon {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* TITLE */
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* HOVER PREMIUM EFFECT */
.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.15);
}

/* ICON POP ON HOVER */
.card:hover .icon {
  transform: rotate(8deg) scale(1.1);
}

/* LIGHT GLOW EFFECT */
.card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,77,26,0.08), transparent 60%);
  opacity: 0;
  transition: 0.5s;
}

.card:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* TABLET */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .services-section {
    padding: 70px 15px;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 25px 20px;
  }

  .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* SECTION */
.packages-section{
padding:90px 20px;
background:linear-gradient(135deg,#f8fafc,#eef2f7);
}

.packages-title{
text-align:center;
font-size:30px;
margin-bottom:10px;
}

.packages-subtitle{
text-align:center;
color:#64748b;
margin-bottom:50px;
}

/* grid */
.packages-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1200px;
margin:auto;
}

/* card */
.package-card{
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.package-card:hover{
transform:translateY(-8px);
}

/* image */
.package-img{
position:relative;
}

.package-img img{
width:100%;
height:220px;
object-fit:cover;
}

/* badge */
.package-badge{
position:absolute;
top:15px;
left:15px;
background:linear-gradient(90deg,#ff4d1a,#dc2626);
color:white;
padding:5px 12px;
border-radius:20px;
font-size:12px;
}

/* content */
.package-content{
padding:18px;
}

.package-content h3{
margin-bottom:10px;
}

/* meta */
.package-meta{
display:flex;
justify-content:space-between;
font-size:13px;
color:#64748b;
margin-bottom:15px;
}

/* bottom */
.package-bottom{
display:flex;
justify-content:space-between;
align-items:center;
}

.price{
color:#ff4d1a;
font-weight:600;
}

.package-bottom a{
background:linear-gradient(90deg,#ff4d1a,#dc2626);
color:white;
padding:7px 15px;
border-radius:20px;
text-decoration:none;
font-size:12px;
}

/* responsive */
@media(max-width:900px){
.packages-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.packages-grid{
grid-template-columns:1fr;
}
}
.packages-section{
position:relative;
padding:90px 20px;
background:#f8fafc;
overflow:hidden;
}

/* shapes */
.packages-bg-shapes span{
position:absolute;
border-radius:50%;
opacity:.25;
animation:floatShapes 18s infinite linear;
}

/* shape 1 */
.packages-bg-shapes span:nth-child(1){
width:220px;
height:220px;
background:#ff4d1a;
top:10%;
left:5%;
}

/* shape 2 */
.packages-bg-shapes span:nth-child(2){
width:180px;
height:180px;
background:#dc2626;
bottom:10%;
right:8%;
animation-delay:4s;
}

/* shape 3 */
.packages-bg-shapes span:nth-child(3){
width:140px;
height:140px;
background:#fb923c;
top:60%;
left:35%;
animation-delay:8s;
}

/* shape 4 */
.packages-bg-shapes span:nth-child(4){
width:120px;
height:120px;
background:#f97316;
top:20%;
right:30%;
animation-delay:12s;
}

/* animation */
@keyframes floatShapes{
0%{transform:translateY(0px)}
50%{transform:translateY(-40px)}
100%{transform:translateY(0px)}
}

/* content above bg */
.packages-section .container{
position:relative;
z-index:2;
}
/* GALLERY */
#travel-gallery {
  position: relative;
  background: linear-gradient(180deg, #fef9f5 0%, #fdf5eb 50%, #faf0e4 100%);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

#travel-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 123, 0, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 159, 90, 0.04) 0%, transparent 45%);
}

.gallery-header {
  margin-bottom: 50px;
}

#travel-gallery h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

#travel-gallery h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9f5a, #ff7b00);
  border-radius: 2px;
}

#travel-gallery .subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}

/* 4 CARDS PER ROW */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* CARD */
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* REMOVE DIFFERENT SIZES */
.gallery-card.tall,
.gallery-card.wide {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* REMOVE HOVER ZOOM */
.gallery-card:hover img {
  transform: none;
}

/* INFO */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  text-align: left;
}

.card-info .location {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.card-info h3 {
  font-size: 16px;
  margin: 0;
}

.card-info p {
  font-size: 12px;
  opacity: .85;
}

/* REMOVE ORANGE HOVER LAYER */
.card-hover{
display:none;
}

/* REMOVE CARD HOVER */
.gallery-card:hover{
transform:none;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
}
#travel-gallery{
position:relative;
overflow:hidden;
}

/* 360 rotating background layer */
.gallery-rotate-bg{
position:absolute;
top:50%;
left:50%;
width:1200px;
height:1200px;
transform:translate(-50%, -50%);
background:conic-gradient(
from 0deg,
#ff7b00,
#ffb347,
#ff6b6b,
#ffd166,
#ff7b00
);
filter:blur(120px);
opacity:0.35;
z-index:0;
animation:rotate360 18s linear infinite;
}

/* second soft layer for depth */
.gallery-rotate-bg::after{
content:"";
position:absolute;
inset:150px;
background:conic-gradient(
from 180deg,
#ff0000,
#ffffff,
#ffffff,
#3a3939
);
filter:blur(100px);
opacity:0.4;
animation:rotate360Reverse 25s linear infinite;
}

/* rotation */
@keyframes rotate360{
0%{
transform:translate(-50%, -50%) rotate(0deg);
}
100%{
transform:translate(-50%, -50%) rotate(360deg);
}
}

@keyframes rotate360Reverse{
0%{
transform:rotate(360deg);
}
100%{
transform:rotate(0deg);
}
}

/* keep content above bg */
#travel-gallery .gallery-masonry,
#travel-gallery .gallery-header{
position:relative;
z-index:2;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  #travel-gallery h2 {
    font-size: 32px;
  }
}


/*feedback*/

/* Testimonials Section */
#testimonials {
  position: relative;
  background: linear-gradient(135deg, #dbf7ff 0%, #ffefdc 50%, #dbf7ff 100%);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 123, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 100, 0.05) 0%, transparent 60%);
}

#testimonials h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

#testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff9f5a, #ff9f5a);
  border-radius: 2px;
}

#testimonials .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: hidden;
  padding: 20px 10px;
  scroll-behavior: smooth;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #fff8f0);
  min-width: 320px;
  flex: 0 0 320px;
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 123, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ffa500);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 123, 0, 0.15);
  border-color: rgba(255, 123, 0, 0.3);
}

.quote-icon {
  font-size: 32px;
  color: #ff7b00;
  margin-bottom: 15px;
  opacity: 0.8;
}

.testimonial-card .client-feedback {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: normal;
  margin-bottom: 20px;
}

.rating {
  margin-bottom: 20px;
}

.rating i {
  color: #ffc107;
  font-size: 14px;
  margin: 0 2px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
}

.client-photo {
  flex-shrink: 0;
}

.client-photo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff7b00;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-photo img {
  transform: scale(1.1);
}

.client-details {
  text-align: left;
}

.client-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.client-details p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7b00, #ff9f5a);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 123, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav:hover {
  background: linear-gradient(135deg, #e66a00, #ff7b00);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev-btn {
  left: -25px;
}

.testimonial-nav.next-btn {
  right: -25px;
}

/* AI-style floating background shapes */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape1 {
  width: 150px;
  height: 150px;
  background: #ff7b00;
  top: 10%;
  left: 15%;
  animation-duration: 25s;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: #007bff;
  top: 30%;
  left: 70%;
  animation-duration: 30s;
}

.shape3 {
  width: 120px;
  height: 120px;
  background: #ff3b7f;
  top: 60%;
  left: 20%;
  animation-duration: 35s;
}

.shape4 {
  width: 80px;
  height: 80px;
  background: #00d1ff;
  top: 80%;
  left: 60%;
  animation-duration: 28s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-20px) translateX(15px) scale(1.05); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}

.pilgrim-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #c3e1ff, #ffb694);
}

/* TITLE */
.pilgrim-title {
  text-align: center;
  margin-bottom: 40px;
}

.pilgrim-title h2 {
  font-size: 34px;
  color: #0f172a;
}

.pilgrim-title p {
  color: #666;
  margin-top: 8px;
}

/* MAIN LAYOUT */
.pilgrim-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE GRID */
.pilgrim-left {
  flex: 1;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.img-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.img-grid img:hover {
  transform: scale(1.05);
}

/* RIGHT SIDE */
.pilgrim-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* LOCATION CARD */
.location-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.location-item:hover {
  transform: translateX(5px);
}

.location-item span {
  font-size: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .pilgrim-container {
    flex-direction: column;
  }

  .img-grid img {
    height: 140px;
  }
}
/* CONTACT FORM */
/* ===== CONTACT SECTION BACKGROUND ===== */
/* ===== CONTACT SECTION BACKGROUND ===== */
/* SECTION BACKGROUND */
.contact-section{
position:relative;
padding:100px 20px;
background:linear-gradient(135deg,#fff7ed,#ffe4e6,#fef9f5);
overflow:hidden;
font-family:'Poppins',sans-serif;
}

/* animated bg glow */
.contact-bg{
position:absolute;
top:-200px;
left:-200px;
width:600px;
height:600px;
background:conic-gradient(from 0deg,#ff7b00,#ff4d4d,#ffd166,#ff7b00);
filter:blur(150px);
opacity:.25;
animation:spin 18s linear infinite;
}

@keyframes spin{
100%{transform:rotate(360deg);}
}

/* container */
.contact-container{
position:relative;
z-index:2;
max-width:1100px;
margin:auto;
text-align:center;
}

.contact-container h2{
font-size:40px;
margin-bottom:10px;
}

.section-subtitle{
color:#666;
margin-bottom:50px;
}

/* GRID */
.contact-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
align-items:start;
}

/* FORM CARD */
.contact-left{
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* INPUT STYLE */
.input-box{
position:relative;
margin-bottom:25px;
}

.input-box input,
.input-box textarea{
width:100%;
padding:14px 12px;
border:none;
border-bottom:2px solid #ddd;
background:transparent;
outline:none;
font-size:15px;
resize:none;
}

.input-box label{
position:absolute;
left:12px;
top:14px;
color:#888;
transition:.3s;
pointer-events:none;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label{
top:-10px;
font-size:12px;
color:#ff7b00;
}

/* BUTTON */
button{
background:linear-gradient(90deg,#ff7b00,#ff4d4d);
border:none;
color:white;
padding:14px 25px;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:.3s;
width:100%;
}

button:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(255,123,0,0.3);
}

/* RIGHT SIDE */
.contact-right{
display:flex;
flex-direction:column;
gap:20px;
}

/* CARD LAYOUT - ICON LEFT + TEXT RIGHT IN SAME ROW */
.info-card{
display:flex;
flex-direction:row;
align-items:center;
gap:15px;
text-align:left;
background:rgb(255, 255, 255);
backdrop-filter:blur(10px);
padding:20px;
border-radius:15px;
color:#464646;
}

/* ICON CENTERED */
.icon{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:linear-gradient(135deg,#ffca98,#ff8484);
color:white;
font-size:18px;
flex-shrink:0;
}

/* RESPONSIVE */
@media(max-width:900px){
.contact-grid{
grid-template-columns:1fr;
}
}

/* =========================
   TABLET + SMALL LAPTOP FIX
========================= */
@media (max-width: 1024px) {

  .contact-container {
    padding: 0 15px;
  }

  .contact-container h2 {
    font-size: 32px;
  }

  .contact-left {
    padding: 25px;
  }

  .contact-grid {
    gap: 25px;
  }
}

/* =========================
   MOBILE PERFECT LAYOUT
========================= */
@media (max-width: 900px) {

  .contact-section {
    padding: 80px 15px;
  }

  .contact-container h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* FORCE SINGLE COLUMN CLEANLY */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FORM CARD FIX */
  .contact-left {
    padding: 20px;
    border-radius: 14px;
  }

  /* INPUT FIX */
  .input-box {
    margin-bottom: 16px;
  }

  .input-box input,
  .input-box textarea {
    font-size: 14px;
    padding: 12px 10px;
  }

  /* BUTTON FIX */
  button {
    padding: 12px;
    font-size: 15px;
    border-radius: 25px;
  }

  /* INFO CARD FIX */
  .contact-right {
    gap: 15px;
  }

  .info-card {
    flex-direction: row;
    align-items: center;
    padding: 14px;
    gap: 12px;
    border-radius: 12px;
  }

  .info-card div {
    font-size: 14px;
  }

  .icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* =========================
   SMALL MOBILE (VERY CLEAN FIX)
========================= */
@media (max-width: 480px) {

  .contact-section {
    padding: 60px 12px;
  }

  .contact-container h2 {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .contact-left {
    padding: 16px;
  }

  .input-box input,
  .input-box textarea {
    font-size: 13px;
  }

  button {
    font-size: 14px;
  }

  .info-card {
    padding: 12px;
    gap: 10px;
  }

  .icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
/* FOOTER */
.footer {
  background:  #031e47;
  color: #fff;
  text-align: center;
  padding: 15px;
  /* margin-top: 40px; */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .gallery img {
    width: 100%;
  }
}


/*famous pilgrams */

.routes-section{
padding:100px 20px;
background:
radial-gradient(circle at top left, #ffe0cc, transparent 45%),
radial-gradient(circle at bottom right, #ffd6d6, transparent 45%),
radial-gradient(circle at center right, #fff3b0, transparent 40%),
linear-gradient(135deg,#ffffff,#f8fafc);
}

.routes-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:50px;

}

/* LEFT */
.routes-left{
flex:1;
}

.routes-left h2{
font-size:2.3rem;
margin-bottom:10px;
}

.routes-left p{
color:#64748b;
margin-bottom:20px;
}

/* BUTTON */
.routes-btn{
background:linear-gradient(90deg,#ff4d1a,#dc2626);
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
display:inline-block;
}

/* RIGHT */
.routes-right{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}

/* ITEM */
.route-item{
display:flex;
gap:15px;
background:white;
padding:20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.route-item:hover{
transform:translateX(8px);
}

.route-icon{
width:50px;
height:50px;
background:linear-gradient(135deg,#ff4d1a,#dc2626);
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:22px;
color:white;
}

.route-item h4{
margin-bottom:4px;
}

.route-item p{
color:#64748b;
font-size:14px;
}

/* responsive */
@media(max-width:900px){
.routes-container{
flex-direction:column;
}
}
.routes-section{
position:relative;
padding:100px 20px;
background:#f8fafc;
overflow:hidden;
}

/* premium gradient glow */
.routes-bg{
position:absolute;
top:-100px;
left:-100px;
width:500px;
height:500px;
background:radial-gradient(circle,#ff4d1a40,transparent 70%);
z-index:0;
}

.routes-section::after{
content:"";
position:absolute;
bottom:-120px;
right:-120px;
width:500px;
height:500px;
background:radial-gradient(circle,#dc262640,transparent 70%);
z-index:0;
}

/* keep content above bg */
.routes-container{
position:relative;
z-index:2;
}

/*our cars*/
/* ================= Our Cars Section ================= */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px; /* center with spacing */
  line-height: 1.6;
}
.cars-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg,#f8fafc,#eef2f7);
  overflow: hidden;
}

/* LEFT RIGHT MARGIN */
.cars-section .container{
  max-width:1200px;
  margin:0 auto;
}

/* GRID SMALLER CARDS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* SMALLER CARD */
.car-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.car-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: .4s ease;
}

.car-card:hover img{
  transform: scale(1.08);
}

/* PRICE BADGE */
.car-info h4 {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(90deg,#ff4d1a,#dc2626);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* INFO */
.car-info {
  padding: 18px;
  text-align:center;
}

.car-info h3{
  font-size:1rem;
  margin:8px 0 12px;
}

/* BUTTON */
.nav-phone{
  background:linear-gradient(90deg,#ffffff,#ffffff);
  /* color:rgb(255, 102, 0) !important; */
  padding:8px 16px;
  border-radius:25px;
  font-size:13px;
  display:inline-block;
}

/* ---------- PREMIUM ANIMATED BACKGROUND ---------- */

.cars-section::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(255,77,26,0.18),transparent);
top:-150px;
left:-150px;
animation:floatBg 12s infinite linear;
}

.cars-section::after{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(220,38,38,0.15),transparent);
bottom:-150px;
right:-150px;
animation:floatBg2 14s infinite linear;
}

/* floating animation */
@keyframes floatBg{
0%{transform:translate(0,0)}
50%{transform:translate(80px,40px)}
100%{transform:translate(0,0)}
}

@keyframes floatBg2{
0%{transform:translate(0,0)}
50%{transform:translate(-80px,-40px)}
100%{transform:translate(0,0)}
}

/* RESPONSIVE */
@media(max-width:1100px){
.cars-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.cars-grid{
grid-template-columns:1fr;
}
}

/* ================= Floating Contact Buttons ================= */
/* ================= Floating Contact Buttons ================= */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid orange; /* default border, can be overridden per type */
  background: rgba(255,255,255,0.05); /* optional semi-transparent bg */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.contact-btn.whatsapp {
  border-color: orange;
}

.contact-btn.call {
  border-color:orange; /* blue border for call */
}

.contact-btn img {
  width: 30px;
  height: 30px;
}

.contact-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


/*popular rides*/
.popular-rides-section{
padding:100px 20px;
background:linear-gradient(135deg,#f8fafc,#eef2f7);
}

/* HEADER */
.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:2.4rem;
margin-bottom:10px;
}

.section-header p{
color:#64748b;
}

/* GRID */
.places-grid{
display:flex;
gap:20px;
overflow:hidden;
}

/* SAME SIZE CARDS */
.place-card{
width:240px;
min-width:240px;
height:220px;
flex-shrink:0;
border-radius:16px;
overflow:hidden;
position:relative;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
background:#fff;
}

/* IMAGE SAME SIZE */
.place-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* OVERLAY SAME HEIGHT */
.place-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
height:65px;
padding:10px;
background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
color:white;
display:flex;
flex-direction:column;
justify-content:center;
}

/* TEXT */
.place-overlay h3{
font-size:13px;
margin:0;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

.place-overlay span{
font-size:11px;
opacity:.9;
}
.popular-rides-section{
position:relative;
overflow:hidden;
background:linear-gradient(135deg,#f8fafc,#eef2f7);
}

/* BG WRAPPER */
.rides-bg span{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.35;
animation:ridesFloat 18s infinite linear;
}

/* BLOB 1 */
.rides-bg span:nth-child(1){
width:400px;
height:400px;
background:#ff4d1a;
top:-150px;
left:-150px;
}

/* BLOB 2 */
.rides-bg span:nth-child(2){
width:350px;
height:350px;
background:#dc2626;
bottom:-120px;
right:-120px;
animation-delay:5s;
}

/* BLOB 3 */
.rides-bg span:nth-child(3){
width:300px;
height:300px;
background:#fb923c;
top:40%;
left:35%;
animation-delay:9s;
}

/* ANIMATION */
@keyframes ridesFloat{
0%{transform:translate(0,0)}
50%{transform:translate(60px,40px)}
100%{transform:translate(0,0)}
}

.popular-rides-section{
position:relative;
overflow:hidden;
background:#f8fafc;
}

/* animated gradient */
.rides-animated-bg{
position:absolute;
inset:0;
background:linear-gradient(
120deg,
#fff 0%,
#ffe5dc 25%,
#f8fafc 50%,
#ffeae3 75%,
#ffffff 100%
);
background-size:300% 300%;
animation:gradientMove 12s ease infinite;
z-index:0;
}

/* keep content above bg */
.popular-rides-section .container,
.places-grid{
position:relative;
z-index:2;
}

/* animation */
@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
/* RESPONSIVE */
@media(max-width:1100px){
.places-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.places-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:500px){
.places-grid{
grid-template-columns:1fr;
}
}


/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Popup Box */
.popup-box {
  background: #ffffff;
  width: 350px;
  max-width: 90%;
  padding: 25px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  position: relative;
  animation: popupFade 0.3s ease-in-out;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  transition: 0.2s;
}

.close-btn:hover {
  color: red;
}

/* Heading */
.popup-box h2 {
  margin: 0;
  font-size: 22px;
  color: #0f172a;
  text-align: center;
}

/* Subtitle */
.popup-box p {
  font-size: 13px;
  text-align: center;
  color: #666;
  margin-bottom: 18px;
}

/* Form */
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs */
.popup-box input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.popup-box input:focus {
  border-color: #ff7606;
  box-shadow: 0 0 6px rgba(255,118,6,0.3);
}

/* Button */
.popup-box button {
  background: #ff7606;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  background: #e65f00;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .popup-box {
    width: 90%;
    padding: 20px;
  }
}
/* Basic Footer Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

/* Footer Styling */
.footer {
  background: #ff9950; /* solid orange */
  color: #ffffff;
  padding: 60px 20px 20px;
}

/* container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 60px; /* 👈 adds space between left and right */
}
/* LEFT SECTION */
.footer-left {
  flex: 1 1 45%;
  margin: 20px 0;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #091e50; /* dark blue */
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

/* SOCIAL ICONS */
.footer-left .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  margin-right: 10px;

  border-radius: 50%;
  background: #ffffff;
  color: #0f172a; /* dark blue */

  transition: 0.3s ease;
}

.footer-left .social-icons a:hover {
  background: #ff7606;
  color: #ffffff;
}

/* RIGHT SECTION */
.footer-right {
  flex: 1 1 45%;
  margin: 20px 0;
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0f172a; /* dark blue */
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #000000;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ICONS */
.footer-right i {
  color: #2a1b0f; /* dark blue */
  margin-top: 3px;
}

/* VISITOR COUNTER */
.visitor-counter {
  margin-top: 15px;
  display: inline-block;
  padding: 6px 12px;
  background: #ec5700;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.4);
  color: #000000;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left .social-icons {
    justify-content: center;
  }

  .footer-right li {
    justify-content: center;
  }
}

.visitor-counter {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #000000; /* adjust color to match footer */
}


/* Counter Section with Background Image */
.counter-section {
  padding: 20px 20px;
   background: url("../images/car123.jpg") center/cover no-repeat;
}

/* CONTAINER WIDTH */
.counter-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.counter-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,77,26,0.15);

  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* TOP GRADIENT LINE */
.counter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg,#ff4d1a,#f97316);
}

/* ICON */
.counter-box .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: linear-gradient(135deg,#ff4d1a,#dc2626);
  color: white;
  font-size: 24px;

  box-shadow: 0 10px 25px rgba(255,77,26,0.3);
}

/* NUMBER */
.count {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

/* TEXT */
.counter-box p {
  color: #64748b;
  font-weight: 500;
}

/* HOVER */
.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .counters {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   IMPROVED MOBILE RESPONSIVE v2 - Fixed Spacing/Content
   Targeted fixes for section spacing, nav, cards
   ======================================== */

/* TABLET 1024px */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero {
    height: 70vh;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* MOBILE 768px & below */
@media (max-width: 768px) {
  /* Navbar - Centered stack with spacing */
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .navbar nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .navbar nav a {
    margin: 0 0.3rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    min-width: 4rem;
  }
  .nav-phone {
    margin: 0;
    width: auto;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    /* height: 50vh; */
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Sections - Better spacing */
  section {
    padding: 3rem 1.5rem !important;
  }
  .about-section {
    padding: 3rem 1.5rem !important;
  }
  .services-section {
    padding: 3rem 1.5rem !important;
  }
  #travel-gallery {
    padding: 3rem 1.5rem !important;
  }

  /* Cards - Full width with margin */
  .services-section .card {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto 1.5rem;
    padding: 2rem 1.5rem;
  }
  .info-card {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto 1.5rem;
  }

  /* Grids - Explicit single column */
  .trips-grid, .gallery-grid, .cars-grid, .places-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .testimonial-grid {
    flex-direction: column !important;
    align-items: center;
  }
  .testimonial-card {
    width: 90% !important;
    max-width: 350px;
  }

  /* Cards row */
  .cards-row {
    flex-direction: column !important;
    align-items: center;
  }

  /* Contact */
  .contact-grid {
    flex-direction: column !important;
    gap: 2rem;
  }
  .contact-form, .contact-right {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
  }
}

/* PHONE 480px */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.8rem;
  }
  .navbar nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  section {
    padding: 2rem 1rem !important;
  }
  .services-section .card, .info-card {
    padding: 1.5rem 1rem !important;
  }
  .cars-grid .car-card, .place-card, .trip-card {
    margin-bottom: 1rem;
  }
  .contact-buttons {
    gap: 1rem;
  }
  .contact-btn {
    width: 3rem;
    height: 3rem;
  }
  .footer {
    padding: 2rem 1rem 1rem !important;
  }

  /* Famous Pilgrims Image - Mobile Optimized */
  #famous-places .top-banner img {
    width: 95% !important;
    max-width: 300px !important;
  }
}


