:root {
  --primary: #183A5A;
  --secondary: #F3F4F6;
  --accent: #E67E22;
  --success: #27AE60;
  --info: #3498DB;
  --bg: #FFFFFF;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --error: #E74C3C;
  --light-navy: #2B5478;
  --dark-navy: #0F2A3D;
  --warm-orange: #F39C12;
  --soft-blue: #5DADE2;
  --mint-green: #58D68D;
}

/* Prevent horizontal scroll globally */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: linear-gradient(135deg, var(--bg) 0%, #f8fafc 50%, var(--secondary) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.display-4 {
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.display-5 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.lead {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
}

.card-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Custom button styles */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--light-navy);
  border-color: var(--light-navy);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Enhanced Glassmorphic Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(248, 250, 252, 0.15) 30%, 
    rgba(243, 244, 246, 0.20) 70%, 
    rgba(255, 255, 255, 0.25) 100%) !important;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  box-shadow: 
    0 8px 32px rgba(24, 58, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  color: var(--primary) !important;
  font-size: 1.25rem;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary) !important;
}

.navbar-brand span {
  color: var(--primary);
}

/* Nav links (not buttons) */
.nav-link:not(.btn) {
  color: var(--text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

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

/* Nav button styling */
.nav-link.btn {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

/* Ensure Book Now button has white text - FORCE OVERRIDE */
.navbar-nav .nav-link.btn.btn-primary,
.navbar-nav .nav-link.btn.btn-primary:link,
.navbar-nav .nav-link.btn.btn-primary:visited,
.navbar-nav .nav-link.btn.btn-primary:hover,
.navbar-nav .nav-link.btn.btn-primary:active,
.navbar-nav .nav-link.btn.btn-primary:focus,
.nav-link.btn.btn-primary,
.nav-link.btn.btn-primary:link,
.nav-link.btn.btn-primary:visited,
.nav-link.btn.btn-primary:hover,
.nav-link.btn.btn-primary:active,
.nav-link.btn.btn-primary:focus {
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: var(--primary) !important;
}

/* Ultra-specific override for navbar button text */
.navbar .nav-link.btn.btn-primary.text-white {
  color: #ffffff !important;
}

.navbar-toggler {
  border: 1px solid var(--primary);
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(24, 58, 90, 0.25);
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #E5E7EB 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-section h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.5rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  transition: transform 0.2s ease-in-out;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-title {
  color: var(--primary);
  font-weight: 600;
}

.card-text {
  color: var(--text);
}

/* Text colors */
.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--accent) !important;
}

/* Form styling */
.form-control {
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(24, 58, 90, 0.25);
}

.form-select {
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(24, 58, 90, 0.25);
}

/* Alert styling */
.alert {
  border-radius: 0.5rem;
  border: none;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* Footer */
footer {
  background-color: var(--dark-navy) !important;
}

footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

footer p {
  color: #adb5bd;
  margin-bottom: 0.5rem;
}

/* Enhanced icon styling */
.fas, .fa {
  transition: all 0.3s ease;
}

.text-primary .fas, .text-primary .fa {
  color: var(--primary) !important;
}

.display-6.text-primary {
  background: linear-gradient(135deg, var(--accent), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fas.fa-clock {
  color: var(--info) !important;
}

.fas.fa-user-check {
  color: var(--success) !important;
}

.fas.fa-handshake {
  color: var(--accent) !important;
}

.fas.fa-check {
  color: var(--success) !important;
}

.fas.fa-medal {
  color: var(--warm-orange) !important;
}

.fas.fa-lightbulb {
  color: var(--info) !important;
}

/* Icon hover effects */
.fas:hover, .fa:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Add some sparkle animation to key icons */
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
  50% { transform: scale(1.05) rotate(-3deg); opacity: 1; }
  75% { transform: scale(1.08) rotate(3deg); opacity: 0.9; }
}

.display-6:hover {
  animation: sparkle 1s ease-in-out;
}

.display-1 {
  font-size: 4rem;
}

.display-6 {
  font-size: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile navbar */
  .navbar {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .navbar .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
    max-width: calc(100% - 60px); /* Leave space for hamburger */
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .navbar-brand img {
    height: 32px !important;
    flex-shrink: 0;
  }
  
  .navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  /* Mobile hero adjustments */
  .hero-logo {
    height: 80px !important;
  }
  
  .hero-cta-button-enhanced {
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .navbar-brand {
    font-size: 0.9rem !important;
    max-width: calc(100% - 50px); /* Even more space for hamburger on small screens */
  }
  
  .navbar-brand img {
    height: 28px !important;
  }
  
  .navbar-toggler {
    padding: 0.2rem 0.4rem;
  }
  
  /* Extra small hero adjustments */
  .hero-logo {
    height: 60px !important;
  }
  
  .hero-cta-button-enhanced {
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
    letter-spacing: 0.5px;
  }
}

/* Custom spacing */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Background utilities */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Enhanced navbar scroll effect */
.navbar.navbar-scrolled {
  padding: 0.5rem 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.35) 0%, 
    rgba(248, 250, 252, 0.25) 30%, 
    rgba(243, 244, 246, 0.30) 70%, 
    rgba(255, 255, 255, 0.35) 100%) !important;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 
    0 8px 40px rgba(24, 58, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: none;
}

/* Enhanced cards */
.card {
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(24, 58, 90, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--info), var(--success), var(--warm-orange));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card:hover::before {
  transform: translateX(0);
}

.card:nth-child(3n+1)::before {
  background: linear-gradient(90deg, var(--accent), var(--warm-orange));
}

.card:nth-child(3n+2)::before {
  background: linear-gradient(90deg, var(--info), var(--soft-blue));
}

.card:nth-child(3n+3)::before {
  background: linear-gradient(90deg, var(--success), var(--mint-green));
}

/* Enhanced hero section with professional animated background */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    var(--bg) 0%, 
    rgba(248, 250, 252, 0.9) 20%, 
    rgba(243, 244, 246, 0.8) 50%, 
    rgba(248, 250, 252, 0.9) 80%, 
    var(--bg) 100%);
  border-bottom: 1px solid #e2e8f0;
  width: 100vw;
  max-width: 100%;
}

/* Dramatic animated geometric background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(24, 58, 90, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  animation: dramaticPulse 4s ease-in-out infinite;
  z-index: -3;
}

/* Floating geometric shapes */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* HVAC-inspired hexagonal pattern */
    radial-gradient(circle at 15% 25%, rgba(24, 58, 90, 0.08) 3px, transparent 4px),
    radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.08) 3px, transparent 4px),
    radial-gradient(circle at 50% 15%, rgba(37, 99, 235, 0.06) 2px, transparent 3px),
    radial-gradient(circle at 25% 85%, rgba(24, 58, 90, 0.06) 2px, transparent 3px),
    radial-gradient(circle at 75% 45%, rgba(59, 130, 246, 0.06) 1.5px, transparent 2px);
  background-size: 120px 120px, 150px 150px, 80px 80px, 100px 100px, 60px 60px;
  animation: floatingShapes 15s linear infinite;
  z-index: -2;
}

