/* Main Styles for AppliancePro Website */

:root {
  /* Color Variables */
  --primary: #0B4F6C;
  --primary-dark: #083D56;
  --primary-light: #145E7F;
  --secondary: #F7941D;
  --secondary-dark: #E68100;
  --secondary-light: #FFA940;
  --light: #FBFBFB;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --border-color: #dee2e6;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Font Variables */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Spacing Variables */
  --section-padding: 5rem;
  --section-padding-mobile: 3rem;
  
  /* Border Radius */
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Box Shadow */
  --box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  --box-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
  
  /* Transition */
  --transition: all 0.3s ease-in-out;
}

/* General Styles */
body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

.btn {
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

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

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

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

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

.btn-emergency {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.btn-emergency:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

.btn-outline-light {
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  color: var(--dark);
  background-color: white;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.text-start .section-header h2:after {
  left: 0;
  transform: none;
}

.bg-light {
  background-color: var(--light-gray) !important;
}

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

.container {
  max-width: 1200px;
}

img {
  max-width: 100%;
}

/* Header Styles */
#header {
  transition: var(--transition);
  z-index: 997;
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow-sm);
}

#header.header-scrolled {
  background: white;
  box-shadow: var(--box-shadow);
  padding: 0.25rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--dark);
}

.navbar-brand .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

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

.navbar-nav .nav-link.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--primary);
}

.emergency-contact {
  display: flex;
  align-items: center;
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 79, 108, 0.9) 0%, rgba(20, 94, 127, 0.8) 100%), url('https://images.pexels.com/photos/4108721/pexels-photo-4108721.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 0;
  margin-top: 76px;
}

#hero .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
}

/* Page Title */
#page-title {
  height: 300px;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 79, 108, 0.9) 0%, rgba(20, 94, 127, 0.8) 100%), url('https://images.pexels.com/photos/4108721/pexels-photo-4108721.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  margin-top: 76px;
}

#page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: white;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.service-card:hover:before {
  width: 100%;
  opacity: 0.1;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li:before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary);
}

.service-card ul li:last-child {
  border-bottom: none;
}

/* Booking Section */
.booking-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.booking-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow-sm);
  text-align: center;
  margin: 1rem 0;
}

.rating {
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--gray);
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  opacity: 0.5;
}

.carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
}

.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  opacity: 1;
}

/* CTA Section */
#cta {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 79, 108, 0.9) 0%, rgba(20, 94, 127, 0.8) 100%), url('https://images.pexels.com/photos/4108727/pexels-photo-4108727.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
}

.cta-content {
  padding: 2rem;
  border-radius: var(--border-radius);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Brands Section */
.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.brand-item {
  width: 150px;
  height: 80px;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.brand-item span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

/* Footer */
#footer {
  background-color: var(--dark);
  color: white;
  position: relative;
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.25rem;
}

.footer-info p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4:after, .footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 1.5rem;
}

.footer-contact strong {
  margin-right: 0.5rem;
  color: var(--primary);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  margin-bottom: 0;
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 996;
  display: none;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  transition: var(--transition);
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Service Detail Section */
.service-detail-item {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

.service-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-item {
  width: 50%;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.feature-item i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-detail-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.service-certifications {
  display: flex;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  background-color: rgba(11, 79, 108, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.cert-badge i {
  margin-right: 0.5rem;
}

.service-intro-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
}

/* Price Calculator */
.calculator-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.estimate-card {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
}

.estimate-card h3 {
  margin-bottom: 1.5rem;
}

.estimate-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.estimate-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* About Page */
.about-image {
  position: relative;
}

.about-signature {
  display: flex;
  align-items: center;
}

.signature-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
}

.founder-quote {
  flex: 1;
  font-style: italic;
}

.founder-quote p {
  margin-bottom: 0.25rem;
}

.founder-quote span {
  font-weight: 600;
  font-style: normal;
}

/* Mission and Values */
.mission-card, .value-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

.mission-card:hover, .value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.mission-icon, .value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

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

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-info p {
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
}

.team-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  margin-right: 0.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary);
  color: white;
}

/* Stats Section */
.stat-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Certification Section */
.certification-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

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

.certification-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Gallery Page */
.gallery-filter-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  border: none;
  background-color: transparent;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0.5rem;
  font-weight: 600;
  border-radius: 20px;
  transition: var(--transition);
  color: var(--dark);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: white;
}

.gallery-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  height: 100%;
  transition: var(--transition);
}

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

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.before-after-container a {
  position: relative;
  display: block;
}

.before-after-container img {
  border-radius: var(--border-radius);
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.before-tag, .after-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.after-tag {
  background-color: var(--success);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.contact-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.contact-form-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.map-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-areas {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.area-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.area-list li {
  padding: 0.5rem 0;
}

.area-list li i {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Business Hours */
.hours-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.hours-section h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.hours-list {
  list-style: none;
  padding-left: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
}

.emergency-hours {
  text-align: center;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.emergency-badge i {
  margin-right: 0.5rem;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: white;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--box-shadow-sm);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: white;
  box-shadow: var(--box-shadow);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(11, 79, 108, 0.1);
}

.accordion-button::after {
  background-size: 1.25rem;
  transition: var(--transition);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

/* Process Section */
.process-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

.process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 79, 108, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.75rem;
  margin: 0.5rem auto 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.animate__fadeIn {
  animation: fadeIn 1s;
}

.animate__fadeInUp {
  animation: fadeInUp 1s;
}

.animate__fadeInRight {
  animation: fadeInRight 1s;
}

.animate__delay-1s {
  animation-delay: 0.3s;
}

.animate__delay-2s {
  animation-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 1199.98px) {
  .service-features .feature-item {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: var(--section-padding-mobile) 0;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
  
  .process-card {
    margin-bottom: 2rem;
  }
  
  .about-image {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .gallery-filter-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    margin-bottom: 0.5rem;
  }
  
  .hours-list li {
    flex-direction: column;
  }
  
  .day, .time {
    width: 100%;
  }
  
  .time {
    margin-top: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .feature-item {
    width: 100%;
  }
}