/* Enhanced Design with Animations - Deekshitha Gents Hostel & PG */

:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #fee2e2;
  --dark: #1f2937;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--dark);
  padding: 12px 0;
  font-size: 14px;
}

.top-contacts a,
.top-social a {
  color: var(--white);
  text-decoration: none;
  margin-right: 25px;
  transition: 0.3s;
}

.top-contacts a:hover,
.top-social a:hover {
  color: var(--primary);
}

/* Navigation */
.navbar {
  background: var(--white) !important;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 0;
}

.brand-subtitle {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  margin: 0;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  padding: 10px 20px !important;
  transition: 0.3s;
}

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

/* Mobile Navbar Fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px !important;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-item:last-child .nav-link,
  .navbar-nav .nav-item:last-child .btn {
    border-bottom: none;
  }

  .navbar-nav .btn-primary {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Hero Section */
.hero-section .carousel-item {
  height: 700px;
  position: relative;
}

.hero-section .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-section .carousel-item img {
  position: relative;
  z-index: 0;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-image-placeholder {
  height: 700px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.carousel-image-placeholder p {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.5;
  margin: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.carousel-image-placeholder small {
  font-size: 14px;
  opacity: 0.8;
  display: block;
  margin-top: 5px;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  z-index: 10;
}

.carousel-caption h1,
.carousel-caption .lead,
.carousel-caption .hero-badge,
.carousel-caption .hero-buttons {
  text-align: center;
  position: relative;
  z-index: 11;
  text-shadow:
    2px 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
  text-shadow: none;
}

@keyframes badgeFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow:
    3px 3px 15px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(0, 0, 0, 0.8);
}

.carousel-caption .lead {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow:
    2px 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.carousel-caption .lead {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* .hero-title,
.hero-subtitle {
   Animation removed - text appears immediately 
} */

.hero-buttons {
  /* Animation removed - buttons appear immediately */
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* First button - View Rooms */
.hero-buttons .btn-light {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  text-shadow: none;
  transition: all 0.3s;
}

.hero-buttons .btn-light:hover {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Second button - Contact Us */
.hero-buttons .btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  text-shadow: none;
  transition: all 0.3s;
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick Features */
.quick-features {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.feature-box {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated red bar that slides up on hover */
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Background gradient effect on hover */
.feature-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05),
    rgba(220, 38, 38, 0.1)
  );
  transition: top 0.4s ease;
  z-index: -1;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover::after {
  top: 0;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

/* Icon wrapper with circular background */
.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconPulse 3s ease-in-out infinite;
}

/* Pulsing ring animation */
.feature-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: rotate(360deg) scale(1.1);
}

.feature-box:hover .feature-icon-wrapper::before {
  opacity: 1;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  animation: ringPulse 1s ease-out infinite;
}

.feature-box i {
  font-size: 40px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover i {
  color: var(--white);
  transform: scale(1.1);
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  transition: all 0.3s ease;
  position: relative;
}

.feature-box:hover h4 {
  color: var(--primary);
  transform: translateY(-2px);
}

.feature-box p {
  color: var(--gray);
  margin: 0;
  transition: all 0.3s ease;
}

.feature-box:hover p {
  color: var(--dark);
}

/* Icon pulse animation */
@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
}

/* Ring pulse on hover */
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Section Headers */
.section-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.title-line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION - ENHANCED ANIMATIONS
   ============================================ */

.about-section {
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.about-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

/* Image Frame with Animated Border */
.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    var(--primary),
    transparent,
    var(--primary)
  );
  border-radius: 20px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-frame:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.about-image-frame:hover .about-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Floating Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  z-index: 5;
  animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  opacity: 0.3;
  animation: pulseBadge 2s ease-in-out infinite;
}

.badge-content h3 {
  font-size: 42px;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.badge-content p {
  font-size: 12px;
  margin: 5px 0 0;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

/* Floating Info Card */
.floating-info-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: floatCard 3.5s ease-in-out infinite;
}

.floating-info-card i {
  font-size: 30px;
  color: var(--primary);
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-info-card h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.floating-info-card p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Decorative Shapes */
.shape-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  top: -10px;
  right: 50px;
  opacity: 0.15;
  animation: rotateShape 10s linear infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  border: 4px dashed var(--primary);
  bottom: 50px;
  right: -20px;
  opacity: 0.2;
  animation: rotateShape 15s linear infinite reverse;
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Highlight Text */
.highlight-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(220, 38, 38, 0.2);
  z-index: -1;
  border-radius: 4px;
}

/* Feature Items with Animation */
.about-features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  background: linear-gradient(to right, var(--white), rgba(220, 38, 38, 0.05));
}

.feature-icon-circle {
  width: 35px;
  height: 35px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-item:hover .feature-icon-circle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.feature-item span {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: var(--primary);
  font-weight: 600;
}

/* Stats Counter Animation */
.stats-inline {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05),
    rgba(220, 38, 38, 0.02)
  );
  border-radius: 15px;
  border-left: 4px solid var(--primary);
}

.stat-item-inline {
  text-align: center;
  flex: 1;
  transition: transform 0.3s ease;
}

.stat-item-inline:hover {
  transform: translateY(-5px);
}

.stat-item-inline h3 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
}

.counter-number {
  color: var(--primary);
}

.counter-plus {
  color: var(--primary);
  font-size: 36px;
  margin-left: 2px;
}

.stat-item-inline p {
  color: var(--gray);
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .experience-badge {
    bottom: 20px;
    left: 0;
    padding: 20px 25px;
  }

  .badge-content h3 {
    font-size: 32px;
  }

  .floating-info-card {
    right: 0;
    top: 20px;
    padding: 12px 15px;
  }

  .floating-info-card i {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .shape-2 {
    width: 80px;
    height: 80px;
  }

  .stats-inline {
    gap: 15px;
  }

  .stat-item-inline h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .floating-info-card {
    display: none;
  }

  .experience-badge {
    padding: 15px 20px;
  }

  .badge-content h3 {
    font-size: 28px;
  }
}

/* ============================================
   ROOMS SECTION - ENHANCED ANIMATIONS
   ============================================ */

.rooms-section {
  position: relative;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.rooms-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rooms-bg-decoration::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.rooms-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.rooms-section .container {
  position: relative;
  z-index: 1;
}

/* Room Cards */
.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

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

.room-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}

.room-card.featured {
  border: 3px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.room-card.featured::before {
  transform: scaleX(1);
}

.room-card.featured:hover {
  transform: translateY(-20px);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--dark);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
  transform: rotate(0deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-badge i {
  margin-right: 5px;
  color: #b91c1c;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Room Image Wrapper */
.room-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image {
  transform: scale(1.15);
}

/* Image Overlay */
.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(220, 38, 38, 0.25)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--white);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.quick-view-btn i {
  margin-right: 8px;
}

.room-card:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Sharing Icons (Person Indicators) */
.sharing-icons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 50px;
  display: flex;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
  backdrop-filter: blur(10px);
}

.sharing-icons i {
  color: var(--primary);
  font-size: 12px;
}

/* Room Badge */
.room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Room Content */
.room-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.room-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.room-card:hover .room-content h3::after {
  width: 60px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.price-item {
  padding: 15px 12px;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--primary-light), #fff);
}

.price-item.ac-price {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.price-item.ac-price::before {
  content: "❄";
  position: absolute;
  top: 5px;
  right: 8px;
  color: var(--primary);
  font-size: 14px;
  opacity: 0.5;
}

.price-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.price-period {
  font-size: 11px;
  color: var(--gray);
  display: block;
  margin-top: 3px;
}

/* Room Features */
.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
}

.room-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.room-features li:last-child {
  border-bottom: none;
}

.room-features li:hover {
  padding-left: 5px;
  color: var(--primary);
}

.room-features i {
  color: var(--white);
  background: var(--primary);
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Book Button */
.book-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transition: left 0.4s ease;
}

.book-btn:hover::before {
  left: 0;
}

.book-btn span,
.book-btn i {
  position: relative;
  z-index: 2;
}

.book-btn i {
  transition: transform 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.book-btn:hover i {
  transform: translateX(5px);
}

/* Info Cards (Bottom) */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.info-card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 18px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.info-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.info-card-item i {
  font-size: 24px;
  color: var(--primary);
  background: var(--primary-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-item h5 {
  margin: 0;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}

.info-card-item p {
  margin: 0;
  font-size: 13px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 991px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
  }

  .info-card-item {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 575px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* ============================================
   FACILITIES SECTION - ENHANCED
   ============================================ */

.facilities-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

.facilities-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.facilities-bg-decoration::before {
  content: "";
  position: absolute;
  top: 100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 8s ease-in-out infinite;
}

.facilities-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite reverse;
}

@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.facilities-section .container {
  position: relative;
  z-index: 1;
}

/* Facility Cards */
.facility-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Animated background gradient */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Top corner decoration */
.facility-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
}

.facility-card:hover::before {
  transform: scaleY(1);
}

.facility-card:hover::after {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(3);
}

.facility-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
  border-color: var(--primary);
}

/* Number badge in corner */
.facility-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.facility-card:hover .facility-number {
  color: rgba(255, 255, 255, 0.15);
  transform: scale(1.2);
}

/* Icon container */
.facility-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* Pulsing ring around icon */
.facility-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  animation: rotateRing 8s linear infinite;
}

.facility-card:hover .facility-icon {
  background: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.facility-card:hover .facility-icon::before {
  opacity: 1;
  border-color: var(--white);
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.facility-card i {
  font-size: 36px;
  color: var(--primary);
  transition: all 0.5s ease;
}

.facility-card:hover i {
  color: var(--primary);
  transform: scale(1.1);
}

/* Title */
.facility-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover h4 {
  color: var(--white);
  transform: translateY(-2px);
}

/* Description */
.facility-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Arrow icon */
.facility-arrow {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover .facility-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--white);
  color: var(--primary);
}

.facility-card:hover .facility-arrow i {
  color: var(--primary);
  animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 575px) {
  .facility-card {
    padding: 25px 20px;
  }

  .facility-icon {
    width: 70px;
    height: 70px;
  }

  .facility-card i {
    font-size: 30px;
  }

  .facility-number {
    font-size: 50px;
  }
}

/* ============================================
   TESTIMONIALS SECTION - ENHANCED
   ============================================ */

.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #ffffff 100%);
  overflow: hidden;
  padding: 80px 0 !important;
}

.testimonials-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.testimonials-bg-decoration::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 5%;
  font-size: 300px;
  color: rgba(220, 38, 38, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.testimonials-bg-decoration::after {
  content: '"';
  position: absolute;
  bottom: 50px;
  right: 5%;
  font-size: 300px;
  color: rgba(220, 38, 38, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
  transform: rotate(180deg);
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

/* Testimonial Carousel */
.testimonial-carousel {
  padding: 50px 60px 30px;
  margin-bottom: 50px;
}

.testimonial-carousel .carousel-inner {
  overflow: visible;
  padding-top: 30px;
}

.testimonial-carousel .carousel-item {
  overflow: visible;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  padding: 60px 45px 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  margin-top: 30px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.1);
}

/* Big Quote Icon */
.quote-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  animation: floatIcon 3s ease-in-out infinite;
}

.quote-icon i {
  color: var(--white);
  font-size: 24px;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.stars i {
  animation: starPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.stars i:nth-child(1) {
  animation-delay: 0s;
}
.stars i:nth-child(2) {
  animation-delay: 0.1s;
}
.stars i:nth-child(3) {
  animation-delay: 0.2s;
}
.stars i:nth-child(4) {
  animation-delay: 0.3s;
}
.stars i:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Testimonial Text */
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 35px;
  line-height: 1.8;
  position: relative;
  font-weight: 400;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
  border: 3px solid var(--white);
  outline: 2px solid var(--primary);
}

.testimonial-card:hover .author-avatar {
  transform: rotate(360deg) scale(1.1);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 3px;
  font-size: 18px;
}

.author-info p {
  color: var(--primary);
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom Carousel Controls */
.testimonial-carousel .custom-control {
  width: 55px;
  height: 55px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
}

.testimonial-carousel .custom-control i {
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-carousel .custom-control:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.testimonial-carousel .custom-control:hover i {
  color: var(--white);
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

/* Hide default carousel control icons */
.testimonial-carousel .custom-control .carousel-control-prev-icon,
.testimonial-carousel .custom-control .carousel-control-next-icon {
  display: none;
}

/* Custom Indicators */
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.carousel-indicators-custom button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.carousel-indicators-custom button.active {
  background: var(--primary);
  width: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Stats Row */
.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-box {
  background: var(--white);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: left 0.4s ease;
  z-index: 0;
}

.stat-box:hover::before {
  left: 0;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.stat-box > * {
  position: relative;
  z-index: 1;
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1;
  transition: color 0.4s ease;
}

.stat-box h3 span {
  font-size: 24px;
  color: var(--gray);
}

.stat-stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.stat-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.stat-box p {
  color: var(--gray);
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.stat-box:hover h3,
.stat-box:hover .stat-icon {
  color: var(--white);
}

.stat-box:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.stat-box:hover h3 span {
  color: rgba(255, 255, 255, 0.7);
}

.stat-box:hover .stat-stars {
  color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-carousel {
    padding: 30px 30px;
  }

  .testimonial-card {
    padding: 40px 25px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonial-carousel {
    padding: 30px 0;
  }

  .testimonial-carousel .custom-control {
    width: 40px;
    height: 40px;
  }

  .testimonial-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 300px;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 10px;
  }

  .author-info {
    text-align: center;
  }
}

/* ============================================
   FAQ SECTION - ENHANCED
   ============================================ */

.faq-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.faq-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.faq-bg-decoration::before {
  content: "?";
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 250px;
  color: rgba(220, 38, 38, 0.04);
  font-weight: 900;
  line-height: 1;
}

.faq-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

/* FAQ Header */
.faq-header {
  margin-bottom: 30px;
}

.faq-desc {
  color: var(--gray);
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.7;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
  border: 2px solid transparent;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.custom-accordion .accordion-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.1);
}

.custom-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
  font-size: 15px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
}

.custom-accordion .accordion-button::after {
  display: none;
}

/* FAQ Number */
.faq-number {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.faq-question {
  flex: 1;
  text-align: left;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
  font-size: 12px;
  transition: transform 0.4s ease;
}

/* Active Accordion State */
.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.custom-accordion .accordion-button:not(.collapsed) .faq-number {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.custom-accordion .accordion-button:not(.collapsed) .faq-icon {
  background: var(--white);
  color: var(--primary);
  transform: rotate(135deg);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* Accordion Body */
.custom-accordion .accordion-body {
  padding: 20px 22px 22px;
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.8;
  border-top: 2px solid rgba(220, 38, 38, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FAQ IMAGE SIDE
   ============================================ */

.faq-image-wrapper {
  position: relative;
  padding: 20px;
}

.faq-image-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.faq-image-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    var(--primary),
    transparent,
    var(--primary)
  );
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  animation: borderRotate 4s linear infinite;
  transition: opacity 0.4s ease;
}

.faq-image-frame:hover::before {
  opacity: 1;
}

.faq-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.6s ease;
}

.faq-image-frame:hover .faq-image {
  transform: scale(1.05);
}

/* Floating Help Card */
.floating-help-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: floatCard 3.5s ease-in-out infinite;
  max-width: 280px;
}

.help-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  animation: pulseHelp 2s ease-in-out infinite;
}

@keyframes pulseHelp {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(220, 38, 38, 0.7);
  }
}

.help-content h5 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.help-content p {
  margin: 0 0 5px;
  font-size: 12px;
  color: var(--gray);
}

.help-phone {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.help-phone:hover {
  color: var(--primary-dark);
}

/* Floating Question Icon */
.floating-question {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  animation: floatQuestion 3s ease-in-out infinite;
  z-index: 5;
}

.floating-question::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px dashed var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: rotateRing 8s linear infinite;
}

@keyframes floatQuestion {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* Decorative Shapes */
.faq-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.faq-shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  top: -20px;
  left: -20px;
  opacity: 0.1;
  animation: rotateShape 10s linear infinite;
}

.faq-shape-2 {
  width: 150px;
  height: 150px;
  border: 4px dashed var(--primary);
  bottom: -30px;
  right: -30px;
  opacity: 0.2;
  animation: rotateShape 15s linear infinite reverse;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-image {
    height: 400px;
  }

  .floating-help-card {
    left: 0;
    bottom: 0;
    max-width: 250px;
  }

  .floating-question {
    right: 0;
    top: 0;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .floating-help-card {
    position: relative;
    margin-top: 20px;
    animation: none;
    max-width: 100%;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ============================================
   CONTACT SECTION - ENHANCED
   ============================================ */

.contact-section {
  position: relative;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  overflow: hidden;
}

.contact-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-bg-decoration::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 8s ease-in-out infinite;
}

.contact-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite reverse;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: var(--primary);
}

.contact-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-info-card:hover .contact-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.contact-info-card h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-info-card p {
  margin-bottom: 5px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* WhatsApp Special Card */
.whatsapp-card {
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border: 2px solid #25d366;
}

.whatsapp-card:hover {
  border-color: #128c7e;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: var(--white) !important;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-card:hover .whatsapp-icon {
  background: linear-gradient(135deg, #128c7e, #075e54) !important;
}

.whatsapp-card a {
  color: #25d366 !important;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* Contact Form Box */
.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #25d366);
}

/* Form Header */
.form-header {
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(220, 38, 38, 0.1);
}

.form-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.form-header p {
  color: var(--gray);
  margin: 0;
  font-size: 14px;
}

/* Form Labels */
.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.required {
  color: var(--primary);
  font-weight: 800;
}

/* Input Wrapper with Icons */
.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.textarea-icon {
  top: 18px;
  transform: none;
}

.input-wrapper .form-control,
.input-wrapper .form-select {
  padding: 12px 12px 12px 42px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  background-color: #f9fafb;
}

.input-wrapper .form-control:focus,
.input-wrapper .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
  background-color: var(--white);
  outline: none;
}

.input-wrapper .form-control:focus ~ .input-icon,
.input-wrapper .form-select:focus ~ .input-icon {
  color: var(--primary-dark);
}

/* Invalid Field */
.input-wrapper .form-control.is-invalid,
.input-wrapper .form-select.is-invalid {
  border-color: var(--primary);
  background-color: #fef2f2;
  background-image: none;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Error Message */
.error-message {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.error-message.show {
  height: auto;
  opacity: 1;
  margin-top: 6px;
}

.error-message::before {
  content: "⚠ ";
  margin-right: 3px;
}

/* WhatsApp Submit Button */
.whatsapp-submit-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #128c7e, #075e54);
  transition: left 0.4s ease;
  z-index: 0;
}

.whatsapp-submit-btn:hover::before {
  left: 0;
}

.whatsapp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.whatsapp-submit-btn i,
.whatsapp-submit-btn span {
  position: relative;
  z-index: 1;
}

.whatsapp-submit-btn i {
  font-size: 22px;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 50px;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.form-success h3 {
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray);
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .form-header h3 {
    font-size: 20px;
  }

  .whatsapp-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ============================================
   MAP SECTION - ENHANCED
   ============================================ */

.map-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.map-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: visible;
}

.map-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--white);
  transition: all 0.4s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(220, 38, 38, 0.2);
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* Floating Address Card on Map */
.map-info-card {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
  border-top: 5px solid var(--primary);
  animation: floatCard 3.5s ease-in-out infinite;
}

.map-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}

.map-info-content h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 17px;
}

.map-info-content p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
  color: var(--white);
}

.directions-btn i {
  font-size: 14px;
}

/* ============================================
   FOOTER - ENHANCED
   ============================================ */

.footer {
  background: linear-gradient(135deg, #1a1d24 0%, #1f2937 50%, #1a1d24 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Top gradient bar */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #25d366, var(--primary));
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Background Decoration */
.footer-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

.footer-bg-decoration::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
}

/* Footer Brand Section */
.footer-brand .brand-title {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.footer-brand .brand-title span {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: left 0.4s ease;
}

.social-links a:hover::before {
  left: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.social-links a:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.social-links a:hover i {
  transform: scale(1.2);
}

/* Footer Titles */
.footer-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-title:hover::after {
  width: 60px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact li:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact li i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 14px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-contact li small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Footer Address */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.address-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  animation: pulseBadge 2s ease-in-out infinite;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Footer Hours */
.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 10px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.footer-hours i {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom strong {
  color: var(--white);
  font-weight: 600;
}

.footer-copyright {
  line-height: 1.8;
}

/* Developer Credit */
.developer-credit {
  display: inline-block;
  margin-left: 5px;
}

.lyzoo-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 5px;
}

.lyzoo-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.lyzoo-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lyzoo-link:hover i {
  transform: translate(2px, -2px);
}

.footer-bottom .fa-heart {
  color: var(--primary);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
    animation: none;
    max-width: 100%;
  }

  .map-section iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 0;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-address,
  .footer-contact li {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-hours {
    margin: 0;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .row > div {
    text-align: center !important;
  }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section .carousel-item,
  .carousel-image-placeholder {
    height: 500px;
  }

  .section-title {
    font-size: 32px;
  }

  .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-caption .lead {
    font-size: 16px;
  }

  .feature-box {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 767px) {
  .hero-section .carousel-item,
  .carousel-image-placeholder {
    height: 450px;
  }

  .carousel-caption h1 {
    font-size: 28px;
  }

  .carousel-caption .lead {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .hero-buttons .btn {
    padding: 12px 25px !important;
    font-size: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    display: none;
  }

  .stats-inline {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
}

/* Enhanced Design with Animations - Deekshitha Gents Hostel & PG */

:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #fee2e2;
  --dark: #1f2937;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--dark);
  padding: 12px 0;
  font-size: 14px;
}

.top-contacts a,
.top-social a {
  color: var(--white);
  text-decoration: none;
  margin-right: 25px;
  transition: 0.3s;
}

.top-contacts a:hover,
.top-social a:hover {
  color: var(--primary);
}

/* Navigation */
.navbar {
  background: var(--white) !important;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 0;
}

.brand-subtitle {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  margin: 0;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  padding: 10px 20px !important;
  transition: 0.3s;
}

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

/* Mobile Navbar Fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px !important;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-item:last-child .nav-link,
  .navbar-nav .nav-item:last-child .btn {
    border-bottom: none;
  }

  .navbar-nav .btn-primary {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Hero Section */
.hero-section .carousel-item {
  height: 700px;
  position: relative;
}

.hero-section .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-section .carousel-item img {
  position: relative;
  z-index: 0;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-image-placeholder {
  height: 700px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.carousel-image-placeholder p {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.5;
  margin: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.carousel-image-placeholder small {
  font-size: 14px;
  opacity: 0.8;
  display: block;
  margin-top: 5px;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  z-index: 10;
}

.carousel-caption h1,
.carousel-caption .lead,
.carousel-caption .hero-badge,
.carousel-caption .hero-buttons {
  text-align: center;
  position: relative;
  z-index: 11;
  text-shadow:
    2px 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
  text-shadow: none;
}

@keyframes badgeFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow:
    3px 3px 15px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(0, 0, 0, 0.8);
}

.carousel-caption .lead {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow:
    2px 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.carousel-caption .lead {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* .hero-title,
.hero-subtitle {
   Animation removed - text appears immediately 
} */

.hero-buttons {
  /* Animation removed - buttons appear immediately */
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* First button - View Rooms */
.hero-buttons .btn-light {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  text-shadow: none;
  transition: all 0.3s;
}

.hero-buttons .btn-light:hover {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Second button - Contact Us */
.hero-buttons .btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  text-shadow: none;
  transition: all 0.3s;
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick Features */
.quick-features {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.feature-box {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated red bar that slides up on hover */
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Background gradient effect on hover */
.feature-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05),
    rgba(220, 38, 38, 0.1)
  );
  transition: top 0.4s ease;
  z-index: -1;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover::after {
  top: 0;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

/* Icon wrapper with circular background */
.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconPulse 3s ease-in-out infinite;
}

/* Pulsing ring animation */
.feature-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: rotate(360deg) scale(1.1);
}

.feature-box:hover .feature-icon-wrapper::before {
  opacity: 1;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  animation: ringPulse 1s ease-out infinite;
}

.feature-box i {
  font-size: 40px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover i {
  color: var(--white);
  transform: scale(1.1);
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  transition: all 0.3s ease;
  position: relative;
}

.feature-box:hover h4 {
  color: var(--primary);
  transform: translateY(-2px);
}

.feature-box p {
  color: var(--gray);
  margin: 0;
  transition: all 0.3s ease;
}

.feature-box:hover p {
  color: var(--dark);
}

/* Icon pulse animation */
@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
}

/* Ring pulse on hover */
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Section Headers */
.section-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.title-line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION - ENHANCED ANIMATIONS
   ============================================ */

.about-section {
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.about-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

/* Image Frame with Animated Border */
.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    var(--primary),
    transparent,
    var(--primary)
  );
  border-radius: 20px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-frame:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.about-image-frame:hover .about-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Floating Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  z-index: 5;
  animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  opacity: 0.3;
  animation: pulseBadge 2s ease-in-out infinite;
}

.badge-content h3 {
  font-size: 42px;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.badge-content p {
  font-size: 12px;
  margin: 5px 0 0;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

/* Floating Info Card */
.floating-info-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: floatCard 3.5s ease-in-out infinite;
}

.floating-info-card i {
  font-size: 30px;
  color: var(--primary);
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-info-card h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.floating-info-card p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Decorative Shapes */
.shape-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  top: -10px;
  right: 50px;
  opacity: 0.15;
  animation: rotateShape 10s linear infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  border: 4px dashed var(--primary);
  bottom: 50px;
  right: -20px;
  opacity: 0.2;
  animation: rotateShape 15s linear infinite reverse;
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Highlight Text */
.highlight-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(220, 38, 38, 0.2);
  z-index: -1;
  border-radius: 4px;
}

/* Feature Items with Animation */
.about-features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  background: linear-gradient(to right, var(--white), rgba(220, 38, 38, 0.05));
}

.feature-icon-circle {
  width: 35px;
  height: 35px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-item:hover .feature-icon-circle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.feature-item span {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: var(--primary);
  font-weight: 600;
}

/* Stats Counter Animation */
.stats-inline {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05),
    rgba(220, 38, 38, 0.02)
  );
  border-radius: 15px;
  border-left: 4px solid var(--primary);
}

.stat-item-inline {
  text-align: center;
  flex: 1;
  transition: transform 0.3s ease;
}

.stat-item-inline:hover {
  transform: translateY(-5px);
}

.stat-item-inline h3 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
}

.counter-number {
  color: var(--primary);
}

.counter-plus {
  color: var(--primary);
  font-size: 36px;
  margin-left: 2px;
}

.stat-item-inline p {
  color: var(--gray);
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .experience-badge {
    bottom: 20px;
    left: 0;
    padding: 20px 25px;
  }

  .badge-content h3 {
    font-size: 32px;
  }

  .floating-info-card {
    right: 0;
    top: 20px;
    padding: 12px 15px;
  }

  .floating-info-card i {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .shape-2 {
    width: 80px;
    height: 80px;
  }

  .stats-inline {
    gap: 15px;
  }

  .stat-item-inline h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .floating-info-card {
    display: none;
  }

  .experience-badge {
    padding: 15px 20px;
  }

  .badge-content h3 {
    font-size: 28px;
  }
}

/* ============================================
   ROOMS SECTION - ENHANCED ANIMATIONS
   ============================================ */

.rooms-section {
  position: relative;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.rooms-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rooms-bg-decoration::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.rooms-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.rooms-section .container {
  position: relative;
  z-index: 1;
}

/* Room Cards */
.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

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

.room-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}

.room-card.featured {
  border: 3px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.room-card.featured::before {
  transform: scaleX(1);
}

.room-card.featured:hover {
  transform: translateY(-20px);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--dark);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
  transform: rotate(0deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-badge i {
  margin-right: 5px;
  color: #b91c1c;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Room Image Wrapper */
.room-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image {
  transform: scale(1.15);
}

/* Image Overlay */
.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(220, 38, 38, 0.25)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--white);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.quick-view-btn i {
  margin-right: 8px;
}

.room-card:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Sharing Icons (Person Indicators) */
.sharing-icons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 50px;
  display: flex;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
  backdrop-filter: blur(10px);
}

.sharing-icons i {
  color: var(--primary);
  font-size: 12px;
}

/* Room Badge */
.room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Room Content */
.room-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.room-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.room-card:hover .room-content h3::after {
  width: 60px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.price-item {
  padding: 15px 12px;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--primary-light), #fff);
}

.price-item.ac-price {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.price-item.ac-price::before {
  content: "❄";
  position: absolute;
  top: 5px;
  right: 8px;
  color: var(--primary);
  font-size: 14px;
  opacity: 0.5;
}

.price-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.price-period {
  font-size: 11px;
  color: var(--gray);
  display: block;
  margin-top: 3px;
}

/* Room Features */
.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
}

.room-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.room-features li:last-child {
  border-bottom: none;
}

.room-features li:hover {
  padding-left: 5px;
  color: var(--primary);
}

.room-features i {
  color: var(--white);
  background: var(--primary);
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Book Button */
.book-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transition: left 0.4s ease;
}

.book-btn:hover::before {
  left: 0;
}

.book-btn span,
.book-btn i {
  position: relative;
  z-index: 2;
}

.book-btn i {
  transition: transform 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.book-btn:hover i {
  transform: translateX(5px);
}

/* Info Cards (Bottom) */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.info-card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 18px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.info-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.info-card-item i {
  font-size: 24px;
  color: var(--primary);
  background: var(--primary-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-item h5 {
  margin: 0;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}

.info-card-item p {
  margin: 0;
  font-size: 13px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 991px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
  }

  .info-card-item {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 575px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* ============================================
   FACILITIES SECTION - ENHANCED
   ============================================ */

.facilities-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

.facilities-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.facilities-bg-decoration::before {
  content: "";
  position: absolute;
  top: 100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 8s ease-in-out infinite;
}

.facilities-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite reverse;
}

@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.facilities-section .container {
  position: relative;
  z-index: 1;
}

/* Facility Cards */
.facility-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Animated background gradient */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Top corner decoration */
.facility-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
}

.facility-card:hover::before {
  transform: scaleY(1);
}

.facility-card:hover::after {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(3);
}

.facility-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
  border-color: var(--primary);
}

/* Number badge in corner */
.facility-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.facility-card:hover .facility-number {
  color: rgba(255, 255, 255, 0.15);
  transform: scale(1.2);
}

/* Icon container */
.facility-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* Pulsing ring around icon */
.facility-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  animation: rotateRing 8s linear infinite;
}

.facility-card:hover .facility-icon {
  background: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.facility-card:hover .facility-icon::before {
  opacity: 1;
  border-color: var(--white);
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.facility-card i {
  font-size: 36px;
  color: var(--primary);
  transition: all 0.5s ease;
}

.facility-card:hover i {
  color: var(--primary);
  transform: scale(1.1);
}

/* Title */
.facility-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover h4 {
  color: var(--white);
  transform: translateY(-2px);
}

/* Description */
.facility-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Arrow icon */
.facility-arrow {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.facility-card:hover .facility-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--white);
  color: var(--primary);
}

.facility-card:hover .facility-arrow i {
  color: var(--primary);
  animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 575px) {
  .facility-card {
    padding: 25px 20px;
  }

  .facility-icon {
    width: 70px;
    height: 70px;
  }

  .facility-card i {
    font-size: 30px;
  }

  .facility-number {
    font-size: 50px;
  }
}

/* ============================================
   TESTIMONIALS SECTION - ENHANCED
   ============================================ */

.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #ffffff 100%);
  overflow: hidden;
  padding: 80px 0 !important;
}

.testimonials-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.testimonials-bg-decoration::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 5%;
  font-size: 300px;
  color: rgba(220, 38, 38, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.testimonials-bg-decoration::after {
  content: '"';
  position: absolute;
  bottom: 50px;
  right: 5%;
  font-size: 300px;
  color: rgba(220, 38, 38, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
  transform: rotate(180deg);
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

/* Testimonial Carousel */
.testimonial-carousel {
  padding: 50px 60px 30px;
  margin-bottom: 50px;
}

.testimonial-carousel .carousel-inner {
  overflow: visible;
  padding-top: 30px;
}

.testimonial-carousel .carousel-item {
  overflow: visible;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  padding: 60px 45px 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  margin-top: 30px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.1);
}

/* Big Quote Icon */
.quote-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  animation: floatIcon 3s ease-in-out infinite;
}

.quote-icon i {
  color: var(--white);
  font-size: 24px;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.stars i {
  animation: starPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.stars i:nth-child(1) {
  animation-delay: 0s;
}
.stars i:nth-child(2) {
  animation-delay: 0.1s;
}
.stars i:nth-child(3) {
  animation-delay: 0.2s;
}
.stars i:nth-child(4) {
  animation-delay: 0.3s;
}
.stars i:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Testimonial Text */
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 35px;
  line-height: 1.8;
  position: relative;
  font-weight: 400;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
  border: 3px solid var(--white);
  outline: 2px solid var(--primary);
}

.testimonial-card:hover .author-avatar {
  transform: rotate(360deg) scale(1.1);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 3px;
  font-size: 18px;
}

.author-info p {
  color: var(--primary);
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom Carousel Controls */
.testimonial-carousel .custom-control {
  width: 55px;
  height: 55px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
}

.testimonial-carousel .custom-control i {
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-carousel .custom-control:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.testimonial-carousel .custom-control:hover i {
  color: var(--white);
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

/* Hide default carousel control icons */
.testimonial-carousel .custom-control .carousel-control-prev-icon,
.testimonial-carousel .custom-control .carousel-control-next-icon {
  display: none;
}

/* Custom Indicators */
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.carousel-indicators-custom button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.carousel-indicators-custom button.active {
  background: var(--primary);
  width: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Stats Row */
.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-box {
  background: var(--white);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: left 0.4s ease;
  z-index: 0;
}

.stat-box:hover::before {
  left: 0;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.stat-box > * {
  position: relative;
  z-index: 1;
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1;
  transition: color 0.4s ease;
}

.stat-box h3 span {
  font-size: 24px;
  color: var(--gray);
}

.stat-stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.stat-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.stat-box p {
  color: var(--gray);
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.stat-box:hover h3,
.stat-box:hover .stat-icon {
  color: var(--white);
}

.stat-box:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.stat-box:hover h3 span {
  color: rgba(255, 255, 255, 0.7);
}

.stat-box:hover .stat-stars {
  color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-carousel {
    padding: 30px 30px;
  }

  .testimonial-card {
    padding: 40px 25px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonial-carousel {
    padding: 30px 0;
  }

  .testimonial-carousel .custom-control {
    width: 40px;
    height: 40px;
  }

  .testimonial-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 300px;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 10px;
  }

  .author-info {
    text-align: center;
  }
}

/* ============================================
   FAQ SECTION - ENHANCED
   ============================================ */

.faq-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.faq-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.faq-bg-decoration::before {
  content: "?";
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 250px;
  color: rgba(220, 38, 38, 0.04);
  font-weight: 900;
  line-height: 1;
}

.faq-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

/* FAQ Header */
.faq-header {
  margin-bottom: 30px;
}

.faq-desc {
  color: var(--gray);
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.7;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
  border: 2px solid transparent;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.custom-accordion .accordion-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.1);
}

.custom-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
  font-size: 15px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
}

.custom-accordion .accordion-button::after {
  display: none;
}

/* FAQ Number */
.faq-number {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.faq-question {
  flex: 1;
  text-align: left;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
  font-size: 12px;
  transition: transform 0.4s ease;
}

/* Active Accordion State */
.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.custom-accordion .accordion-button:not(.collapsed) .faq-number {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.custom-accordion .accordion-button:not(.collapsed) .faq-icon {
  background: var(--white);
  color: var(--primary);
  transform: rotate(135deg);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* Accordion Body */
.custom-accordion .accordion-body {
  padding: 20px 22px 22px;
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.8;
  border-top: 2px solid rgba(220, 38, 38, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FAQ IMAGE SIDE
   ============================================ */

.faq-image-wrapper {
  position: relative;
  padding: 20px;
}

.faq-image-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.faq-image-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    var(--primary),
    transparent,
    var(--primary)
  );
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  animation: borderRotate 4s linear infinite;
  transition: opacity 0.4s ease;
}

.faq-image-frame:hover::before {
  opacity: 1;
}

.faq-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.6s ease;
}

.faq-image-frame:hover .faq-image {
  transform: scale(1.05);
}

/* Floating Help Card */
.floating-help-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: floatCard 3.5s ease-in-out infinite;
  max-width: 280px;
}

.help-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  animation: pulseHelp 2s ease-in-out infinite;
}

@keyframes pulseHelp {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(220, 38, 38, 0.7);
  }
}

.help-content h5 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.help-content p {
  margin: 0 0 5px;
  font-size: 12px;
  color: var(--gray);
}

.help-phone {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.help-phone:hover {
  color: var(--primary-dark);
}

/* Floating Question Icon */
.floating-question {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  animation: floatQuestion 3s ease-in-out infinite;
  z-index: 5;
}

.floating-question::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px dashed var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: rotateRing 8s linear infinite;
}

@keyframes floatQuestion {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* Decorative Shapes */
.faq-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.faq-shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  top: -20px;
  left: -20px;
  opacity: 0.1;
  animation: rotateShape 10s linear infinite;
}

.faq-shape-2 {
  width: 150px;
  height: 150px;
  border: 4px dashed var(--primary);
  bottom: -30px;
  right: -30px;
  opacity: 0.2;
  animation: rotateShape 15s linear infinite reverse;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-image {
    height: 400px;
  }

  .floating-help-card {
    left: 0;
    bottom: 0;
    max-width: 250px;
  }

  .floating-question {
    right: 0;
    top: 0;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .floating-help-card {
    position: relative;
    margin-top: 20px;
    animation: none;
    max-width: 100%;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ============================================
   CONTACT SECTION - ENHANCED
   ============================================ */

.contact-section {
  position: relative;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  overflow: hidden;
}

.contact-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-bg-decoration::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 8s ease-in-out infinite;
}

.contact-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite reverse;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: var(--primary);
}

.contact-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-info-card:hover .contact-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.contact-info-card h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-info-card p {
  margin-bottom: 5px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* WhatsApp Special Card */
.whatsapp-card {
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border: 2px solid #25d366;
}

.whatsapp-card:hover {
  border-color: #128c7e;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: var(--white) !important;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-card:hover .whatsapp-icon {
  background: linear-gradient(135deg, #128c7e, #075e54) !important;
}

.whatsapp-card a {
  color: #25d366 !important;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* Contact Form Box */
.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #25d366);
}

/* Form Header */
.form-header {
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(220, 38, 38, 0.1);
}

.form-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.form-header p {
  color: var(--gray);
  margin: 0;
  font-size: 14px;
}

/* Form Labels */
.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.required {
  color: var(--primary);
  font-weight: 800;
}

/* Input Wrapper with Icons */
.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.textarea-icon {
  top: 18px;
  transform: none;
}

.input-wrapper .form-control,
.input-wrapper .form-select {
  padding: 12px 12px 12px 42px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  background-color: #f9fafb;
}

.input-wrapper .form-control:focus,
.input-wrapper .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
  background-color: var(--white);
  outline: none;
}

.input-wrapper .form-control:focus ~ .input-icon,
.input-wrapper .form-select:focus ~ .input-icon {
  color: var(--primary-dark);
}

/* Invalid Field */
.input-wrapper .form-control.is-invalid,
.input-wrapper .form-select.is-invalid {
  border-color: var(--primary);
  background-color: #fef2f2;
  background-image: none;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Error Message */
.error-message {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.error-message.show {
  height: auto;
  opacity: 1;
  margin-top: 6px;
}

.error-message::before {
  content: "⚠ ";
  margin-right: 3px;
}

/* WhatsApp Submit Button */
.whatsapp-submit-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #128c7e, #075e54);
  transition: left 0.4s ease;
  z-index: 0;
}

.whatsapp-submit-btn:hover::before {
  left: 0;
}

.whatsapp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.whatsapp-submit-btn i,
.whatsapp-submit-btn span {
  position: relative;
  z-index: 1;
}

.whatsapp-submit-btn i {
  font-size: 22px;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 50px;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.form-success h3 {
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray);
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .form-header h3 {
    font-size: 20px;
  }

  .whatsapp-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ============================================
   MAP SECTION - ENHANCED
   ============================================ */

.map-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.map-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: visible;
}

.map-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--white);
  transition: all 0.4s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(220, 38, 38, 0.2);
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* Floating Address Card on Map */
.map-info-card {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
  border-top: 5px solid var(--primary);
  animation: floatCard 3.5s ease-in-out infinite;
}

.map-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}

.map-info-content h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 17px;
}

.map-info-content p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
  color: var(--white);
}

.directions-btn i {
  font-size: 14px;
}

/* ============================================
   FOOTER - ENHANCED
   ============================================ */

.footer {
  background: linear-gradient(135deg, #1a1d24 0%, #1f2937 50%, #1a1d24 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Top gradient bar */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #25d366, var(--primary));
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Background Decoration */
.footer-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

.footer-bg-decoration::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-bg-decoration::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
}

/* Footer Brand Section */
.footer-brand .brand-title {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.footer-brand .brand-title span {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: left 0.4s ease;
}

.social-links a:hover::before {
  left: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.social-links a:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.social-links a:hover i {
  transform: scale(1.2);
}

/* Footer Titles */
.footer-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-title:hover::after {
  width: 60px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact li:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact li i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 14px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-contact li small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Footer Address */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.address-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  animation: pulseBadge 2s ease-in-out infinite;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Footer Hours */
.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 10px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.footer-hours i {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom strong {
  color: var(--white);
  font-weight: 600;
}

.footer-copyright {
  line-height: 1.8;
}

/* Developer Credit */
.developer-credit {
  display: inline-block;
  margin-left: 5px;
}

.lyzoo-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 5px;
}

.lyzoo-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.lyzoo-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lyzoo-link:hover i {
  transform: translate(2px, -2px);
}

.footer-bottom .fa-heart {
  color: var(--primary);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
    animation: none;
    max-width: 100%;
  }

  .map-section iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 0;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-address,
  .footer-contact li {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-hours {
    margin: 0;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .row > div {
    text-align: center !important;
  }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section .carousel-item,
  .carousel-image-placeholder {
    height: 500px;
  }

  .section-title {
    font-size: 32px;
  }

  .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-caption .lead {
    font-size: 16px;
  }

  .feature-box {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 767px) {
  .hero-section .carousel-item,
  .carousel-image-placeholder {
    height: 450px;
  }

  .carousel-caption h1 {
    font-size: 28px;
  }

  .carousel-caption .lead {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .hero-buttons .btn {
    padding: 12px 25px !important;
    font-size: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    display: none;
  }

  .stats-inline {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
}

/* ============================================
   PAGE BANNER (For inner pages)
   ============================================ */
.page-banner {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 100px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.3) 0%,
    rgba(185, 28, 28, 0.4) 100%
  );
  z-index: 1;
}

.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  z-index: 1;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.banner-content {
  text-align: center;
  color: var(--white);
}

.banner-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.breadcrumb-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-nav .separator {
  font-size: 11px;
  opacity: 0.7;
}

.breadcrumb-nav span {
  color: var(--white);
  font-weight: 600;
  opacity: 0.95;
}

/* ============================================
   MISSION VISION VALUES
   ============================================ */
.mvv-section {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  position: relative;
}

.mvv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.mvv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
  border-color: var(--primary);
}

.mvv-card.mvv-featured {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.mvv-card.mvv-featured::before {
  transform: scaleX(1);
}

.mvv-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.mvv-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.mvv-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.why-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: visible;
}

.why-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.why-image:hover {
  transform: scale(1.02);
}

.why-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: floatBadge 3s ease-in-out infinite;
}

.why-badge i {
  font-size: 32px;
}

.why-badge span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.why-points {
  padding-left: 20px;
}

.why-point {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}

.why-point:hover {
  transform: translateX(10px);
  border-left-color: var(--primary);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.why-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  background: var(--primary-light);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.why-point:hover .why-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotate(360deg);
}

.why-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 50px 40px;
  border-radius: 25px;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-card p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.cta-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   QUICK CONTACT CARDS
   ============================================ */
.quick-contact {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.quick-contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
  border-color: var(--primary);
}

.quick-contact-card.qc-featured {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: #25d366;
}

.quick-contact-card.qc-featured:hover {
  border-color: #128c7e;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
}

.qc-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(220, 38, 38, 0.1)
  );
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.quick-contact-card.qc-featured .qc-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.quick-contact-card:hover .qc-icon {
  transform: rotate(360deg) scale(1.1);
}

.quick-contact-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.quick-contact-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.qc-link {
  display: block;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-size: 16px;
}

.qc-link:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.quick-contact-card.qc-featured .qc-link {
  color: #25d366;
}

.quick-contact-card.qc-featured .qc-link:hover {
  color: #128c7e;
}

/* Responsive */
@media (max-width: 991px) {
  .banner-title {
    font-size: 36px;
  }

  .why-image {
    height: 400px;
  }

  .why-points {
    padding-left: 0;
    margin-top: 30px;
  }

  .why-badge {
    bottom: -20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .page-banner {
    padding: 60px 0 50px;
  }

  .banner-title {
    font-size: 28px;
  }

  .breadcrumb-nav {
    padding: 8px 18px;
    font-size: 13px;
  }

  .cta-card {
    padding: 30px 20px;
    text-align: center;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .why-point {
    flex-direction: column;
    text-align: center;
  }

  .why-number {
    margin: 0 auto;
  }
}
