/* =============================================
        Nebraska Auto Detailing - Modern Restyled CSS
        ============================================= */
     
        :root {
          /* Updated Color Palette - Nebraska Auto Detailing Theme */
          --primary-color: #e41c38;      /* Nebraska Red */
          --secondary-color: #333333;    /* Dark Gray */
          --accent-color: #f5f5f5;       /* Light Gray/Silver */
          --light-accent: #e0e0e0;       /* Lighter Gray */
          --background-color: #ffffff;   /* Clean White */
          --light-gray-background: #f8f8f8; /* Subtle Light Gray */
          --dark-text-color: #222222;    /* Deep Charcoal */
          --light-text-color: #fffbfb;   /* White */
          --medium-text-color: #555555;  /* Medium Gray for Body Text */
          
          /* Refined UI Elements */
          --border-radius: 8px;
          --small-radius: 4px;
          --box-shadow: 0 10px 30px rgba(228, 28, 56, 0.1);
          --hover-shadow: 0 15px 40px rgba(228, 28, 56, 0.15);
          --transition-speed: 0.3s;
          
          /* Typography */
          --font-primary: 'Montserrat', sans-serif;
          --font-secondary: 'Raleway', sans-serif;
      }
      
      /* Base Styles & Typography Refinements */
      * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }
      
      html {
          scroll-behavior: smooth;
      }
      
      body {
          font-family: var(--font-secondary);
          color: var(--medium-text-color);
          line-height: 1.7;
          background-color: var(--background-color);
          overflow-x: hidden;
      }
      
      h1, h2, h3, h4, h5, h6 {
          font-family: var(--font-primary);
          color: var(--dark-text-color);
          font-weight: 700;
          line-height: 1.3;
          margin-bottom: 0.8em;
      }
      
      h1 {
          font-size: clamp(2.2rem, 5vw, 3.5rem);
      }
      
      h2 {
          font-size: clamp(1.8rem, 4vw, 2.8rem);
      }
      
      h3 {
          font-size: clamp(1.4rem, 3vw, 2rem);
      }
      
      p {
          margin-bottom: 1.5rem;
      }
      
      a {
          color: var(--primary-color);
          text-decoration: none;
          transition: all var(--transition-speed) ease;
      }
      
      img {
          max-width: 100%;
          height: auto;
          display: block;
      }
      
      .container {
          width: 100%;
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 2rem;
      }
      
      /* Enhanced Button Styles */
      .btn {
          display: inline-block;
          padding: 0.9rem 2rem;
          font-family: var(--font-primary);
          font-weight: 600;
          font-size: 1rem;
          border-radius: var(--border-radius);
          text-align: center;
          cursor: pointer;
          transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
          text-transform: uppercase;
          letter-spacing: 0.5px;
      }
      
      .btn-primary {
          background-color: var(--primary-color);
          color: var(--light-text-color);
          border: 2px solid var(--primary-color);
          box-shadow: 0 4px 15px rgba(30, 77, 140, 0.2);
      }
      
      .btn-primary:hover {
          background-color: transparent;
          color: var(--primary-color);
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgb(231, 255, 253);
      }
      
      .btn-secondary {
          background-color: transparent;
          color: var(--dark-text-color);
          border: 2px solid var(--dark-text-color);
      }
      
      .btn-secondary:hover {
          background-color: var(--dark-text-color);
          color: var(--light-text-color);
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgb(243, 255, 213);
      }
      
      .btn-accent {
          background-color: var(--accent-color);
          color: var(--dark-text-color);
          border: 2px solid var(--accent-color);
          box-shadow: 0 4px 15px rgba(232, 160, 37, 0.2);
      }
      
      .btn-accent:hover {
          background-color: transparent;
          color: var(--accent-color);
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(232, 160, 37, 0.25);
      }
      
      .btn-text {
          color: var(--primary-color);
          font-weight: 600;
          position: relative;
          padding-bottom: 2px;
          display: inline-flex;
          align-items: center;
      }
      
      .btn-text::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background-color: var(--accent-color);
          transition: width var(--transition-speed) ease;
      }
      
      .btn-text:hover {
          color: var(--accent-color);
      }
      
      .btn-text:hover::after {
          width: 100%;
      }
      
      .btn-text i {
          margin-left: 8px;
          transition: transform var(--transition-speed) ease;
      }
      
      .btn-text:hover i {
          transform: translateX(5px);
      }
      
      /* Modernized Header & Navigation */
      #site-header {
          background-color: var(--background-color);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
          padding: 1.2rem 0;
          position: relative;
          transition: all var(--transition-speed) ease;
      }
      
      #site-header.scrolled {
          padding: 0.8rem 0;
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
      }
      
         .header-content {
             display: flex;
             justify-content: space-between;
             align-items: center;
         }
         
.logo img {
    max-height: 70px;
    transition: all var(--transition-speed) ease;
    max-width: 200px;
    height: auto;
}

