@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #d5dce6;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand .logo-img {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.brand-highlight {
  color: var(--secondary);
}

.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link.active, .nav-link:hover {
  color: var(--secondary) !important;

}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  min-width: 220px;
  transform: translateY(10px);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
  transform: translateY(5px);
}

.dropdown-item {
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s ease;
  border-radius: 5px;
  margin: 0 0.5rem;
  width: auto;
}

.dropdown-item:hover {
  background: var(--primary);
  color: white;
  transform: translateX(3px);
}

.dropdown-item.view-all {
  background: var(--light);
  margin: 0 0.5rem 0.5rem;
  padding: 0.75rem 1.25rem;
}

.dropdown-item.view-all:hover {
  background: var(--primary);
  color: white;
}

.dropdown-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.25rem;
  margin-top: 0.25rem;
}

.dropdown-divider {
  margin: 0.5rem 0.75rem;
  opacity: 0.3;
}

/* Hover effect for parent link */
.nav-link.dropdown-toggle {
  position: relative;
}

.nav-link.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

/* Active state */
.dropdown-item.active {
  background: var(--primary);
  color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0.75rem 1.5rem;
  }
  
  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: none;
  }
  
  .dropdown-item.view-all {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .dropdown-header {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.btn-call-now {
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-call-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.stat-item i {
  color: var(--secondary);
  font-size: 1.5rem;
}

.hero-image-container {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Brand Carousel */
.brand-section {
  background: var(--light);
}

.brand-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.brand-carousel {
  display: flex;
  gap: 2rem;
  animation: scroll 40s linear infinite;
}

.brand-logo-item {
  flex: 0 0 auto;
}

.brand-logo-item img {
  height: 40px;
  transition: opacity 0.3s ease;
}

.brand-logo-item:hover img {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services Section */
.services-section {
  background: var(--gray-light);
}

.section-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-image {
  height: 300px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.service-features i {
  color: var(--primary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* Why Choose Us */
.why-choose-section {
  background: white;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.experience-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.exp-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

.exp-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.stat h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  background: var(--light);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.rating {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-weight: 700;
  color: var(--dark);
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.875rem;
}

/* CTA Section */
/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-card {
  background: #f8fafc;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--primary);
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-buttons .btn {
  min-width: 200px;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light:hover {
  background: white;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .cta-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    padding: 0.875rem 1rem;
  }
}

/* FAQ Section */
.faq-section {
  background: white;
}

.accordion-button {
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  background: var(--light);
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.footer-contact i {
  color: var(--secondary);
  width: 20px;
}

.footer-contact a {
  color: var(--gray-light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.copyright {
  color: var(--gray-light);
  font-size: 0.875rem;
}

.copyright a {
  color: var(--gray-light);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--secondary);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand .brand-name {
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .exp-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }

  .hero-buttons{
   display: flex;
   flex-direction: column;
   gap: 1rem;
   align-items: start;

  }
}

@media (max-width: 576px) {
  .navbar-brand .logo-img {
    height: 40px;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.25rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    bottom: 20px;
    right: 20px;
  }
  
  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 385px) {
  .navbar-brand .logo-img {
    height: 40px;
  }

  .navbar-brand .brand-name {
    font-size: 1rem;
  }

}

@media (max-width: 355px) {
  .navbar-brand .logo-img {
    height: 40px;
  }

  .navbar-brand .brand-name {
    font-size: 0.9rem;
  }

  .navbar-toggler{
    font-size: 1rem;
  }
}


/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 8rem 0 4rem;
  margin-top: 76px;
}

.min-vh-60 {
  min-height: 60vh;
}

.min-vh-80 {
  min-height: 80vh;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Styles */
.about-story {
  background: white;
}

.story-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -40px;
  right: -10px;
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Mission & Values */
.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.mission-statement {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mission-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark);
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 2rem;
}

.team-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.team-certifications {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--gray-light);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Why Us Section */
.advantage-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.advantage-icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
}

.advantage-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Contact Page Styles */
.contact-info {
  background: white;
}

.info-card {
  background: white;
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-dark);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.hour-item:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form-card {
  background: white;
  border: 1px solid var(--gray-light);
}

.form-floating > .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

/* Contact Details */
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  background: var(--gray-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-content h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.social-contact {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Map Section */
.map-container {
  height: 400px;
}

.service-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-areas li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-areas li:last-child {
  border-bottom: none;
}

/* Services Page Styles */
.services-nav-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.service-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
  min-width: 100px;
}

.service-nav-link:hover,
.service-nav-link.active {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.service-nav-link i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-nav-link span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Service Category */
.service-category {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-category:last-child {
  border-bottom: none;
}

.service-category-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-category-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-category-desc {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
}

.service-detail-card {
  background: white;
  border: 1px solid var(--gray-light);
}

.service-problems {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-problems li {
  padding: 0.5rem 0;
  color: var(--dark);
}

.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--gray-light);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-image-card {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-image-card img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
}

.service-price-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-price-badge h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.25rem 0;
  line-height: 1;
}

.service-specs {
  display: grid;
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spec-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.spec-item h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.spec-item p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

.type-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.type-tag {
  background: var(--gray-light);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-benefit i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-benefit h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.service-benefit p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

.repair-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.repair-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.repair-info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.repair-info p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

/* Other Services */
.other-service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.other-service-card:hover {
  transform: translateY(-5px);
}

.other-service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.other-service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Coverage Page Styles */
.coverage-card {
  background: white;
  border: 1px solid var(--gray-light);
}

.coverage-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.coverage-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coverage-stats .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.coverage-stats .stat-content h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.coverage-stats .stat-content p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

/* Map Visual */
.map-visual {
  height: 400px;
  background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%);
  position: relative;
}

.map-overlay {
  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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.3)"/></svg>');
  background-size: cover;
}

.map-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

.point-center {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.point-label {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-point:hover .point-label {
  opacity: 1;
}

.map-point.animate .point-center {
  animation: pulse 2s infinite;
}

/* Area Cards */
.area-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.area-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.area-badge {
  background: var(--secondary);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.area-content {
  padding: 1.5rem;
}

.area-suburbs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.area-suburbs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.area-suburbs li:last-child {
  border-bottom: none;
}

.area-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

/* Suburb Lists */
.suburb-list-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.suburb-tag {
  background: var(--gray-light);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.suburb-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Service Request */
.service-request {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-nav-container {
    gap: 0.5rem;
  }
  
  .service-nav-link {
    min-width: 80px;
    padding: 0.75rem 0.5rem;
  }
  
  .service-nav-link i {
    font-size: 1.25rem;
  }
  
  .service-nav-link span {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .service-category-title {
    font-size: 2rem;
  }
  
  .area-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .suburb-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 576px) {
  .services-nav-container {
    flex-direction: column;
    align-items: center;
  }
  
  .service-nav-link {
    width: 100%;
    max-width: 200px;
    flex-direction: row;
    gap: 1rem;
  }
  
  .service-price-badge {
    top: -10px;
    right: -10px;
    padding: 0.75rem;
  }
  
  .service-price-badge h4 {
    font-size: 1.25rem;
  }
  
  .map-point .point-label {
    display: none;
  }
}

.credits {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 2rem;
}

/* Service Page Specific Styles */
.service-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 8rem 0 4rem;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.service-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.service-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-header-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .service-header-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-header-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Service Overview */
.service-overview {
  background: white;
}

.service-image-main {
  position: relative;
  overflow: hidden;
}

.service-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image-main:hover img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Common Problems */
.common-problems {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid transparent;
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
  background: var(--secondary);
  transform: scale(1.1);
}

.problem-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.problem-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.problem-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: var(--light);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.problem-card:hover .feature-tag {
  background: var(--primary);
  color: white;
}

/* Service Brands */
.service-brands {
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.brand-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--dark);
  border: 2px solid var(--gray-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Why Us */
.service-why-us {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
}

.service-benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
}

.service-benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.service-benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.service-benefit-card:hover .benefit-icon {
  background: var(--secondary);
  color: var(--dark);
}

.service-benefit-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.service-benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Service FAQ */
.service-faq .accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.service-faq .accordion-button {
  background: white;
  color: var(--dark);
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
}

.service-faq .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}

.service-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.service-faq .accordion-body {
  padding: 1.5rem;
  background: #f8f9fa;
  color: var(--gray);
  line-height: 1.6;
}

/* Related Services */
.related-services {
  background: white;
}

.related-service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid transparent;
}

.related-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.related-service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.related-service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.related-service-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.related-service-link:hover {
  color: var(--primary-dark);
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-header {
    padding: 6rem 0 3rem;
  }
  
  .service-header-icon {
    width: 80px;
    height: 80px;
  }
  
  .service-header-icon i {
    font-size: 2.5rem;
  }
  
  .problem-card,
  .service-benefit-card,
  .related-service-card {
    padding: 1.5rem;
  }
}


  /* Book Repair Section */
.book-repair-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.book-repair-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%232563eb" opacity="0.05"/></svg>');
  background-size: contain;
  transform: translate(100px, -100px);
}

.book-repair-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23f59e0b" opacity="0.05"/></svg>');
  background-size: contain;
  transform: translate(-50px, 50px);
}

.booking-card {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Form Styling */
.form-floating {
  position: relative;
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  z-index: 3;
}

.form-floating > .form-control,
.form-floating > .form-select {
  padding-right: 50px;
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem 1rem 0.75rem;
  border: 2px solid var(--gray-light);
  background: white;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-floating > label {
  padding: 1rem 0.75rem;
  color: var(--gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
  color: var(--primary);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

/* Info Side Styling */
.info-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefits-list {
  flex-grow: 1;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.benefit-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.booking-contact .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.booking-contact .btn-outline-light:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.booking-guarantee {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Booking Features */
.booking-features .feature-item {
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.booking-features .feature-item:hover {
  transform: translateY(-5px);
}

.booking-features .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
}

.booking-features h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* Submit Button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  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 ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .booking-card .row {
    flex-direction: column;
  }
  
  .info-side {
    padding: 2.5rem !important;
  }
  
  .form-side {
    padding: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .booking-card {
    border-radius: 15px !important;
  }
  
  .booking-features .col-md-4 {
    margin-bottom: 1.5rem;
  }
  
  .booking-features .col-md-4:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .info-side,
  .form-side {
    padding: 1.5rem !important;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .benefit-icon {
    margin: 0 auto;
  }
  
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: calc(3rem + 2px);
    padding: 0.75rem 0.5rem 0.75rem 0.5rem;
  }
  
  .form-floating > label {
    padding: 0.75rem 0.5rem;
  }
  
  .form-icon {
    right: 10px;
  }
}