/* ==========================================================================
   Juan Tours & Travels - Premium Travel & Car Rental Stylesheet
   Powered by Humans Information Technology Solutions (humansitsolutions.com)
   ========================================================================== */

:root {
  --primary-color: #0b2545;
  --primary-dark: #06172b;
  --primary-light: #133b6b;
  --accent-color: #e5a93c;
  --accent-hover: #c98e26;
  --accent-light: #fef5e7;
  --secondary-color: #0284c7;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-surface: #ffffff;
  --card-border: rgba(15, 43, 72, 0.08);
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 37, 69, 0.12);
  --shadow-hover: 0 25px 50px rgba(11, 37, 69, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset & Base - Strictly Prevent Horizontal Overflow */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Topbar & Header
   ========================================================================== */
.topbar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #e2e8f0;
}
.topbar a:hover {
  color: var(--accent-color);
}

.topbar-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.topbar-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-info-item i {
  color: var(--accent-color);
  font-size: 0.95rem;
}

.topbar-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #ffffff;
}

.topbar-socials a:hover {
  background: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-custom {
  background: #ffffff;
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Big Crisp Logo */
.navbar-brand img {
  height: 68px;
  width: auto;
  max-height: 75px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--primary-color);
  padding: 8px 14px !important;
  border-radius: 6px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Custom Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 15px rgba(11, 37, 69, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.3);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-accent-custom:hover {
  background: linear-gradient(135deg, var(--accent-hover), #9a6813);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 169, 60, 0.5);
}

.btn-whatsapp-custom {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-custom:hover {
  background: #1ebc59;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: #ffffff;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Hero Section - Centered Text & Overflow Control
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  width: 100%;
}

.hero-slider .carousel-item {
  min-height: 560px;
  max-height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 43, 0.78) 0%, rgba(6, 23, 43, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 15px 70px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(229, 169, 60, 0.22);
  border: 1px solid var(--accent-color);
  color: #ffd885;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-lead {
  font-size: 1.15rem;
  color: #f1f5f9;
  max-width: 760px;
  margin: 0 auto 30px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  width: 32px;
  border-radius: 10px;
}

/* Fast Inquiry Bar - High Contrast Text */
.fast-inquiry-section {
  position: relative;
  z-index: 10;
  margin-top: -45px;
  margin-bottom: 30px;
  width: 100%;
}

.fast-inquiry-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: 0 15px 40px rgba(11, 37, 69, 0.12);
  border: 1px solid rgba(15, 43, 72, 0.08);
}

.fast-inquiry-card label,
.fast-inquiry-card .form-label {
  color: #0b2545 !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  display: flex;
  align-items: center;
}

.fast-inquiry-card .form-control,
.fast-inquiry-card .form-select {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b2545 !important;
  background-color: #f8fafc;
}

.fast-inquiry-card .form-select option {
  color: #0b2545 !important;
  background-color: #ffffff;
  font-weight: 500;
}

.fast-inquiry-card .form-control:focus,
.fast-inquiry-card .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
  background-color: #ffffff;
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section-padding {
  padding: 85px 0;
}

.section-padding-sm {
  padding: 55px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-color);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  background: rgba(2, 132, 199, 0.08);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 37, 69, 0.94);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow-md);
}

.about-badge-floating .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.about-badge-floating .badge-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 500;
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-check-list li i {
  color: var(--secondary-color);
  background: rgba(2, 132, 199, 0.12);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
}

/* Counter Cards */
.counter-box {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  text-align: center;
  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.counter-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 4px;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.3);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(229, 169, 60, 0.4);
  border: 3px solid #ffffff;
}

.service-card-body {
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  font-weight: 700;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--accent-hover);
  gap: 10px;
}

/* ==========================================================================
   Room & Package Grid with WhatsApp Booking
   ========================================================================== */
.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.package-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.08);
}

.package-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 37, 69, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(229, 169, 60, 0.4);
}