#site-header.scrolled .logo img {
    max-height: 60px;
}
         
         .main-nav {
             margin-left: auto;
         }
         
         .main-nav .nav-links {
             display: flex;
             align-items: center;
             list-style: none;
             gap: 2rem;
         }
         
         .main-nav .nav-links a {
             color: var(--dark-text-color);
             font-weight: 600;
             font-family: var(--font-primary);
             font-size: 0.95rem;
             position: relative;
             padding: 0.5rem 0;
         }
         
         .main-nav .nav-links a::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 0;
             width: 0;
             height: 2px;
             background-color: var(--accent-color);
             transition: width var(--transition-speed) ease;
         }
         
         .main-nav .nav-links a:hover,
         .main-nav .nav-links a.active {
             color: var(--primary-color);
         }
         
         .main-nav .nav-links a:hover::after,
         .main-nav .nav-links a.active::after {
             width: 100%;
         }
         
         .main-nav .nav-links a.btn-primary {
             padding: 0.7rem 1.5rem;
             border-radius: var(--border-radius);
             color: var(--light-text-color);
         }
         
         .main-nav .nav-links a.btn-primary::after {
             display: none;
         }
         
         .main-nav .nav-links a.btn-primary:hover {
             color: var(--primary-color);
         }
         
         /* Mobile Navigation Improvements */
         @media screen and (max-width: 992px) {
             .header-content {
                 flex-wrap: wrap;
             }
             
             .main-nav {
                 width: 100%;
                 margin-top: 1rem;
             }
             
             .main-nav .nav-links {
                 display: flex;
                 flex-direction: row;
                 flex-wrap: wrap;
                 justify-content: center;
                 gap: 1rem;
                 padding: 0.5rem 0;
             }
             
             .main-nav .nav-links li {
                 margin: 0.25rem;
             }
             
             .main-nav .nav-links a {
                 font-size: 0.9rem;
                 padding: 0.5rem 0.75rem;
                 white-space: nowrap;
             }
             
             .main-nav .nav-links a.btn-primary {
                 padding: 0.5rem 0.75rem;
             }
             
             /* Hide the mobile menu toggle button */
             .mobile-menu-toggle {
                 display: block;
             }
         }
         
         /* Small Mobile Adjustments */
         @media screen and (max-width: 576px) {
             .main-nav .nav-links {
                 justify-content: flex-start;
                 overflow-x: auto;
                 padding-bottom: 1rem;
                 flex-wrap: nowrap;
             }
             
             .main-nav .nav-links::-webkit-scrollbar {
                 height: 3px;
             }
             
             .main-nav .nav-links::-webkit-scrollbar-thumb {
                 background-color: var(--primary-color);
                 border-radius: 3px;
             }
             
             .main-nav .nav-links li {
                 flex: 0 0 auto;
             }
         }
         
         /* Improved Mobile Menu */
         .mobile-menu-toggle {
             display: none;
             background: none;
             border: none;
             cursor: pointer;
             width: 30px;
             height: 30px;
             position: relative;
             z-index: 1001;
         }
         
         .mobile-menu-toggle .bar {
             display: block;
             width: 30px;
             height: 2px;
             margin: 6px 0;
             background-color: var(--dark-text-color);
             transition: all 0.4s ease;
             border-radius: 2px;
         }
         
         /* Enhanced Hero Section */
         .hero {
             position: relative;
             background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                         url('../images/hero-background.jpg') no-repeat center center/cover;
             min-height: 85vh;
             display: flex;
             align-items: center;
             color: var(--light-text-color);
             overflow: hidden;
         }
         
         .hero::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: linear-gradient(135deg, rgba(228, 28, 56, 0.8) 0%, rgba(51, 51, 51, 0.8) 100%);
             z-index: 1;
         }
         
         .hero-content {
             position: relative;
             z-index: 2;
             max-width: 800px;
             margin: 0 auto;
             text-align: center;
             padding: 0 1.5rem;
         }
         
         .hero h1 {
             color: var(--light-text-color);
             margin-bottom: 1.5rem;
             font-weight: 800;
             text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
             line-height: 1.2;
         }
         
         .hero p {
             font-size: clamp(1.1rem, 2vw, 1.3rem);
             margin-bottom: 2.5rem;
             color: rgba(54, 0, 45, 0.9);
             max-width: 700px;
             margin-left: auto;
             margin-right: auto;
         }
         
         .hero-buttons {
             display: flex;
             justify-content: center;
             gap: 1.2rem;
             flex-wrap: wrap;
         }
         
         .hero .btn-primary {
             background-color: var(--accent-color);
             border-color: var(--accent-color);
             color: var(--dark-text-color);
             font-weight: 700;
         }
         
         .hero .btn-primary:hover {
             background-color: transparent;
             color: var(--accent-color);
         }
         
         .hero .btn-secondary {
             border-color: var(--light-text-color);
             color: var(--light-text-color);
         }
         
         .hero .btn-secondary:hover {
             background-color: var(--light-text-color);
             color: var(--primary-color);
         }
         
         /* Enhanced Services Page Styling */
         
         /* Services Page Header */
         .services-page .page-header {
             background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                         url('../images/services-header-bg.jpg') no-repeat center center/cover;
             padding: 6rem 0;
             text-align: center;
             position: relative;
             overflow: hidden;
         }
         
         .services-page .page-header::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: radial-gradient(circle at top right, rgba(228, 28, 56, 0.3), transparent 60%);
             z-index: 1;
         }
         
         .services-page .page-header .container {
             position: relative;
             z-index: 2;
         }
         
         .services-page .page-header h1 {
             color: var(--light-text-color);
             margin-bottom: 1rem;
             font-size: clamp(2.5rem, 5vw, 3.5rem);
             text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
             position: relative;
         }
         
         .services-page .page-header h1::after {
             content: '';
             display: block;
             width: 80px;
             height: 4px;
             background: var(--primary-color);
             margin: 1rem auto 0;
             border-radius: 2px;
         }
         
         .services-page .page-header p {
             color: rgba(255, 255, 255, 0.9);
             font-size: clamp(1.1rem, 2vw, 1.3rem);
             max-width: 700px;
             margin: 0 auto;
             font-weight: 300;
         }
         
         /* Service Section Styling */
         .service-section {
             padding: 6rem 0;
             position: relative;
         }
         
         .service-section:nth-child(even) {
             background-color: var(--light-gray-background);
         }
         
         .service-section:nth-child(odd)::before {
             content: '';
             position: absolute;
             top: 0;
             right: 0;
             width: 300px;
             height: 300px;
             background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
             border-radius: 50%;
             z-index: 0;
         }
         
         .service-card {
             display: grid;
             grid-template-columns: 1fr 1fr;
             gap: 4rem;
             align-items: center;
             position: relative;
             z-index: 1;
         }
         
         .service-card.reverse {
             grid-template-columns: 1fr 1fr;
             grid-template-areas: "info image";
         }
         
         .service-card:not(.reverse) {
             grid-template-areas: "image info";
         }
         
         .service-image {
             grid-area: image;
             border-radius: var(--border-radius);
             overflow: hidden;
             box-shadow: var(--box-shadow);
             position: relative;
             transform: perspective(1000px) rotateY(0deg);
             transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
         }
         
         .service-image::before {
             content: '';
             position: absolute;
             top: -15px;
             left: -15px;
             width: 80px;
             height: 80px;
             border-top: 4px solid var(--primary-color);
             border-left: 4px solid var(--primary-color);
             z-index: -1;
             opacity: 0.7;
             transition: all 0.4s ease;
         }
         
         .service-image::after {
             content: '';
             position: absolute;
             bottom: -15px;
             right: -15px;
             width: 80px;
             height: 80px;
             border-bottom: 4px solid var(--primary-color);
             border-right: 4px solid var(--primary-color);
             z-index: -1;
             opacity: 0.7;
             transition: all 0.4s ease;
         }
         
         .service-image:hover {
             transform: perspective(1000px) rotateY(2deg);
             box-shadow: var(--hover-shadow);
         }
         
         .service-image:hover::before,
         .service-image:hover::after {
             width: 100px;
             height: 100px;
             opacity: 1;
         }
         
         .service-image img {
             width: 100%;
             height: auto;
             display: block;
             transition: transform 0.6s ease;
         }
         
         .service-image:hover img {
             transform: scale(1.05);
         }
         
         .service-info {
             grid-area: info;
         }
         
         .service-info h2 {
             color: var(--dark-text-color);
             margin-bottom: 1.5rem;
             font-size: clamp(1.8rem, 3vw, 2.4rem);
             position: relative;
             padding-bottom: 1rem;
         }
         
         .service-info h2::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 0;
             width: 80px;
             height: 3px;
             background-color: var(--primary-color);
             border-radius: 1.5px;
         }
         
         .service-info p {
             margin-bottom: 1.8rem;
             font-size: 1.05rem;
             color: var(--medium-text-color);
             line-height: 1.8;
         }
         
         .service-list {
             margin-bottom: 2.5rem;
             list-style: none;
             padding: 0;
             display: grid;
             grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
             gap: 1rem 2rem;
         }
         
         .service-list li {
             padding-left: 2rem;
             position: relative;
             margin-bottom: 1rem;
             color: var(--medium-text-color);
         }
         
         .service-list li i {
             color: var(--primary-color);
             position: absolute;
             left: 0;
             top: 0.4rem;
             font-size: 1.1rem;
         }
         
         .service-info .btn-primary {
             padding: 0.9rem 2.2rem;
             font-size: 1rem;
             letter-spacing: 0.5px;
             box-shadow: 0 4px 15px rgba(228, 28, 56, 0.2);
             position: relative;
             overflow: hidden;
             z-index: 1;
         }
         
         .service-info .btn-primary::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 0;
             height: 100%;
             background-color: rgba(255, 255, 255, 0.2);
             transition: width 0.4s ease;
             z-index: -1;
         }
         
         .service-info .btn-primary:hover::before {
             width: 100%;
         }
         
         /* Packages Section Styling */
         .packages-section {
             padding: 6rem 0;
             background-color: var(--light-gray-background);
             position: relative;
             overflow: hidden;
         }
         
         .packages-section::before {
             content: '';
             position: absolute;
             top: -100px;
             left: -100px;
             width: 300px;
             height: 300px;
             background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
             border-radius: 50%;
         }
         
         .packages-section::after {
             content: '';
             position: absolute;
             bottom: -100px;
             right: -100px;
             width: 300px;
             height: 300px;
             background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
             border-radius: 50%;
         }
         
         .section-title {
             text-align: center;
             margin-bottom: 1.5rem;
             font-size: clamp(2rem, 4vw, 2.8rem);
             color: var(--dark-text-color);
             position: relative;
         }
         
         .section-title::after {
             content: '';
             display: block;
             width: 80px;
             height: 4px;
             background: var(--primary-color);
             margin: 1rem auto 0;
             border-radius: 2px;
         }
         
         .packages-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: 2.5rem;
             margin-top: 4rem;
             position: relative;
             z-index: 1;
         }
         
         .package-card {
             background-color: var(--background-color);
             border-radius: var(--border-radius);
             overflow: hidden;
             box-shadow: var(--box-shadow);
             transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
             position: relative;
             height: 100%;
             display: flex;
             flex-direction: column;
             border: 1px solid rgba(0, 0, 0, 0.05);
         }
         
         .package-card:hover {
             transform: translateY(-15px);
             box-shadow: var(--hover-shadow);
         }
         
         .package-header {
             background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
             color: var(--light-text-color);
             padding: 2.5rem 2rem;
             text-align: center;
             position: relative;
             overflow: hidden;
         }
         
         .package-header::before {
             content: '';
             position: absolute;
             top: -50%;
             left: -50%;
             width: 200%;
             height: 200%;
             background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
             transform: rotate(45deg);
         }
         
         .package-header h3 {
             color: var(--light-text-color);
             margin-bottom: 1.2rem;
             font-size: 1.8rem;
             position: relative;
             z-index: 1;
         }
         
         .package-price {
             display: flex;
             justify-content: center;
             align-items: baseline;
             gap: 0.5rem;
             position: relative;
             z-index: 1;
         }
         
         .package-price .price {
             font-size: 3rem;
             font-weight: 700;
             line-height: 1;
         }
         
         .package-price .duration {
             font-size: 1rem;
             opacity: 0.8;
         }
         
         .package-content {
             padding: 2.5rem 2rem;
             flex-grow: 1;
             display: flex;
             flex-direction: column;
         }
         
         .package-features {
             list-style: none;
             padding: 0;
             margin: 0 0 2.5rem 0;
             flex-grow: 1;
         }
         
         .package-features li {
             margin-bottom: 1.2rem;
             padding-left: 2rem;
             position: relative;
             color: var(--medium-text-color);
         }
         
         .package-features li i {
             position: absolute;
             left: 0;
             top: 0.4rem;
         }
         
         .package-features li i.fa-check {
             color: #28a745;
         }
         
         .package-features li i.fa-times {
             color: #dc3545;
         }
         
         .package-cta {
             text-align: center;
             margin-top: auto;
         }
         
         .package-cta .btn-primary {
             padding: 1rem 2.5rem;
             width: 100%;
             font-weight: 600;
             letter-spacing: 0.5px;
             transition: all 0.4s ease;
         }
         
         .package-cta .btn-primary:hover {
             transform: translateY(-5px);
             box-shadow: 0 8px 25px rgba(228, 28, 56, 0.25);
         }
         
         /* Additional Services Styling */
         .additional-services {
             padding: 6rem 0;
             position: relative;
         }
         
         .additional-services::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background-image: url('../images/pattern-bg.png');
             background-size: 300px;
             opacity: 0.03;
             pointer-events: none;
         }
         
         .services-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 2.5rem;
             margin-top: 4rem;
             position: relative;
             z-index: 1;
         }
         
         .additional-services .service-card {
             display: flex;
             flex-direction: column;
             text-align: center;
             padding: 3rem 2rem;
             background-color: var(--background-color);
             border-radius: var(--border-radius);
             box-shadow: var(--box-shadow);
             transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
             position: relative;
             height: 100%;
             border: 1px solid rgba(0, 0, 0, 0.05);
             overflow: hidden;
         }
         
         .additional-services .service-card::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 5px;
             background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
             z-index: 1;
         }
         
         .additional-services .service-card:hover {
             transform: translateY(-15px);
             box-shadow: var(--hover-shadow);
         }
         
         .additional-services .service-icon {
             width: 90px;
             height: 90px;
             background-color: rgba(228, 28, 56, 0.1);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 2rem;
             font-size: 2.5rem;
             color: var(--primary-color);
             transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
         }
         
         .additional-services .service-card:hover .service-icon {
             background-color: var(--primary-color);
             color: var(--light-text-color);
         }
         
         /* Why Choose Us Section Redesign */
         .why-choose-us {
             background-color: var(--background-color);
             padding: 6rem 0;
             position: relative;
             overflow: hidden;
         }
         
         .why-choose-us::after {
             content: '';
             position: absolute;
             top: -50%;
             right: -50%;
             width: 100%;
             height: 100%;
             background: radial-gradient(circle, rgba(232, 160, 37, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
             border-radius: 50%;
             z-index: 0;
         }
         
         .features-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
             gap: 2.5rem;
             position: relative;
             z-index: 1;
         }
         
         .feature {
             background-color: var(--light-gray-background);
             border-radius: var(--border-radius);
             padding: 2.5rem 2rem;
             text-align: center;
             transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
             position: relative;
             overflow: hidden;
         }
         
         .feature::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: linear-gradient(135deg, rgba(30, 77, 140, 0.05) 0%, rgba(232, 160, 37, 0.05) 100%);
             opacity: 0;
             transition: opacity var(--transition-speed) ease;
         }
         
         .feature:hover {
             transform: translateY(-10px);
             box-shadow: var(--box-shadow);
         }
         
         .feature:hover::before {
             opacity: 1;
         }
         
         .feature-icon {
             width: 90px;
             height: 90px;
             background-color: rgba(30, 77, 140, 0.1);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 1.5rem;
             font-size: 2.2rem;
             color: var(--primary-color);
             transition: all var(--transition-speed) ease;
             position: relative;
         }
         
         .feature:hover .feature-icon {
             background-color: var(--primary-color);
             color: var(--light-text-color);
         }
         
         .feature h3 {
             margin-bottom: 1rem;
             position: relative;
         }
         
         .feature p {
             color: var(--medium-text-color);
             margin-bottom: 0;
         }
         
         /* Testimonials Section Redesign */
         .testimonials {
             background-color: var(--light-gray-background);
             padding: 6rem 0;
             position: relative;
         }
         
         .testimonials::before {
             content: '\f10d';
             font-family: 'Font Awesome 6 Free';
             font-weight: 900;
             position: absolute;
             top: 4rem;
             left: 5%;
             font-size: 8rem;
             color: rgba(30, 77, 140, 0.05);
             z-index: 0;
         }
         
         .testimonials::after {
             content: '\f10e';
             font-family: 'Font Awesome 6 Free';
             font-weight: 900;
             position: absolute;
             bottom: 4rem;
             right: 5%;
             font-size: 8rem;
             color: rgba(30, 77, 140, 0.05);
             z-index: 0;
         }
         
         .testimonial-slider {
             max-width: 900px;
             margin: 0 auto;
             position: relative;
             z-index: 1;
         }
         
         .testimonial {
             background-color: var(--background-color);
             border-radius: var(--border-radius);
             box-shadow: var(--box-shadow);
             padding: 3rem;
             margin-bottom: 2rem;
             display: none;
             border: none;
             position: relative;
         }
         
         .testimonial.active {
             display: block;
             animation: fadeIn 0.5s ease-in-out;
         }
         
         @keyframes fadeIn {
             from { opacity: 0; transform: translateY(20px); }
             to { opacity: 1; transform: translateY(0); }
         }
         
         .testimonial::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 5px;
             height: 100%;
             background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
             border-radius: var(--small-radius) 0 0 var(--small-radius);
         }
         
         .testimonial-content p {
             font-style: italic;
             color: var(--medium-text-color);
             font-size: 1.1rem;
             line-height: 1.8;
             margin-bottom: 1.5rem;
             position: relative;
             padding-left: 0;
         }
         
         .testimonial-author {
             display: flex;
             align-items: center;
             justify-content: flex-end;
         }
         
         .author-image {
             width: 60px;
             height: 60px;
             border-radius: 50%;
             overflow: hidden;
             margin-right: 1rem;
             border: 3px solid var(--light-gray-background);
         }
         
         .author-image img {
             width: 100%;
             height: 100%;
             object-fit: cover;
         }
         
         .author-info {
             text-align: left;
         }
         
         .author-rating {
             color: var(--accent-color);
             margin-bottom: 0.5rem;
             font-size: 1rem;
         }
         
         .testimonial-author h4 {
             margin-bottom: 0.2rem;
             font-size: 1.1rem;
             color: var(--dark-text-color);
         }
         
         .testimonial-author p {
             font-size: 0.9rem;
             color: var(--medium-text-color);
             margin: 0;
         }
         
         .testimonial-controls {
             text-align: center;
             margin-top: 2rem;
         }
         
         .testimonial-controls button {
             background: var(--background-color);
             border: none;
             color: var(--primary-color);
             width: 50px;
             height: 50px;
             border-radius: 50%;
             margin: 0 0.5rem;
             cursor: pointer;
             box-shadow: var(--box-shadow);
             transition: all var(--transition-speed) ease;
             display: inline-flex;
             align-items: center;
             justify-content: center;
         }
         
         .testimonial-controls button:hover {
             background-color: var(--primary-color);
             color: var(--light-text-color);
             transform: translateY(-3px);
             box-shadow: 0 10px 20px rgba(30, 77, 140, 0.2);
         }
         
         .testimonial-controls button:disabled {
             opacity: 0.5;
             cursor: not-allowed;
             transform: none;
             box-shadow: none;
         }
         
         /* CTA Section Redesign */
         .cta-section {
             background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
             color: var(--light-text-color);
             padding: 5rem 0;
             position: relative;
             overflow: hidden;
         }
         
         .cta-section::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background-image: url('../images/pattern-light.png');
             background-size: 200px;
             opacity: 0.05;
             pointer-events: none;
         }
         
         .cta-content {
             position: relative;
             z-index: 1;
             text-align: center;
             max-width: 800px;
             margin: 0 auto;
         }
         
         .cta-content h2 {
             color: var(--light-text-color);
             margin-bottom: 1.5rem;
             font-weight: 700;
         }
         
         .cta-content p {
             font-size: 1.2rem;
             margin-bottom: 2.5rem;
             color: rgba(255, 255, 255, 0.9);
         }
         
         .cta-content .btn-primary {
             background-color: var(--accent-color);
             border-color: var(--accent-color);
             color: var(--dark-text-color);
             font-weight: 700;
             padding: 1rem 2.5rem;
             margin-right: 1rem;
             margin-bottom: 1rem;
         }
         
         .cta-content .btn-primary:hover {
             background-color: transparent;
             color: var(--accent-color);
         }
         
         .cta-content .btn-secondary {
             border-color: var(--light-text-color);
             color: var(--light-text-color);
             padding: 1rem 2.5rem;
             margin-bottom: 1rem;
         }
         
         .cta-content .btn-secondary:hover {
             background-color: var(--light-text-color);
             color: var(--primary-color);
         }
         
         .cta-content .btn-secondary i {
             margin-right: 0.5rem;
         }
         
         /* Trust Badges Redesign */
         .trust-badges {
             background-color: var(--background-color);
             padding: 4rem 0;
             border-bottom: 1px solid rgba(0, 0, 0, 0.05);
         }
         
         .badges-container {
             display: flex;
             justify-content: space-around;
             align-items: center;
             flex-wrap: wrap;
             gap: 2rem;
         }
         
         .badge {
             text-align: center;
             flex: 1;
             min-width: 150px;
             transition: all var(--transition-speed) ease;
             padding: 1rem;
         }
         
         .badge:hover {
             transform: translateY(-5px);
         }
         
         .badge img {
             max-height: 70px;
             margin: 0 auto 1rem;
             opacity: 0.85;
             transition: all var(--transition-speed) ease;
             filter: grayscale(20%);
         }
         
         .badge:hover img {
             opacity: 1;
             filter: grayscale(0%);
         }
         
         .badge p {
             font-weight: 600;
             color: var(--dark-text-color);
             font-size: 0.95rem;
             margin: 0;
         }
         
         /* Location Section Redesign */
         .location {
             padding: 6rem 0;
             background-color: var(--light-gray-background);
         }
         
         .location-content {
             display: grid;
             grid-template-columns: 1fr 1fr;
             gap: 3rem;
             align-items: start;
         }
         
         .map-container {
             position: relative;
             border-radius: var(--border-radius);
             overflow: hidden;
             box-shadow: var(--box-shadow);
             height: 100%;
         }
         
         .map-container::before {
             content: '';
             display: block;
             padding-top: 75%;
         }
         
         .map-container iframe {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             border: 0;
         }
         
         .address-info {
             padding: 2rem;
             background-color: var(--background-color);
             border-radius: var(--border-radius);
             box-shadow: var(--box-shadow);
         }
         
         .address-info h3 {
             margin-bottom: 1.5rem;
             color: var(--dark-text-color);
             font-size: 1.8rem;
             position: relative;
             padding-bottom: 0.8rem;
         }
         
         .address-info h3::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 0;
             width: 60px;
             height: 3px;
             background-color: var(--accent-color);
             border-radius: 1.5px;
         }
         
         .address-info address p {
             margin-bottom: 1rem;
             color: var(--medium-text-color);
             font-size: 1.05rem;
             display: flex;
             align-items: flex-start;
         }
         
         .address-info address p i {
             margin-right: 1rem;
             color: var(--primary-color);
             width: 20px;
             text-align: center;
             font-size: 1.2rem;
             margin-top: 0.3rem;
         }
         
         .hours {
             margin-top: 2rem;
             background-color: rgba(30, 77, 140, 0.05);
             padding: 1.5rem;
             border-radius: var(--border-radius);
             position: relative;
         }
         
         .hours::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 5px;
             height: 100%;
             background-color: var(--primary-color);
             border-radius: var(--small-radius) 0 0 var(--small-radius);
         }
         
         .hours h4 {
             font-size: 1.3rem;
             color: var(--dark-text-color);
             margin-bottom: 1rem;
         }
         
         .hours p {
             margin-bottom: 0.5rem;
             color: var(--medium-text-color);
             font-size: 1rem;
             display: flex;
             justify-content: space-between;
         }
         
         .hours p span:first-child {
             font-weight: 600;
         }
         
         /* Footer Redesign */
         #site-footer {
             background-color: var(--secondary-color);
             color: var(--light-text-color);
             padding: 5rem 0 2rem;
             position: relative;
         }
         
         #site-footer::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 5px;
             background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
         }
         
         .footer-content {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 3rem;
             margin-bottom: 3rem;
         }
         
         .footer-logo img {
             max-height: 60px;
             margin-bottom: 1.5rem;
             filter: brightness(0) invert(1);
         }
         
         .footer-logo p {
             color: rgba(172, 99, 99, 0.7);
             line-height: 1.7;
             margin-bottom: 1.5rem;
         }
         
         .footer-links h3, 
         .footer-services h3, 
         .footer-contact h3 {
             color: var(--light-text-color);
             margin-bottom: 1.5rem;
         }
         
         .footer-links ul, 
         .footer-services ul, 
         .footer-contact ul {
             list-style: none;
             padding: 0;
             margin: 0;
         }
         
         .footer-links li, 
         .footer-services li, 
         .footer-contact li {
             margin-bottom: 1rem;
             font-size: 0.95rem;
         }
         
         .footer-links li a,
         .footer-services li a,
         .footer-contact li a {
             color: rgba(255, 0, 0, 0.815);
             text-decoration: none;
             transition: all var(--transition-speed) ease;
             position: relative;
             display: inline-block;
         }
         
         .footer-links li a:hover,
         .footer-services li a:hover,
         .footer-contact li a:hover {
             color: var(--accent-color);
         }
         
         .footer-links li a:hover::after,
         .footer-services li a:hover::after,
         .footer-contact li a:hover::after {
             width: 100%;
         }
         
         .footer-links li a::after,
         .footer-services li a::after,
         .footer-contact li a::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 0;
             width: 0;
             height: 2px;
             background-color: var(--accent-color);
             transition: width var(--transition-speed) ease;
         }
         
         .footer-contact p {
             margin-bottom: 1rem;
             color: rgb(255, 0, 0);
             font-size: 0.95rem;
         }
         
         .footer-contact p i {
             margin-right: 0.5rem;
             color: var(--accent-color);
             font-size: 1.2rem;
         }
         
         .footer-social {
             display: flex;
             align-items: center;
             margin-top: 1.5rem;
         }
         
         .footer-social a {
             margin-right: 1.5rem;
             color: rgba(255, 0, 0, 0.7);
             font-size: 1.5rem;
             transition: all var(--transition-speed) ease;
         }
         
         .footer-social a:hover {
             color: var(--accent-color);
         }
         
         .footer-bottom {
             border-top: 1px solid rgba(255, 255, 255, 0.1);
             padding-top: 2rem;
             text-align: center;
             font-size: 0.9rem;
             color: rgb(177, 0, 0);
         }
         
         .footer-bottom p {
             margin-bottom: 0.5rem;
         }
         
         .footer-legal {
             margin-top: 1rem;
         }
         
         .footer-legal a {
             color: rgba(255, 0, 0, 0.5);
             margin: 0 1rem;
             transition: color var(--transition-speed) ease;
         }
         
         .footer-legal a:hover {
             color: var(--accent-color);
         }
         
         /* WhatsApp Float Button */
         .whatsapp-float {
             position: fixed;
             bottom: 2rem;
             right: 2rem;
             background-color: #25D366;
             color: white;
             width: 60px;
             height: 60px;
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             font-size: 2rem;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
             z-index: 999;
             transition: all var(--transition-speed) ease;
         }
         
         .whatsapp-float:hover {
             transform: scale(1.1);
             box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
         }
         
         /* About Page Specific Styling */
         
         /* Page Header Enhancement */
         .page-header {
             background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                         url('../images/about-header-bg.jpg') no-repeat center center/cover;
             padding: 5rem 0;
             text-align: center;
             color: var(--light-text-color);
             position: relative;
         }
         
         .page-header h1 {
             color: var(--light-text-color);
             margin-bottom: 1rem;
             font-size: 2.8rem;
             position: relative;
             z-index: 2;
         }
         
         .page-header p {
             font-size: 1.2rem;
             max-width: 700px;
             margin: 0 auto;
             position: relative;
             z-index: 2;
         }
         
         /* About Section Refinements */
         .about-section {
             padding: 6rem 0;
             background-color: var(--background-color);
         }
         
         .about-content {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: 4rem;
             align-items: center;
         }
         
         .about-image {
             position: relative;
             border-radius: var(--border-radius);
             overflow: hidden;
             box-shadow: var(--box-shadow);
         }
         
         .about-image::before {
             content: '';
             position: absolute;
             top: -20px;
             left: -20px;
             width: 100px;
             height: 100px;
             border-top: 5px solid var(--primary-color);
             border-left: 5px solid var(--primary-color);
             z-index: -1;
         }
         
         .about-image::after {
             content: '';
             position: absolute;
             bottom: -20px;
             right: -20px;
             width: 100px;
             height: 100px;
             border-bottom: 5px solid var(--primary-color);
             border-right: 5px solid var(--primary-color);
             z-index: -1;
         }
         
         .about-image img {
             width: 100%;
             height: auto;
             transition: transform var(--transition-speed) ease;
             display: block;
         }
         
         .about-image:hover img {
             transform: scale(1.05);
         }
         
         .about-text h2 {
             margin-bottom: 1.5rem;
             position: relative;
             padding-bottom: 1rem;
             color: var(--dark-text-color);
             font-size: 2.2rem;
         }
         
         .about-text h2::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 0;
             width: 80px;
             height: 3px;
             background-color: var(--primary-color);
             border-radius: 1.5px;
         }
         
         .about-text p {
             margin-bottom: 1.5rem;
             color: var(--medium-text-color);
             font-size: 1.05rem;
             line-height: 1.8;
         }
         
         /* Stats Section Enhancement */
         .about-stats {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
             gap: 2rem;
             margin-top: 3rem;
             background-color: var(--light-gray-background);
             padding: 2.5rem 2rem;
             border-radius: var(--border-radius);
             position: relative;
             box-shadow: var(--box-shadow);
         }
         
         .about-stats::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 5px;
             height: 100%;
             background-color: var(--primary-color);
             border-radius: var(--small-radius) 0 0 var(--small-radius);
         }
         
         .stat {
             text-align: center;
             transition: transform var(--transition-speed) ease;
         }
         
         .stat:hover {
             transform: translateY(-5px);
         }
         
         .stat-number {
             font-size: 2.5rem;
             font-weight: 700;
             color: var(--primary-color);
             margin-bottom: 0.5rem;
             line-height: 1;
             display: block;
         }
         
         .stat-label {
             font-size: 0.9rem;
             color: var(--dark-text-color);
             font-weight: 600;
             text-transform: uppercase;
             letter-spacing: 1px;
             display: block;
         }
         
         /* Mission Section Styling */
         .mission-section {
             padding: 6rem 0;
             background-color: var(--light-gray-background);
             position: relative;
             overflow: hidden;
         }
         
         .mission-section::before {
             content: '';
             position: absolute;
             top: 0;
             right: 0;
             width: 300px;
             height: 300px;
             background: radial-gradient(circle, rgba(228, 28, 56, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
             border-radius: 50%;
         }
         
         .mission-content {
             position: relative;
             z-index: 2;
         }
         
         .mission-text h2 {
             text-align: center;
             margin-bottom: 2.5rem;
             position: relative;
             padding-bottom: 1rem;
             color: var(--dark-text-color);
             font-size: 2.2rem;
         }
         
         .mission-text h2::after {
             content: '';
             position: absolute;
             bottom: 0;
             left: 50%;
             transform: translateX(-50%);
             width: 80px;
             height: 3px;
             background-color: var(--primary-color);
             border-radius: 1.5px;
         }
         
         .mission-text > p {
             text-align: center;
             max-width: 800px;
             margin: 0 auto 3rem;
             font-size: 1.1rem;
             color: var(--medium-text-color);
         }
         
         .values-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 2.5rem;
         }
         
         .value-item {
             background-color: var(--background-color);
             padding: 2.5rem 2rem;
             border-radius: var(--border-radius);
             text-align: center;
             box-shadow: var(--box-shadow);
             transition: all var(--transition-speed) ease;
         }
         
         .value-item:hover {
             transform: translateY(-10px);
             box-shadow: var(--hover-shadow);
         }
         
         .value-icon {
             width: 80px;
             height: 80px;
             background-color: rgba(228, 28, 56, 0.1);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 1.5rem;
             font-size: 2rem;
             color: var(--primary-color);
             transition: all var(--transition-speed) ease;
         }
         
         .value-item:hover .value-icon {
             background-color: var(--primary-color);
             color: var(--light-text-color);
             transform: rotateY(180deg);
         }
         
         .value-item h3 {
             margin-bottom: 1rem;
             color: var(--dark-text-color);
             font-size: 1.4rem;
         }
         
         .value-item p {
             color: var(--medium-text-color);
             margin-bottom: 0;
         }
         
         /* Certifications Section */
         .certifications {
             padding: 6rem 0;
             background-color: var(--background-color);
         }
         
         .section-title {
             text-align: center;
             margin-bottom: 1rem;
             color: var(--dark-text-color);
             font-size: 2.2rem;
         }
         
         .section-description {
             text-align: center;
             max-width: 700px;
             margin: 0 auto 3rem;
             color: var(--medium-text-color);
             font-size: 1.1rem;
         }
         
         .certifications-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 2.5rem;
         }
         
         .certification {
             background-color: var(--light-gray-background);
             padding: 2.5rem 2rem;
             border-radius: var(--border-radius);
             text-align: center;
             transition: all var(--transition-speed) ease;
         }
         
         .certification:hover {
             transform: translateY(-10px);
             box-shadow: var(--hover-shadow);
             border: 1px solid rgba(0, 0, 0, 0.0);
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
             background-color: var(--background-color);
         }
         
         .certification-icon {
             width: 80px;
             height: 80px;
             background-color: rgba(228, 28, 56, 0.1);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 1.5rem;
             font-size: 2rem;
             color: var(--primary-color);
             transition: all var(--transition-speed) ease;
             position: relative;
         }
         
         .certification:hover .certification-icon {
             background-color: var(--primary-color);
             color: var(--light-text-color);
         }
         
         .certification h3 {
             margin-bottom: 1rem;
             color: var(--dark-text-color);
             font-size: 1.4rem;
             position: relative;
         }
         
         .certification p {
             color: var(--medium-text-color);
             margin-bottom: 0;
             font-size: 0.9rem;
             line-height: 1.5;
             position: relative;
             padding-left: 1.5rem;
         }/* =============================================
       Nebraska Auto Detailing - Modern Restyled CSS
       ============================================= */
    
    :root {
        /* Updated Color Palette - Nebraska Auto Detailing Theme */
        --primary-color: #e41c38;      /* Nebraska Red */
        --secondary-color: #333333;    /* Dark Gray */
        --accent-color: #f5f5f5;       /* Light Gray/Silver */
        --light-accent: #e0e0e0;       /* Lighter Gray */
        --background-color: #ffffff;   /* Clean White */
        --light-gray-background: #f8f8f8; /* Subtle Light Gray */
        --dark-text-color: #222222;    /* Deep Charcoal */
        --light-text-color: #fffbfb;   /* White */
        --medium-text-color: #555555;  /* Medium Gray for Body Text */
        
        /* Refined UI Elements */
        --border-radius: 8px;
        --small-radius: 4px;
        --box-shadow: 0 10px 30px rgba(228, 28, 56, 0.1);
        --hover-shadow: 0 15px 40px rgba(228, 28, 56, 0.15);
        --transition-speed: 0.3s;
        
        /* Typography */
        --font-primary: 'Montserrat', sans-serif;
        --font-secondary: 'Raleway', sans-serif;
    }
    
    /* Base Styles & Typography Refinements */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: var(--font-secondary);
        color: var(--medium-text-color);
        line-height: 1.7;
        background-color: var(--background-color);
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-primary);
        color: var(--dark-text-color);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.8em;
    }
    
    h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    h3 {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }
    
    p {
        margin-bottom: 1.5rem;
    }
    
    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: all var(--transition-speed) ease;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    /* Enhanced Button Styles */
    .btn {
        display: inline-block;
        padding: 0.9rem 2rem;
        font-family: var(--font-primary);
        font-weight: 600;
        font-size: 1rem;
        border-radius: var(--border-radius);
        text-align: center;
        cursor: pointer;
        transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        color: var(--light-text-color);
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(30, 77, 140, 0.2);
    }
    
    .btn-primary:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgb(231, 255, 253);
    }
    
    .btn-secondary {
        background-color: transparent;
        color: var(--dark-text-color);
        border: 2px solid var(--dark-text-color);
    }
    
    .btn-secondary:hover {
        background-color: var(--dark-text-color);
        color: var(--light-text-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgb(243, 255, 213);
    }
    
    .btn-accent {
        background-color: var(--accent-color);
        color: var(--dark-text-color);
        border: 2px solid var(--accent-color);
        box-shadow: 0 4px 15px rgba(232, 160, 37, 0.2);
    }
    
    .btn-accent:hover {
        background-color: transparent;
        color: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(232, 160, 37, 0.25);
    }
    
    .btn-text {
        color: var(--primary-color);
        font-weight: 600;
        position: relative;
        padding-bottom: 2px;
        display: inline-flex;
        align-items: center;
    }
    
    .btn-text::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width var(--transition-speed) ease;
    }
    
    .btn-text:hover {
        color: var(--accent-color);
    }
    
    .btn-text:hover::after {
        width: 100%;
    }
    
    .btn-text i {
        margin-left: 8px;
        transition: transform var(--transition-speed) ease;
    }
    
    .btn-text:hover i {
        transform: translateX(5px);
    }
    
    /* Modernized Header & Navigation */
    #site-header {
        background-color: var(--background-color);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        padding: 1.2rem 0;
        position: relative;
        transition: all var(--transition-speed) ease;
    }
    
    #site-header.scrolled {
        padding: 0.8rem 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
