/* =============================================
   SIDHU TRAVELS AHMEDABAD - MAIN STYLESHEET
   Color Scheme: White | Blue | Yellow | Black
   ============================================= */

:root {
  --primary:     #0A3D91;   /* Deep Blue */
  --primary-dark:#062a6a;
  --secondary:   #FFD700;   /* Golden Yellow */
  --secondary-dark:#e6c200;
  --black:       #0d0d0d;
  --dark:        #1a1a2e;
  --white:       #ffffff;
  --light:       #f4f7ff;
  --light-blue:  #e8f0fe;
  --gray:        #6c757d;
  --light-gray:  #f8f9fa;
  --text:        #333344;
  --shadow:      0 8px 32px rgba(10,61,145,0.12);
  --shadow-hover:0 16px 48px rgba(10,61,145,0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* =================== TYPOGRAPHY =================== */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* =================== TOP BAR =================== */
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.topbar a:hover { color: var(--secondary); }
.topbar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--secondary); color: var(--dark); }

/* =================== NAVBAR =================== */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,61,145,0.1);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(10,61,145,0.18);
  padding: 6px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.brand-text { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--primary); letter-spacing: 0.5px; }
.brand-highlight { color: var(--secondary); }
.navbar-nav .nav-link {
  font-weight: 500; font-size: 14px; color: var(--dark);
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--secondary);
  transition: var(--transition); border-radius: 2px;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  left: 14px; right: 14px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary);
}
.btn-call-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 15px rgba(10,61,145,0.3);
  transition: var(--transition) !important;
}
.btn-call-nav:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)) !important;
  color: var(--dark) !important;
  box-shadow: 0 6px 20px rgba(255,215,0,0.4) !important;
  transform: translateY(-2px);
}
.btn-call-nav::after { display: none !important; }
.navbar-toggler { border: 2px solid var(--primary); border-radius: 8px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230A3D91' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* =================== BUTTONS =================== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none; padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(10,61,145,0.3);
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}
.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--dark);
  border: none; padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  transition: var(--transition);
}
.btn-secondary-custom:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10,61,145,0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white); border: 2px solid var(--white);
  padding: 12px 32px; border-radius: 50px;
  font-weight: 600; font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px; cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white); color: var(--primary);
  transform: translateY(-3px);
}

/* =================== SECTION TITLES =================== */
.section-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-desc { color: var(--gray); font-size: 16px; max-width: 600px; }
.title-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 16px 0;
}

/* =================== HERO SECTION =================== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a56c4 100%);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--secondary);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 16px; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--secondary); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 500px;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* BOOKING FORM (on hero) */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative; z-index: 2;
}
.booking-tabs {
  display: flex; background: var(--light-blue);
  border-bottom: 2px solid #e0e9ff;
}
.booking-tab {
  flex: 1; padding: 14px 8px;
  font-size: 12px; font-weight: 600;
  color: var(--gray); cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  border: none; background: transparent;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  text-align: center;
}
.booking-tab i { font-size: 18px; }
.booking-tab.active, .booking-tab:hover {
  color: var(--primary);
  background: var(--white);
  border-bottom-color: var(--primary);
}
.booking-form-body { padding: 24px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid #dde4f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: #f9fbff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,61,145,0.1);
  background: var(--white);
}
.btn-search {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--dark);
  border: none; padding: 14px;
  border-radius: 8px;
  font-weight: 700; font-size: 15px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-search:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10,61,145,0.35);
}

/* =================== FEATURES STRIP =================== */
.features-strip {
  background: var(--primary);
  padding: 30px 0;
  position: relative; z-index: 1;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--white);
  padding: 10px 0;
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--secondary);
  flex-shrink: 0;
}
.feature-label { font-size: 12px; color: rgba(255,255,255,0.65); }
.feature-title { font-size: 14px; font-weight: 600; }

/* =================== SERVICES =================== */
.services-section { padding: 90px 0; background: var(--light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}
.service-img-wrap {
  position: relative; overflow: hidden;
  height: 220px;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--dark);
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
}
.service-body { padding: 24px; }
.service-icon {
  width: 50px; height: 50px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary);
  margin-bottom: 16px;
}
.service-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  color: var(--primary);
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--secondary); }

/* =================== STATS =================== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }

/* =================== WHY CHOOSE US =================== */
.why-section { padding: 90px 0; background: var(--white); }
.why-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
  height: 100%;
}
.why-card:hover {
  border-left-color: var(--secondary);
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: var(--dark);
}
.why-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-desc { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* =================== FLEET =================== */
.fleet-section { padding: 90px 0; background: var(--light); }
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.fleet-img-wrap {
  background: var(--light-blue);
  padding: 30px;
  position: relative;
}
.fleet-img-wrap img {
  height: 140px; width: auto;
  object-fit: contain;
  margin: 0 auto; display: block;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06) rotate(-2deg); }
.fleet-type {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 3px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 600;
}
.fleet-body { padding: 20px; }
.fleet-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.fleet-detail { font-size: 13px; color: var(--gray); }
.fleet-price {
  font-size: 18px; font-weight: 800;
  color: var(--primary); margin-top: 8px;
}
.fleet-price span { font-size: 12px; font-weight: 400; color: var(--gray); }

