/* ============================================
   RAHUL TRAVELS - Custom Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --primary: #8B1A3A;
  --primary-dark: #6a1229;
  --primary-light: #b52250;
  --accent: #C9A84C;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --gray: #6c757d;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(139, 26, 58, 0.12);
  --shadow-hover: 0 8px 30px rgba(139, 26, 58, 0.22);
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ============================================
   Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

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

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

section {
  padding: 80px 0;
}

/* ============================================
   Section Titles
   ============================================ */
.section-badge {
  display: inline-block;
  background: rgba(139, 26, 58, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 14px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--gray);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto 50px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.divider span {
  width: 40px;
  height: 2px;
  background: var(--primary);
  display: block;
}

.divider i {
  color: var(--primary);
  font-size: 14px;
}

/* ============================================
   Top Bar
   ============================================ */
#topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  padding: 8px 0;
  width: 100%;
  overflow: hidden;
}

#topbar a {
  color: rgba(255, 255, 255, 0.9);
}

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

#topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 11px;
  transition: var(--transition);
}

#topbar .topbar-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   Header / Navbar
   ============================================ */
#mainHeader {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.navbar-brand img {
  height: 52px;
  width: auto;
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 42px;
  }
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
}

.navbar-brand .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px !important;
  position: relative;
  letter-spacing: 0.3px;
}

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

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

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

.btn-call {
  background: var(--primary);
  color: white !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.btn-call::after {
  display: none !important;
}

.btn-call:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139, 26, 58, 0.3);
  color: white !important;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 4px 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='%238B1A3A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Carousel
   ============================================ */
#heroCarousel {
  position: relative;
}

.hero-slide {
  height: 88vh;
  min-height: 500px;
  max-height: 750px;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.658) 0%, rgba(0, 0, 0, 0.603) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 750px;
  animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(14px, 2.2vw, 17px);
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 58, 0.4);
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(139, 26, 58, 0.7);
  margin: 0 15px;
  opacity: 1;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   About Section
   ============================================ */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about-img-badge .years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-img-badge .label {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14.5px;
}

.about-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-primary-red {
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-red:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   Services Section
   ============================================ */
#services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 26, 58, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139, 26, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.service-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 13.5px;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   Counter Section
   ============================================ */
#counter {
  background: var(--primary);
  color: white;
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.counter-icon i {
  font-size: 22px;
  color: var(--accent);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: auto;
}

/* ============================================
   Why Choose Us
   ============================================ */
#whychoose {
  background: var(--white);
}

.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.why-feature:hover {
  box-shadow: var(--shadow);
  border-color: rgba(139, 26, 58, 0.2);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139, 26, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature-icon i {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--primary);
}

.why-feature:hover .why-feature-icon i {
  color: white;
}

.why-feature h6 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.why-feature p {
  font-size: 13.5px;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   Gallery Section
   ============================================ */
#gallery {
  background: var(--light-gray);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 26, 58, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 28px;
  color: white;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ============================================
   Contact Section
   ============================================ */
#contact {
  background: var(--white);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(139, 26, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 18px;
  color: var(--primary);
}

.contact-info-item h6 {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14.5px;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  color: var(--dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 58, 0.1);
  outline: none;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 6px;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

/* ============================================
   Footer
   ============================================ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

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

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

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

.footer-links li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links li a i {
  color: var(--primary);
  font-size: 10px;
}

.footer-links li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================
   Floating Buttons
   ============================================ */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.float-btn.whatsapp {
  background: #25d366;
  color: white;
  font-size: 22px;
}

.float-btn.phone {
  background: var(--primary);
  color: white;
  font-size: 18px;
}

.float-tooltip {
  position: absolute;
  left: 58px;
  background: var(--dark);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--dark);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Back to top */
#backToTop {
  position: fixed;
  right: 18px;
  bottom: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(139, 26, 58, 0.4);
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  cursor: pointer;
  transition: var(--transition);
}

#backToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

#backToTop.show {
  display: flex;
}

/* ============================================
   Animations
   ============================================ */

/* KEY FIX: All sections clip overflow to prevent side gaps from translateX animations */
section,
#footer,
#topbar,
#mainHeader {
  overflow-x: hidden;
}

.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile fix: use fade-up instead of translateX to avoid side gap */
.fade-left {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* On mobile, convert left/right fades to simple fade-up to eliminate side overflow */
@media (max-width: 767.98px) {
  .fade-left,
  .fade-right {
    transform: translateY(20px);
  }

  .fade-left.visible,
  .fade-right.visible {
    transform: translateY(0);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border-top: 1px solid var(--border);
    padding: 10px 0;
    margin-top: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-call {
    display: inline-block;
    margin: 8px 14px;
    text-align: center;
  }

  .about-img-badge {
    right: 0;
    bottom: -15px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important;
	}
  .hero-slide {
    height: 75vh;
  }

  .about-img-main {
    height: 280px;
    margin-bottom: 30px;
  }

  .about-img-badge {
    bottom: 10px;
    right: 10px;
  }

  .why-img {
    height: 280px;
    margin-bottom: 30px;
  }

  /* Topbar mobile - show only phone and social, compact */
  #topbar .d-flex {
    flex-direction: row;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap;
    gap: 8px;
  }

  #topbar .d-flex > div:first-child {
    flex-direction: row;
    align-items: flex-start !important;
    gap: 2px !important;
	
  }

  #topbar .d-flex > div:first-child a {
    font-size: 11px;
  }

  section {
    padding: 50px 0;
  }

  .counter-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-btn-group .btn-outline-custom {
    display: none;
  }
}