.logo img {
    max-height: 55px;
    transition: all var(--transition-speed) ease;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 80px;
        width: auto;
    }
}
    
    #site-header.scrolled .logo img {
        max-height: 45px;
    }
    
    .main-nav {
        margin-left: auto;
    }
    
    .main-nav .nav-links {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 2rem;
    }
    
    .main-nav .nav-links a {
        color: var(--dark-text-color);
        font-weight: 600;
        font-family: var(--font-primary);
        font-size: 0.95rem;
        position: relative;
        padding: 0.5rem 0;
    }
    
    .main-nav .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width var(--transition-speed) ease;
    }
    
    .main-nav .nav-links a:hover,
    .main-nav .nav-links a.active {
        color: var(--primary-color);
    }
    
    .main-nav .nav-links a:hover::after,
    .main-nav .nav-links a.active::after {
        width: 100%;
    }
    
    .main-nav .nav-links a.btn-primary {
        padding: 0.7rem 1.5rem;
        border-radius: var(--border-radius);
        color: var(--light-text-color);
    }
    
    .main-nav .nav-links a.btn-primary::after {
        display: none;
    }
    
    .main-nav .nav-links a.btn-primary:hover {
        color: var(--primary-color);
    }
    
    /* Mobile Navigation Improvements */
    @media screen and (max-width: 992px) {
        .header-content {
            flex-wrap: wrap;
        }
        
        .main-nav {
            width: 100%;
            margin-top: 1rem;
        }
        
        .main-nav .nav-links {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            padding: 0.5rem 0;
        }
        
        .main-nav .nav-links li {
            margin: 0.25rem;
        }
        
        .main-nav .nav-links a {
            font-size: 0.9rem;
            padding: 0.5rem 0.75rem;
            white-space: nowrap;
        }
        
        .main-nav .nav-links a.btn-primary {
            padding: 0.5rem 0.75rem;
        }
        
        /* Show the mobile menu toggle button */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 35px;
            height: 25px;
        }
    }
    
    /* Small Mobile Adjustments */
    @media screen and (max-width: 576px) {
        .main-nav .nav-links {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 1rem;
            flex-wrap: nowrap;
        }
        
        .main-nav .nav-links::-webkit-scrollbar {
            height: 3px;
        }
        
        .main-nav .nav-links::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 3px;
        }
        
        .main-nav .nav-links li {
            flex: 0 0 auto;
        }
    }
    
    /* Improved Mobile Menu */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-toggle .bar {
        display: block;
        width: 30px;
        height: 2px;
        margin: 6px 0;
        background-color: var(--dark-text-color);
        transition: all 0.4s ease;
        border-radius: 2px;
    }
    
    /* Enhanced Hero Section */
    .hero {
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('../images/hero-background.jpg') no-repeat center center/cover;
        min-height: 85vh;
        display: flex;
        align-items: center;
        color: var(--light-text-color);
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(228, 28, 56, 0.8) 0%, rgba(51, 51, 51, 0.8) 100%);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        color: var(--light-text-color);
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        line-height: 1.2;
    }
    
    .hero p {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        margin-bottom: 2.5rem;
        color: rgba(54, 0, 45, 0.9);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        flex-wrap: wrap;
    }
    
    .hero .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--dark-text-color);
        font-weight: 700;
    }
    
    .hero .btn-primary:hover {
        background-color: transparent;
        color: var(--accent-color);
    }
    
    .hero .btn-secondary {
        border-color: var(--light-text-color);
        color: var(--light-text-color);
    }
    
    .hero .btn-secondary:hover {
        background-color: var(--light-text-color);
        color: var(--primary-color);
    }
    
    /* Enhanced Services Page Styling */
    
    /* Services Page Header */
    .services-page .page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../images/services-header-bg.jpg') no-repeat center center/cover;
        padding: 6rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .services-page .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(228, 28, 56, 0.3), transparent 60%);
        z-index: 1;
    }
    
    .services-page .page-header .container {
        position: relative;
        z-index: 2;
    }
    
    .services-page .page-header h1 {
        color: var(--light-text-color);
        margin-bottom: 1rem;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        position: relative;
    }
    
    .services-page .page-header h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 1rem auto 0;
        border-radius: 2px;
    }
    
    .services-page .page-header p {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        max-width: 700px;
        margin: 0 auto;
        font-weight: 300;
    }
    
    /* Service Section Styling */
    .service-section {
        padding: 6rem 0;
        position: relative;
    }
    
    .service-section:nth-child(even) {
        background-color: var(--light-gray-background);
    }
    
    .service-section:nth-child(odd)::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    .service-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .service-card.reverse {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "info image";
    }
    
    .service-card:not(.reverse) {
        grid-template-areas: "image info";
    }
    
    .service-image {
        grid-area: image;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        position: relative;
        transform: perspective(1000px) rotateY(0deg);
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .service-image::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        width: 80px;
        height: 80px;
        border-top: 4px solid var(--primary-color);
        border-left: 4px solid var(--primary-color);
        z-index: -1;
        opacity: 0.7;
        transition: all 0.4s ease;
    }
    
    .service-image::after {
        content: '';
        position: absolute;
        bottom: -15px;
        right: -15px;
        width: 80px;
        height: 80px;
        border-bottom: 4px solid var(--primary-color);
        border-right: 4px solid var(--primary-color);
        z-index: -1;
        opacity: 0.7;
        transition: all 0.4s ease;
    }
    
    .service-image:hover {
        transform: perspective(1000px) rotateY(2deg);
        box-shadow: var(--hover-shadow);
    }
    
    .service-image:hover::before,
    .service-image:hover::after {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    
    .service-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s ease;
    }
    
    .service-image:hover img {
        transform: scale(1.05);
    }
    
    .service-info {
        grid-area: info;
    }
    
    .service-info h2 {
        color: var(--dark-text-color);
        margin-bottom: 1.5rem;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        position: relative;
        padding-bottom: 1rem;
    }
    
    .service-info h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 1.5px;
    }
    
    .service-info p {
        margin-bottom: 1.8rem;
        font-size: 1.05rem;
        color: var(--medium-text-color);
        line-height: 1.8;
    }
    
    .service-list {
        margin-bottom: 2.5rem;
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem 2rem;
    }
    
    .service-list li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 1rem;
        color: var(--medium-text-color);
    }
    
    .service-list li i {
        color: var(--primary-color);
        position: absolute;
        left: 0;
        top: 0.4rem;
        font-size: 1.1rem;
    }
    
    .service-info .btn-primary {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(228, 28, 56, 0.2);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .service-info .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease;
        z-index: -1;
    }
    
    .service-info .btn-primary:hover::before {
        width: 100%;
    }
    
    /* Packages Section Styling */
    .packages-section {
        padding: 6rem 0;
        background-color: var(--light-gray-background);
        position: relative;
        overflow: hidden;
    }
    
    .packages-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
    }
    
    .packages-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(228, 28, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 4vw, 2.8rem);
        color: var(--dark-text-color);
        position: relative;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 1rem auto 0;
        border-radius: 2px;
    }
    
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
        position: relative;
        z-index: 1;
    }
    
    .package-card {
        background-color: var(--background-color);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .package-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--hover-shadow);
    }
    
    .package-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--light-text-color);
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .package-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
        transform: rotate(45deg);
    }
    
    .package-header h3 {
        color: var(--light-text-color);
        margin-bottom: 1.2rem;
        font-size: 1.8rem;
        position: relative;
        z-index: 1;
    }
    
    .package-price {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 0.5rem;
        position: relative;
        z-index: 1;
    }
    
    .package-price .price {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .package-price .duration {
        font-size: 1rem;
        opacity: 0.8;
    }
    
    .package-content {
        padding: 2.5rem 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .package-features {
        list-style: none;
        padding: 0;
        margin: 0 0 2.5rem 0;
        flex-grow: 1;
    }
    
    .package-features li {
        margin-bottom: 1.2rem;
        padding-left: 2rem;
        position: relative;
        color: var(--medium-text-color);
    }
    
    .package-features li i {
        position: absolute;
        left: 0;
        top: 0.4rem;
    }
    
    .package-features li i.fa-check {
        color: #28a745;
    }
    
    .package-features li i.fa-times {
        color: #dc3545;
    }
    
    .package-cta {
        text-align: center;
        margin-top: auto;
    }
    
    .package-cta .btn-primary {
        padding: 1rem 2.5rem;
        width: 100%;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.4s ease;
    }
    
    .package-cta .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(228, 28, 56, 0.25);
    }
    
    /* Additional Services Styling */
    .additional-services {
        padding: 6rem 0;
        position: relative;
    }
    
    .additional-services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/pattern-bg.png');
        background-size: 300px;
        opacity: 0.03;
        pointer-events: none;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
        position: relative;
        z-index: 1;
    }
    
    .additional-services .service-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        background-color: var(--background-color);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .additional-services .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        z-index: 1;
    }
    
    .additional-services .service-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--hover-shadow);
    }
    
    .additional-services .service-icon {
        width: 90px;
        height: 90px;
        background-color: rgba(228, 28, 56, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        font-size: 2.5rem;
        color: var(--primary-color);
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .additional-services .service-card:hover .service-icon {
        background-color: var(--primary-color);
        color: var(--light-text-color);
    }
    
    /* Why Choose Us Section Redesign */
    .why-choose-us {
        background-color: var(--background-color);
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .why-choose-us::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(232, 160, 37, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }
    
    .feature {
        background-color: var(--light-gray-background);
        border-radius: var(--border-radius);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        overflow: hidden;
    }
    
    .feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(30, 77, 140, 0.05) 0%, rgba(232, 160, 37, 0.05) 100%);
        opacity: 0;
        transition: opacity var(--transition-speed) ease;
    }
    
    .feature:hover {
        transform: translateY(-10px);
        box-shadow: var(--box-shadow);
    }
    
    .feature:hover::before {
        opacity: 1;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        background-color: rgba(30, 77, 140, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2.2rem;
        color: var(--primary-color);
        transition: all var(--transition-speed) ease;
        position: relative;
    }
    
    .feature:hover .feature-icon {
        background-color: var(--primary-color);
        color: var(--light-text-color);
    }
    
    .feature h3 {
        margin-bottom: 1rem;
        position: relative;
    }
    
    .feature p {
        color: var(--medium-text-color);
        margin-bottom: 0;
    }
    
    /* Testimonials Section Redesign */
    .testimonials {
        background-color: var(--light-gray-background);
        padding: 6rem 0;
        position: relative;
    }
    
    .testimonials::before {
        content: '\f10d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 4rem;
        left: 5%;
        font-size: 8rem;
        color: rgba(30, 77, 140, 0.05);
        z-index: 0;
    }
    
    .testimonials::after {
        content: '\f10e';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        bottom: 4rem;
        right: 5%;
        font-size: 8rem;
        color: rgba(30, 77, 140, 0.05);
        z-index: 0;
    }
    
    .testimonial-slider {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .testimonial {
        background-color: var(--background-color);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 3rem;
        margin-bottom: 2rem;
        display: none;
        border: none;
        position: relative;
    }
    
    .testimonial.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .testimonial::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
        border-radius: var(--small-radius) 0 0 var(--small-radius);
    }
    
    .testimonial-content p {
        font-style: italic;
        color: var(--medium-text-color);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        position: relative;
        padding-left: 0;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
        border: 3px solid var(--light-gray-background);
    }
    
    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info {
        text-align: left;
    }
    
    .author-rating {
        color: var(--accent-color);
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    
    .testimonial-author h4 {
        margin-bottom: 0.2rem;
        font-size: 1.1rem;
        color: var(--dark-text-color);
    }
    
    .testimonial-author p {
        font-size: 0.9rem;
        color: var(--medium-text-color);
        margin: 0;
    }
    
    .testimonial-controls {
        text-align: center;
        margin-top: 2rem;
    }
    
    .testimonial-controls button {
        background: var(--background-color);
        border: none;
        color: var(--primary-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0 0.5rem;
        cursor: pointer;
        box-shadow: var(--box-shadow);
        transition: all var(--transition-speed) ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-controls button:hover {
        background-color: var(--primary-color);
        color: var(--light-text-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(30, 77, 140, 0.2);
    }
    
    .testimonial-controls button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    /* CTA Section Redesign */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--light-text-color);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/pattern-light.png');
        background-size: 200px;
        opacity: 0.05;
        pointer-events: none;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        color: var(--light-text-color);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .cta-content .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--dark-text-color);
        font-weight: 700;
        padding: 1rem 2.5rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-content .btn-primary:hover {
        background-color: transparent;
        color: var(--accent-color);
    }
    
    .cta-content .btn-secondary {
        border-color: var(--light-text-color);
        color: var(--light-text-color);
        padding: 1rem 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-content .btn-secondary:hover {
        background-color: var(--light-text-color);
        color: var(--primary-color);
    }
    
    .cta-content .btn-secondary i {
        margin-right: 0.5rem;
    }
    
    /* Trust Badges Redesign */
    .trust-badges {
        background-color: var(--background-color);
        padding: 4rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .badges-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .badge {
        text-align: center;
        flex: 1;
        min-width: 150px;
        transition: all var(--transition-speed) ease;
        padding: 1rem;
    }
    
    .badge:hover {
        transform: translateY(-5px);
    }
    
    .badge img {
        max-height: 70px;
        margin: 0 auto 1rem;
        opacity: 0.85;
        transition: all var(--transition-speed) ease;
        filter: grayscale(20%);
    }
    
    .badge:hover img {
        opacity: 1;
        filter: grayscale(0%);
    }
    
    .badge p {
        font-weight: 600;
        color: var(--dark-text-color);
        font-size: 0.95rem;
        margin: 0;
    }
    
    /* Location Section Redesign */
    .location {
        padding: 6rem 0;
        background-color: var(--light-gray-background);
    }
    
    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .map-container {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        height: 100%;
    }
    
    .map-container::before {
        content: '';
        display: block;
        padding-top: 75%;
    }
    
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .address-info {
        padding: 2rem;
        background-color: var(--background-color);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    .address-info h3 {
        margin-bottom: 1.5rem;
        color: var(--dark-text-color);
        font-size: 1.8rem;
        position: relative;
        padding-bottom: 0.8rem;
    }
    
    .address-info h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 1.5px;
    }
    
    .address-info address p {
        margin-bottom: 1rem;
        color: var(--medium-text-color);
        font-size: 1.05rem;
        display: flex;
        align-items: flex-start;
    }
    
    .address-info address p i {
        margin-right: 1rem;
        color: var(--primary-color);
        width: 20px;
        text-align: center;
        font-size: 1.2rem;
        margin-top: 0.3rem;
    }
    
    .hours {
        margin-top: 2rem;
        background-color: rgba(30, 77, 140, 0.05);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        position: relative;
    }
    
    .hours::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--primary-color);
        border-radius: var(--small-radius) 0 0 var(--small-radius);
    }
    
    .hours h4 {
        font-size: 1.3rem;
        color: var(--dark-text-color);
        margin-bottom: 1rem;
    }
    
    .hours p {
        margin-bottom: 0.5rem;
        color: var(--medium-text-color);
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
    }
    
    .hours p span:first-child {
        font-weight: 600;
    }
    
    /* Footer Redesign */
    #site-footer {
        background-color: var(--secondary-color);
        color: var(--light-text-color);
        padding: 5rem 0 2rem;
        position: relative;
    }
    
    #site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-logo img {
        max-height: 60px;
        margin-bottom: 1.5rem;
        filter: brightness(0) invert(1);
    }
    
    .footer-logo p {
        color: rgba(172, 99, 99, 0.7);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .footer-links h3, 
    .footer-services h3, 
    .footer-contact h3 {
        color: var(--light-text-color);
        margin-bottom: 1.5rem;
    }
    
    .footer-links ul, 
    .footer-services ul, 
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li, 
    .footer-services li, 
    .footer-contact li {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .footer-links li a,
    .footer-services li a,
    .footer-contact li a {
        color: rgba(255, 0, 0, 0.815);
        text-decoration: none;
        transition: all var(--transition-speed) ease;
        position: relative;
        display: inline-block;
    }
    
    .footer-links li a:hover,
    .footer-services li a:hover,
    .footer-contact li a:hover {
        color: var(--accent-color);
    }
    
    .footer-links li a:hover::after,
    .footer-services li a:hover::after,
    .footer-contact li a:hover::after {
        width: 100%;
    }
    
    .footer-links li a::after,
    .footer-services li a::after,
    .footer-contact li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width var(--transition-speed) ease;
    }
    
    .footer-contact p {
        margin-bottom: 1rem;
        color: rgb(255, 0, 0);
        font-size: 0.95rem;
    }
    
    .footer-contact p i {
        margin-right: 0.5rem;
        color: var(--accent-color);
        font-size: 1.2rem;
    }
    
    .footer-social {
        display: flex;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .footer-social a {
        margin-right: 1.5rem;
        color: rgba(255, 0, 0, 0.7);
        font-size: 1.5rem;
        transition: all var(--transition-speed) ease;
    }
    
    .footer-social a:hover {
        color: var(--accent-color);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
        color: rgb(177, 0, 0);
    }
    
    .footer-bottom p {
        margin-bottom: 0.5rem;
    }
    
    .footer-legal {
        margin-top: 1rem;
    }
    
    .footer-legal a {
        color: rgba(255, 0, 0, 0.5);
        margin: 0 1rem;
        transition: color var(--transition-speed) ease;
    }
    
    .footer-legal a:hover {
        color: var(--accent-color);
    }
    
    /* WhatsApp Float Button */
    .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: all var(--transition-speed) ease;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* About Page Specific Styling */
    
    /* Page Header Enhancement */
    .page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('../images/about-header-bg.jpg') no-repeat center center/cover;
        padding: 5rem 0;
        text-align: center;
        color: var(--light-text-color);
        position: relative;
    }
    
    .page-header h1 {
        color: var(--light-text-color);
        margin-bottom: 1rem;
        font-size: 2.8rem;
        position: relative;
        z-index: 2;
    }
    
    .page-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    /* About Section Refinements */
    .about-section {
        padding: 6rem 0;
        background-color: var(--background-color);
    }
    
    .about-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 4rem;
        align-items: center;
    }
    
    .about-image {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
    }
    
    .about-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        border-top: 5px solid var(--primary-color);
        border-left: 5px solid var(--primary-color);
        z-index: -1;
    }
    
    .about-image::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        border-bottom: 5px solid var(--primary-color);
        border-right: 5px solid var(--primary-color);
        z-index: -1;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        transition: transform var(--transition-speed) ease;
        display: block;
    }
    
    .about-image:hover img {
        transform: scale(1.05);
    }
    
    .about-text h2 {
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
        color: var(--dark-text-color);
        font-size: 2.2rem;
    }
    
    .about-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 1.5px;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
        color: var(--medium-text-color);
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    /* Stats Section Enhancement */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        background-color: var(--light-gray-background);
        padding: 2.5rem 2rem;
        border-radius: var(--border-radius);
        position: relative;
        box-shadow: var(--box-shadow);
    }
    
    .about-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--primary-color);
        border-radius: var(--small-radius) 0 0 var(--small-radius);
    }
    
    .stat {
        text-align: center;
        transition: transform var(--transition-speed) ease;
    }
    
    .stat:hover {
        transform: translateY(-5px);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        line-height: 1;
        display: block;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--dark-text-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
    }
    
    /* Mission Section Styling */
    .mission-section {
        padding: 6rem 0;
        background-color: var(--light-gray-background);
        position: relative;
        overflow: hidden;
    }
    
    .mission-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(228, 28, 56, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
    }
    
    .mission-content {
        position: relative;
        z-index: 2;
    }
    
    .mission-text h2 {
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
        padding-bottom: 1rem;
        color: var(--dark-text-color);
        font-size: 2.2rem;
    }
    
    .mission-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 1.5px;
    }
    
    .mission-text > p {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
        font-size: 1.1rem;
        color: var(--medium-text-color);
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
    
    .value-item {
        background-color: var(--background-color);
        padding: 2.5rem 2rem;
        border-radius: var(--border-radius);
        text-align: center;
        box-shadow: var(--box-shadow);
        transition: all var(--transition-speed) ease;
    }
    
    .value-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--hover-shadow);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background-color: rgba(228, 28, 56, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: var(--primary-color);
        transition: all var(--transition-speed) ease;
    }
    
    .value-item:hover .value-icon {
        background-color: var(--primary-color);
        color: var(--light-text-color);
        transform: rotateY(180deg);
    }
    
    .value-item h3 {
        margin-bottom: 1rem;
        color: var(--dark-text-color);
        font-size: 1.4rem;
    }
    
    .value-item p {
        color: var(--medium-text-color);
        margin-bottom: 0;
    }
    