/* =================== TESTIMONIALS =================== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testi-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.testi-quote {
  font-size: 48px; color: var(--secondary);
  font-family: Georgia, serif; line-height: 1;
  margin-bottom: 12px;
}
.testi-text { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-stars { color: var(--secondary); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.testi-name { color: var(--white); font-weight: 700; font-size: 15px; }
.testi-place { color: rgba(255,255,255,0.6); font-size: 13px; }

/* =================== CTA STRIP =================== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: rgba(10,61,145,0.1);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 200px; height: 200px;
  background: rgba(10,61,145,0.08);
  border-radius: 50%;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); font-weight: 900; }
.cta-desc { color: rgba(0,0,0,0.7); font-size: 16px; margin-bottom: 0; }

/* =================== PAGE HERO =================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 900; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb-item.active { color: var(--secondary); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* =================== ABOUT PAGE =================== */
.about-section { padding: 90px 0; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); }
.about-exp-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
  text-align: center;
}
.about-exp-num { font-size: 2.5rem; font-weight: 900; font-family: 'Montserrat',sans-serif; line-height: 1; }
.about-exp-text { font-size: 12px; font-weight: 600; }
.about-check li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--text); font-size: 15px;
}
.about-check li i { color: var(--primary); margin-top: 3px; }

/* =================== SERVICES PAGE =================== */
.services-page { padding: 80px 0; }
.service-full-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  display: flex; flex-direction: column;
  height: 100%;
}
.service-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.sfcard-img { height: 200px; overflow: hidden; position: relative; }
.sfcard-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.service-full-card:hover .sfcard-img img { transform: scale(1.08); }
.sfcard-body { padding: 28px; flex: 1; }
.sfcard-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--white);
  margin-bottom: 16px;
}
.sfcard-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.sfcard-desc { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.sfcard-features { list-style: none; padding: 0; margin: 0; }
.sfcard-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text); margin-bottom: 8px;
}
.sfcard-features li i { color: var(--secondary); }
.sfcard-footer {
  padding: 16px 28px;
  background: var(--light);
  border-top: 1px solid #eee;
  display: flex; justify-content: space-between; align-items: center;
}
.sfcard-price { font-size: 20px; font-weight: 800; color: var(--primary); }
.sfcard-price span { font-size: 12px; font-weight: 400; color: var(--gray); }

/* =================== BOOKING FORM PAGE =================== */
.booking-page { padding: 80px 0; background: var(--light); }
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.booking-form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 28px 32px;
  color: var(--white);
}
.booking-form-header h3 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.booking-form-header p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.booking-form-body-full { padding: 36px; }
.booking-info-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.binfo-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f4ff;
}
.binfo-item:last-child { border-bottom: none; }
.binfo-icon {
  width: 42px; height: 42px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  flex-shrink: 0;
}
.binfo-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.binfo-text { font-size: 13px; color: var(--gray); }
.tab-style .nav-tabs { border: none; margin-bottom: 28px; gap: 8px; }
.tab-style .nav-tabs .nav-link {
  border: 2px solid #e0e9ff;
  border-radius: 10px;
  color: var(--gray);
  font-weight: 600; font-size: 14px;
  padding: 10px 20px;
  transition: var(--transition);
}
.tab-style .nav-tabs .nav-link.active, .tab-style .nav-tabs .nav-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* =================== CONTACT PAGE =================== */
.contact-page { padding: 80px 0; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(10,61,145,0.3);
}
.contact-info-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-text { font-size: 16px; color: var(--text); font-weight: 500; }
.contact-info-text a { color: var(--primary); }
.contact-info-text a:hover { color: var(--secondary-dark); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.alert-success-custom {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: none; border-left: 4px solid #28a745;
  border-radius: 10px; padding: 16px 20px;
  color: #155724; font-weight: 500;
}
.alert-error-custom {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: none; border-left: 4px solid #dc3545;
  border-radius: 10px; padding: 16px 20px;
  color: #721c24; font-weight: 500;
}

/* =================== FOOTER =================== */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.logo-img-footer { height: 44px; width: auto; object-fit: contain; }
.footer-brand-text { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.footer-brand-text span { color: var(--secondary); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--dark); }
.footer-heading { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--secondary); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a i { font-size: 10px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.6); font-size: 14px; }
.fci { width: 36px; height: 36px; background: rgba(255,215,0,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--secondary); flex-shrink: 0; font-size: 15px; }
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--secondary); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =================== FLOATING BUTTONS =================== */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999; transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.call-float {
  position: fixed; bottom: 30px; right: 24px;
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(10,61,145,0.5);
  z-index: 999; transition: var(--transition);
}
.call-float:hover { background: var(--secondary); color: var(--dark) !important; transform: scale(1.1); }
.scroll-top {
  position: fixed; bottom: 30px; left: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }

/* =================== ANIMATIONS =================== */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 3s ease-in-out infinite; }

/* =================== UTILITIES =================== */
.text-primary-custom { color: var(--primary); }
.text-secondary-custom { color: var(--secondary); }
.bg-primary-custom { background: var(--primary); }
.bg-secondary-custom { background: var(--secondary); }
.divider-yellow { width: 60px; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--secondary-dark)); border-radius: 4px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-box:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
  .topbar { display: none; }
  .booking-form-body { padding: 16px; }
  .booking-tab span { display: none; }
  .hero-stats { justify-content: center; }
  .about-exp-badge { left: 10px; }
}