.package-price-tag span {
  color: var(--accent-color);
  font-size: 1.05rem;
}

.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.package-meta span i {
  color: var(--secondary-color);
}

.package-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: #475569;
  flex-grow: 1;
}

.package-highlights li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-highlights li i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* ==========================================================================
   Why Choose Us Section with Rich Scenic Background
   ========================================================================== */
.why-us-section {
  background: linear-gradient(135deg, rgba(6, 23, 43, 0.94) 0%, rgba(11, 37, 69, 0.92) 100%), url('../img/hero-tajmahal.jpg') center/cover no-repeat fixed;
  color: #ffffff;
  position: relative;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(229, 169, 60, 0.35);
}

.why-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-desc {
  color: #e2e8f0;
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   Destinations Covered
   ========================================================================== */
.destination-pill-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.destination-pill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.dest-state-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dest-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.dest-badge:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.custom-accordion .accordion-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-color);
  background: #ffffff;
  padding: 18px 24px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background: #f8fafc;
  box-shadow: none;
}

.custom-accordion .accordion-body {
  padding: 20px 24px;
  color: #475569;
  font-size: 0.95rem;
  background: #ffffff;
}

/* ==========================================================================
   Contact & Google Map Section
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-title {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
}

/* ==========================================================================
   Footer & Bottom Bar
   ========================================================================== */
.footer-main {
  background: #06172b;
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 3px solid var(--accent-color);
}

.footer-brand img {
  height: 78px;
  width: auto;
  max-height: 85px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

.footer-contact-list li i {
  color: var(--accent-color);
  margin-top: 4px;
}

/* Bottom Bar - Clean with no trailing line */
.bottom-bar {
  background: #030c17;
  padding: 16px 0;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.bottom-bar a {
  color: #94a3b8;
  text-decoration: none;
}

.bottom-bar a:hover {
  color: var(--accent-color);
}

.powered-by-link {
  color: #38bdf8 !important;
  font-weight: 600;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.powered-by-link:hover {
  color: var(--accent-color) !important;
}

/* ==========================================================================
   Floating Action Buttons: Call (LEFT) & WhatsApp (RIGHT) & Back to Top
   ========================================================================== */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 1040;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-call-btn:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
  color: #ffffff !important;
}

.floating-whatsapp-btn {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp-ajay {
  bottom: 24px;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-anthony {
  bottom: 90px;
  animation: pulse-whatsapp 2s infinite 1s;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  color: #ffffff !important;
}

/* Floating WhatsApp Name Tag */
.floating-wa-tag {
  position: absolute;
  right: 64px;
  background: rgba(11, 37, 69, 0.92);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-whatsapp-btn:hover .floating-wa-tag {
  background: #128c7e;
  transform: translateX(-4px);
}

/* Back to Top Arrow */
.back-to-top-btn {
  position: fixed;
  bottom: 156px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1039;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--accent-color);
  color: #ffffff !important;
  transform: translateY(-3px);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1039;
  padding: 8px 10px;
  border-top: 1px solid #e2e8f0;
}

.mobile-sticky-bar .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 8px 6px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 991px) {
  .navbar-brand img {
    height: 54px;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 62px; /* Prevent fixed bottom bar from covering content */
  }
  .mobile-sticky-bar {
    display: flex;
    gap: 10px;
  }
  /* Hide circular floating action buttons on mobile since sticky bottom bar handles direct Call & WhatsApp */
  .floating-call-btn,
  .floating-whatsapp-btn {
    display: none !important;
  }
  .back-to-top-btn {
    bottom: 72px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 0.95rem !important;
    z-index: 1030 !important;
  }
  .hero-slider .carousel-item {
    min-height: 480px;
    max-height: none;
  }
  .hero-content {
    padding: 50px 12px 40px;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .fast-inquiry-section {
    margin-top: -20px;
  }
  .fast-inquiry-card {
    padding: 20px 16px;
  }
  .section-padding {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .about-img-wrap img {
    height: 300px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