/* Subtle mesh overlay for depth */
.hero-section .hero-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(24, 58, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 58, 90, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: meshShift 12s ease-in-out infinite;
  z-index: -1;
}

@keyframes dramaticPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.1) rotate(1deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(2deg);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.1) rotate(1deg);
  }
}

@keyframes floatingShapes {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-10px) translateY(-5px) rotate(90deg);
  }
  50% {
    transform: translateX(-5px) translateY(-10px) rotate(180deg);
  }
  75% {
    transform: translateX(5px) translateY(-5px) rotate(270deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

@keyframes meshShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(2px) translateY(-2px);
  }
  50% {
    transform: translateX(-1px) translateY(-3px);
  }
  75% {
    transform: translateX(-2px) translateY(1px);
  }
}

/* Enhanced bubble system with brand colors */
.hero-section .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-section .hero-particles::before,
.hero-section .hero-particles::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--primary) 0%, rgba(24, 58, 90, 0.3) 40%, transparent 100%);
  border-radius: 50%;
  animation: dramaticParticleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(24, 58, 90, 0.4);
}

.hero-section .hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: -2s;
  animation-duration: 10s;
}

.hero-section .hero-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: -5s;
  animation-duration: 12s;
  background: radial-gradient(circle, var(--accent) 0%, rgba(230, 126, 34, 0.3) 40%, transparent 100%);
  box-shadow: 0 0 35px rgba(230, 126, 34, 0.4);
}

@keyframes dramaticParticleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-40px) translateX(20px) scale(1.5) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-30px) translateX(-10px) scale(0.7) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-50px) translateX(30px) scale(1.3) rotate(270deg);
    opacity: 0.9;
  }
}

/* Dramatic gradient waves for depth */
.hero-section .hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(24, 58, 90, 0.08) 40%, 
    rgba(59, 130, 246, 0.12) 80%,
    rgba(37, 99, 235, 0.15) 100%);
  animation: dramaticWaveMotion 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes dramaticWaveMotion {
  0%, 100% {
    transform: translateY(0px) scaleX(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-15px) scaleX(1.05);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) scaleX(1.1);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-10px) scaleX(1.02);
    opacity: 0.9;
  }
}

