/* =============================================
   COMFORT TOUR & TRAVEL - Premium CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg-main: #F5F7FA;
  --bg-white: #FFFFFF;
  --bg-light-blue: #EEF4FF;
  --primary-blue: #0057D9;
  --dark-blue: #003C9E;
  --hover-blue: #0A6BFF;
  --accent-orange: #FF6A00;
  --soft-orange: #FF8C32;
  --text-dark: #1A1A1A;
  --text-gray: #555555;
  --shadow: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-md: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h5, h6, .nav-link, .btn, label { font-family: 'Montserrat', sans-serif; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 560px;
  line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255,106,0,0.35);
}
.btn-primary-cta:hover {
  background: var(--soft-orange);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,106,0,0.45);
  color: #fff;
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-blue:hover {
  background: var(--hover-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,87,217,0.4);
  color: #fff;
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9) !important;
  padding: 6px 14px !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: #fff !important; }

#mainNav.scrolled .nav-link { color: var(--text-dark) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--primary-blue) !important; }

.nav-icons { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.nav-icon-btn.whatsapp {
  background: #25D366;
  color: #fff;
}
.nav-icon-btn.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.nav-icon-btn.call {
  background: var(--accent-orange);
  color: #fff;
}
.nav-icon-btn.call:hover {
  background: var(--soft-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,106,0,0.4);
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.5);
  padding: 6px 10px;
}
#mainNav.scrolled .navbar-toggler { border-color: var(--primary-blue); }
.navbar-toggler-icon { filter: invert(1); }
#mainNav.scrolled .navbar-toggler-icon { filter: none; }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,30,80,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent-orange); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.7;} }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--accent-orange); font-style: italic; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  color: #fff;
}
.hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 90px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--accent-orange);
  transform: scale(1.4);
}

/* =============================================
   BOOKING BAR
   ============================================= */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: var(--shadow-lg);
}
.booking-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.booking-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.booking-form-group .form-control,
.booking-form-group .form-select {
  border: 2px solid #E8ECF0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.booking-form-group .form-control:focus,
.booking-form-group .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0,87,217,0.1);
  outline: none;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background: var(--bg-white); }

.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}
.about-badge-float {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%,-50%);
  background: var(--accent-orange);
  color: #fff;
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(255,106,0,0.5);
  border: 4px solid #fff;
}
.about-badge-float strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.about-features { list-style: none; margin-top: 28px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  font-weight: 500;
}
.about-features li i {
  color: var(--accent-orange);
  font-size: 18px;
  flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services { background: var(--bg-main); }

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: var(--bg-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 28px;
  color: var(--primary-blue);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary-blue);
}
.service-card:hover .service-icon i { color: #fff; }

.service-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =============================================
   DESTINATIONS SECTION
   ============================================= */
#destinations { background: var(--bg-white); }

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dest-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dest-card:hover img { transform: scale(1.1); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.dest-overlay h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.dest-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 12.5px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  transition: var(--transition);
}
.dest-card:hover .dest-explore { gap: 10px; }

.dest-card-tall img { height: 400px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why { background: var(--dark-blue); position: relative; overflow: hidden; }
#why::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

#why .section-label { color: var(--accent-orange); }
#why .section-title { color: #fff; }
#why .section-subtitle { color: rgba(255,255,255,0.65); }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i { font-size: 26px; color: #fff; }
.why-card h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.65); font-size: 13.5px; }

/* =============================================
   PACKAGES SECTION
   ============================================= */
#packages { background: var(--bg-main); }

.package-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.package-card:hover .package-img img { transform: scale(1.08); }

.package-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.package-body { padding: 24px; }
.package-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.package-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
}
.package-meta i { color: var(--primary-blue); font-size: 14px; }

.package-body h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.package-body p { font-size: 13px; color: var(--text-gray); margin-bottom: 16px; }

.package-includes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.package-includes span {
  background: var(--bg-light-blue);
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.package-price { font-family: 'Montserrat', sans-serif; }
.package-price .from { font-size: 11px; color: var(--text-gray); display: block; }
.package-price strong { font-size: 1.4rem; font-weight: 800; color: var(--primary-blue); }

/* =============================================
   GALLERY
   ============================================= */
#gallery { background: var(--bg-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: span 2; grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,57,217,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: #fff; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--bg-main); }

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 28px;
  font-size: 80px;
  font-family: 'Playfair Display', serif;
  color: var(--accent-orange);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars { color: #FFC107; margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-gray); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author h6 { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text-gray); }

/* Swiper customization */
.swiper-pagination-bullet { background: var(--primary-blue); }
.swiper-pagination-bullet-active { background: var(--accent-orange); }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact { background: var(--bg-white); }

.contact-info-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 48px 40px;
  height: 100%;
  color: #fff;
}
.contact-info-card .section-label { color: var(--accent-orange); }
.contact-info-card .section-title { color: #fff; font-size: 1.8rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--accent-orange); font-size: 20px; }
.contact-item h6 { font-family: 'Montserrat',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.9); margin: 0; line-height: 1.6; }

.contact-social { display: flex; gap: 10px; margin-top: 36px; }
.contact-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--accent-orange); transform: translateY(-3px); }

.contact-form-card {
  background: var(--bg-main);
  border-radius: 20px;
  padding: 48px 40px;
}
.contact-form-card h3 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-card p { color: var(--text-gray); font-size: 14px; margin-bottom: 32px; }

.form-group-custom { margin-bottom: 20px; }
.form-group-custom label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.form-group-custom .form-control {
  border: 2px solid #E8ECF0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: var(--bg-white);
}
.form-group-custom .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0,87,217,0.08);
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* =============================================
   MAP
   ============================================= */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.map-wrapper iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: #0D0D1A;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-brand img { height: 56px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; transform: translateY(-3px); }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent-orange);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent-orange); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: 11px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--accent-orange); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom span { color: var(--accent-orange); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.float-btn.whatsapp { background: #25D366; color: #fff; }
.float-btn.call { background: var(--accent-orange); color: #fff; }
.float-btn:hover { transform: scale(1.15) translateY(-3px); box-shadow: var(--shadow-lg); }
.float-btn-label {
  position: absolute;
  right: 64px;
  background: var(--text-dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .float-btn-label { opacity: 1; }

/* =============================================
   AOS CUSTOMIZATION
   ============================================= */
[data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .section-pad { padding: 64px 0; }
  .about-images { height: 420px; }
  .about-img-main { height: 300px; }
  .about-img-secondary { height: 220px; }
  .booking-card { padding: 24px; }
  .contact-info-card, .contact-form-card { padding: 36px 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-row: span 1; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.5rem; }
  .about-images { height: 300px; }
  .about-badge-float { width: 80px; height: 80px; }
  .about-badge-float strong { font-size: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .nav-icon-btn span { display: none; }
  .nav-icon-btn { padding: 9px 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary-cta, .btn-outline-cta { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-bar { margin-top: 0; }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--hover-blue); transform: translateY(-3px); }