/* Certifications Section */
.certifications {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-text-color);
    font-size: 2.2rem;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--medium-text-color);
    font-size: 1.1rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.certification {
    background-color: var(--light-gray-background);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.certification:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border: 1px solid rgba(0, 0, 0, 0.0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--background-color);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(228, 28, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.certification:hover .certification-icon {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.certification h3 {
    margin-bottom: 1rem;
    color: var(--dark-text-color);
    font-size: 1.4rem;
    position: relative;
}

.certification p {
    color: var(--medium-text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

/* FAQ Page Specific Styles */

/* FAQ Search Section */
.faq-search {
    background-color: var(--primary);
    padding: var(--spacing-lg) 0;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.faq-search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.faq-search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.faq-search-form button:hover {
    background-color: var(--primary-light);
}

/* FAQ Categories */
.faq-categories {
    padding: var(--spacing-lg) 0;
    background-color: var(--light);
}

.categories-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    width: 150px;
    text-align: center;
}

.category-item:hover, .category-item.active {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-item:hover .category-icon, .category-item.active .category-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.category-item:hover h3, .category-item.active h3 {
    color: var(--white);
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.category-item h3 {
    margin-bottom: 0;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

/* FAQ Content */
.faq-content {
    padding: var(--spacing-xl) 0;
}

.faq-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.category-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-md);
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-item.active .faq-question {
    background-color: var(--primary);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-md);
}

.faq-answer p {
    margin-bottom: 0;
}

/* Still Have Questions */
.still-have-questions {
    background-color: var(--light);
    padding: var(--spacing-xl) 0;
}

.questions-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.questions-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.questions-content p {
    margin-bottom: var(--spacing-lg);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.contact-option {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.contact-option:hover {
    transform: translateY(-10px);
}

.option-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto var(--spacing-md);
}

.contact-option h3 {
    margin-bottom: var(--spacing-xs);
}

.contact-option p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
}

/* Dark Mode Styles */
body.dark-mode .faq-search {
    background-color: var(--gray-dark);
}

body.dark-mode .category-item {
    background-color: var(--gray-dark);
    color: var(--light);
}

body.dark-mode .category-item h3 {
    color: var(--light);
}

body.dark-mode .category-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

body.dark-mode .faq-question {
    background-color: var(--gray-dark);
}

body.dark-mode .faq-question h3 {
    color: var(--light);
}

body.dark-mode .faq-toggle-icon {
    color: var(--light);
}

body.dark-mode .faq-answer {
    background-color: var(--dark);
    color: var(--light);
}

body.dark-mode .contact-option {
    background-color: var(--gray-dark);
}

body.dark-mode .contact-option h3 {
    color: var(--light);
}

body.dark-mode .contact-option p {
    color: var(--gray-light);
}

body.dark-mode .option-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category-item {
        width: 130px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .categories-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        justify-content: flex-start;
    }
    
    .categories-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .category-item {
        flex: 0 0 auto;
        width: 120px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-container h2 {
        font-size: 1.5rem;
    }
    
    .faq-search-form input {
        padding: 0.75rem 1rem;
    }
    
    .category-item {
        width: 100px;
        padding: var(--spacing-sm);
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .category-item h3 {
        font-size: 0.875rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Under Construction Section Styling */
.contact-under-construction {
    background-color: var(--light-gray-background);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    font-family: var(--font-primary);
    color: var(--dark-text-color);
}

.contact-under-construction h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-under-construction p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--medium-text-color);
    line-height: 1.5;
}

.contact-under-construction .contact-info {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--dark-text-color);
}

.contact-under-construction .contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
    display: block;
    margin: 0.3rem 0;
}

.contact-under-construction .btn-appointment {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 77, 140, 0.2);
    text-decoration: none;
}

.contact-under-construction .btn-appointment:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(231, 255, 253);
}
    