/* Additional particle systems for more bubbles */
.hero-section .hero-particles-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-section .hero-particles-2::before,
.hero-section .hero-particles-2::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, var(--info) 0%, rgba(52, 152, 219, 0.3) 40%, transparent 100%);
  border-radius: 50%;
  animation: dramaticParticleFloat 10s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(52, 152, 219, 0.4);
}

.hero-section .hero-particles-2::before {
  top: 35%;
  left: 70%;
  animation-delay: -3s;
  animation-duration: 11s;
}

.hero-section .hero-particles-2::after {
  top: 80%;
  left: 25%;
  animation-delay: -7s;
  animation-duration: 13s;
}

.hero-section .hero-particles-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-section .hero-particles-3::before,
.hero-section .hero-particles-3::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--success) 0%, rgba(39, 174, 96, 0.3) 40%, transparent 100%);
  border-radius: 50%;
  animation: dramaticParticleFloat 9s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(39, 174, 96, 0.4);
}

.hero-section .hero-particles-3::before {
  top: 15%;
  right: 25%;
  animation-delay: -1s;
  animation-duration: 14s;
}

.hero-section .hero-particles-3::after {
  top: 65%;
  left: 60%;
  animation-delay: -9s;
  animation-duration: 8s;
}

.hero-section .hero-particles-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-section .hero-particles-4::before,
.hero-section .hero-particles-4::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, var(--warm-orange) 0%, rgba(243, 156, 18, 0.3) 40%, transparent 100%);
  border-radius: 50%;
  animation: dramaticParticleFloat 12s ease-in-out infinite;
  box-shadow: 0 0 28px rgba(243, 156, 18, 0.4);
}

.hero-section .hero-particles-4::before {
  top: 45%;
  left: 15%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.hero-section .hero-particles-4::after {
  top: 25%;
  right: 35%;
  animation-delay: -6s;
  animation-duration: 9s;
}

/* Reduce animations on mobile for performance and fix overflow */
@media (max-width: 768px) {
  .hero-section::before,
  .hero-section::after,
  .hero-mesh,
  .hero-particles,
  .hero-particles-2,
  .hero-particles-3,
  .hero-particles-4,
  .hero-waves {
    animation-duration: 20s;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .hero-section .hero-particles::before,
  .hero-section .hero-particles::after,
  .hero-section .hero-particles-2::before,
  .hero-section .hero-particles-2::after,
  .hero-section .hero-particles-3::before,
  .hero-section .hero-particles-3::after,
  .hero-section .hero-particles-4::before,
  .hero-section .hero-particles-4::after {
    display: none;
  }
  
  /* Ensure hero section doesn't overflow on mobile */
  .hero-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Fix container alignment on mobile */
  .hero-section .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* Improved buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--light-navy) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(24, 58, 90, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(24, 58, 90, 0.4);
  background: linear-gradient(135deg, var(--light-navy) 0%, var(--primary) 100%);
}

/* Hero CTA Button - Special animated button */
.hero-cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%) !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.7) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  padding: 1rem 2.5rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  animation: pulse-glow 2s infinite;
  position: relative;
  overflow: hidden;
}

.hero-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.hero-cta-button:hover::before {
  left: 100%;
}

.hero-cta-button:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5), 0 0 0 8px rgba(59, 130, 246, 0.1) !important;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%) !important;
  animation: none;
}

.hero-cta-button:active {
  transform: translateY(-2px) scale(1.02) !important;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 0 8px rgba(59, 130, 246, 0.2);
  }
  100% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
}

/* Hero Logo Styling */
.hero-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* Enhanced Hero CTA Button */
.hero-cta-button-enhanced {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
  border: none !important;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.8) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  padding: 1.25rem 3rem !important;
  border-radius: 50px !important;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: pulse-glow-enhanced 3s infinite;
  position: relative;
  overflow: hidden;
}

.hero-cta-button-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s;
}

.hero-cta-button-enhanced:hover::before {
  left: 100%;
}

.hero-cta-button-enhanced:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.6), 0 0 0 12px rgba(37, 99, 235, 0.15) !important;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%) !important;
  animation: none;
  color: white !important;
}

.hero-cta-button-enhanced:active {
  transform: translateY(-3px) scale(1.04) !important;
}

@keyframes pulse-glow-enhanced {
  0% {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.8);
  }
  50% {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5), 0 0 0 10px rgba(37, 99, 235, 0.3);
  }
  100% {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.8);
  }
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--light-navy));
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  width: 100%;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 58, 90, 0.3);
  color: white !important;
  border-color: var(--light-navy);
}

/* Section backgrounds */
.bg-light {
  background: linear-gradient(135deg, var(--secondary) 0%, #F9FAFB 100%) !important;
}

/* Animation for success icon */
.fas.fa-check-circle {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Creative entrance animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Apply subtle animations to sections */
.hero-section .col-lg-6:first-child {
  animation: fadeInUp 0.8s ease-out;
}

.hero-section .col-lg-6:last-child {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

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

/* Floating elements */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-section img {
  transition: transform 0.3s ease;
}

.hero-section img:hover {
  transform: scale(1.02);
}

/* Add subtle parallax effect */
@keyframes parallaxMove {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-5px) translateX(2px); }
  50% { transform: translateY(-10px) translateX(0px); }
  75% { transform: translateY(-5px) translateX(-2px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.bg-light {
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23E67E22" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%233498DB" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%2327AE60" opacity="0.1"/></svg>');
  animation: parallaxMove 20s ease-in-out infinite;
  pointer-events: none;
}

/* Hero section enhancements */
.hero-badge .badge {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  background: var(--primary) !important;
  border: none;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-highlights {
  background: rgba(24, 58, 90, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(24, 58, 90, 0.1);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-highlights span {
  color: var(--text);
  font-weight: 500;
}

.hero-highlights i {
  font-size: 1.1rem;
}

/* Enhanced sections */
section {
  position: relative;
  z-index: 1;
}

/* Add some personality to the "Why Choose Us" section */
.py-5.bg-light .display-5 {
  position: relative;
}

.py-5.bg-light .display-5::after {
  content: '⚡';
  position: absolute;
  right: -40px;
  top: 0;
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite 1s;
}

/* Fun hover effects for service cards */
.card:hover {
  transform: translateY(-8px) scale(1.02);
}

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

/* Add some personality to footer */
footer {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary) 100%) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/><circle cx="30" cy="90" r="1.5" fill="white" opacity="0.1"/></svg>');
  animation: parallaxMove 30s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Booking form enhancements */
.booking-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(24, 58, 90, 0.1);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(24, 58, 90, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--info), var(--success), var(--warm-orange));
}

.booking-card .form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.booking-card .form-control,
.booking-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(24, 58, 90, 0.15);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.booking-card .form-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.booking-card .alert-info {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(93, 173, 226, 0.1) 100%);
  border: 1px solid rgba(52, 152, 219, 0.2);
  border-radius: 0.75rem;
  color: var(--info);
  font-size: 0.9rem;
}

.booking-card .alert-info i {
  color: var(--info);
}

.booking-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.booking-card .btn-primary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-card .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(24, 58, 90, 0.3);
}

/* Time input styling */
input[type="datetime-local"] {
  position: relative;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  background: var(--primary);
  border-radius: 0.25rem;
  padding: 4px;
  color: white;
  cursor: pointer;
}

/* Form validation styling */
.form-control:invalid {
  border-color: var(--error);
}

.form-control:valid {
  border-color: var(--success);
}

/* Time selection enhancements */
.booking-card optgroup {
  font-weight: 600;
  color: var(--primary);
  background: rgba(24, 58, 90, 0.05);
  padding: 0.5rem 0;
}

.booking-card optgroup option {
  font-weight: 400;
  color: var(--text);
  background: white;
  padding: 0.5rem 1rem;
}

.booking-card optgroup option:hover {
  background: rgba(24, 58, 90, 0.1);
}

/* Date input styling */
input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: var(--primary);
  border-radius: 0.25rem;
  padding: 4px;
  color: white;
  cursor: pointer;
}

/* Time slot visual indicators */
.booking-card .form-select optgroup[label*="Weekend"] {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(88, 214, 141, 0.1) 100%);
}

.booking-card .form-select optgroup[label*="Weekday"] {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(93, 173, 226, 0.1) 100%);
}

/* Desktop navbar enhancements - logo and text alignment */
@media (min-width: 992px) {
  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem;
  }
  
  .navbar-brand img {
    height: 70px !important;
  }
  
  .navbar-brand span {
    font-size: 40px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }
}

/* Mobile responsiveness for booking form */
@media (max-width: 768px) {
  .booking-card .card-body {
    padding: 2rem 1.5rem !important;
  }
  
  .booking-card .form-control,
  .booking-card .form-select {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .booking-card .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Additional mobile overflow fixes */
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col, [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  /* Ensure all sections respect viewport width */
  section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Fix any potential image overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix button text wrapping */
  .btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}