* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Your existing colors */
  --white: #ffffff;
  --light-navy: #2c4a62;
  --orange: #ff7400;
  --orange-hover: #e66600;
  --text-dark: #000000;
  --border-light: #e5e5e5;

  /* Additional variables for Service Areas */
  --background-light: #f8f9fa;
  --shadow-light: rgba(44, 74, 98, 0.1);
  --shadow-medium: rgba(44, 74, 98, 0.15);
  --shadow-dark: rgba(44, 74, 98, 0.2);
  --gradient-orange: linear-gradient(
    135deg,
    var(--orange),
    var(--orange-hover)
  );
  --gradient-navy: linear-gradient(135deg, var(--light-navy), #1a3a4a);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 25px 18px;
  text-decoration: none;
  color: var(--light-navy);
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link i {
  margin-right: 8px;
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--light-navy);
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-menu a:hover {
  background: var(--orange);
  color: var(--white);
}

.dropdown-menu a i {
  margin-right: 8px;
  width: 16px;
}

.login-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 20px;
  border: none;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(255, 116, 0, 0.2);
}

.login-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 116, 0, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--light-navy);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  background: var(--orange);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  background: var(--orange);
}

/* DESKTOP - Hover dropdowns */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .nav-container {
    height: 60px;
    padding: 0 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    justify-content: flex-start;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border: none;
  }

  .dropdown.open .dropdown-menu {
    max-height: 600px;
  }

  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 12px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
  }

  .dropdown-menu a:hover {
    background: var(--orange);
    color: var(--white);
  }

  .login-btn {
    margin: 15px 20px 20px 20px;
    display: block;
    text-align: center;
  }
}

/* Tablet Portrait - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 25px;
  }

  .nav-link {
    padding: 20px 15px;
  }
}

/* Small Mobile - 320px to 480px */
@media (max-width: 480px) {
  .nav-container {
    height: 55px;
    padding: 0 10px;
  }

  .logo img {
    height: 35px;
  }

  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }
}

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .nav-container {
    max-width: 1400px;
    padding: 0 30px;
  }
}

/* Content area for testing */
.content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  color: var(--light-navy);
  margin-bottom: 20px;
}

.content p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 15px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section Base Styles - UPDATED WITH 500PX MAX HEIGHT */
.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  max-height: 500px;
  min-height: 400px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  z-index: 3;
  padding: 20px;
}

.content-wrapper {
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 116, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 116, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--light-navy);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.feature i {
  font-size: 1rem;
  color: var(--orange);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.05);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
  left: 15px;
}

.next-arrow {
  right: 15px;
}

/* Dot Indicators */
.dot-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.1);
}

/* RESPONSIVE BREAKPOINTS - UPDATED FOR 500PX MAX HEIGHT */

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .hero-section {
    height: 500px;
    max-height: 500px;
    min-height: 450px;
  }

  .content-wrapper {
    max-width: 800px;
  }

  .cta-buttons {
    gap: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 160px;
  }

  .hero-features {
    gap: 30px;
  }
}

/* Standard Desktop - 1025px to 1440px */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hero-section {
    height: 500px;
    max-height: 500px;
    min-height: 450px;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .prev-arrow {
    left: 20px;
  }

  .next-arrow {
    right: 20px;
  }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 450px;
    max-height: 450px;
    min-height: 400px;
  }

  .content-wrapper {
    max-width: 600px;
    padding: 0 25px;
  }

  .slide-content p {
    margin-bottom: 1.2rem;
  }

  .cta-buttons {
    gap: 15px;
    margin-bottom: 1.2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-width: 130px;
  }

  .hero-features {
    gap: 20px;
  }

  .feature {
    font-size: 0.8rem;
  }

  .nav-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .prev-arrow {
    left: 12px;
  }

  .next-arrow {
    right: 12px;
  }

  .dot-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .hero-section {
    height: 400px;
    max-height: 400px;
    min-height: 350px;
  }

  .slide-content {
    padding: 12px;
  }

  .content-wrapper {
    max-width: 450px;
    padding: 0 20px;
  }

  .slide-content h1 {
    margin-bottom: 0.6rem;
  }

  .slide-content p {
    margin-bottom: 1rem;
  }

  .cta-buttons {
    gap: 10px;
    margin-bottom: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 9px 16px;
    font-size: 0.85rem;
    min-width: 120px;
    gap: 5px;
  }

  .hero-features {
    gap: 15px;
  }

  .feature {
    font-size: 0.75rem;
  }

  .feature i {
    font-size: 0.9rem;
  }

  .nav-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }

  .dot-indicators {
    bottom: 12px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Large Mobile - 415px to 480px */
@media screen and (min-width: 415px) and (max-width: 480px) {
  .hero-section {
    height: 380px;
    max-height: 380px;
    min-height: 320px;
  }

  .slide-content {
    padding: 10px;
  }

  .content-wrapper {
    padding: 0 15px;
    max-width: 350px;
  }

  .slide-content h1 {
    margin-bottom: 0.5rem;
  }

  .slide-content p {
    margin-bottom: 0.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 200px;
    padding: 10px 16px;
    font-size: 0.8rem;
    min-width: unset;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .feature {
    font-size: 0.7rem;
    justify-content: center;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .prev-arrow {
    left: 8px;
  }

  .next-arrow {
    right: 8px;
  }

  .dot-indicators {
    bottom: 10px;
    gap: 5px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }
}

/* Medium Mobile - 361px to 414px */
@media screen and (min-width: 361px) and (max-width: 414px) {
  .hero-section {
    height: 360px;
    max-height: 360px;
    min-height: 300px;
  }

  .slide-content {
    padding: 8px;
  }

  .content-wrapper {
    padding: 0 12px;
    max-width: 320px;
  }

  .slide-content h1 {
    margin-bottom: 0.4rem;
  }

  .slide-content p {
    margin-bottom: 0.7rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.7rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 180px;
    padding: 9px 14px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .hero-features {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .feature {
    font-size: 0.65rem;
    justify-content: center;
    gap: 4px;
  }

  .feature i {
    font-size: 0.8rem;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .prev-arrow {
    left: 6px;
  }

  .next-arrow {
    right: 6px;
  }
}

/* Small Mobile - 320px to 360px */
@media screen and (max-width: 360px) {
  .hero-section {
    height: 320px;
    max-height: 320px;
    min-height: 280px;
  }

  .slide-content {
    padding: 6px;
  }

  .content-wrapper {
    padding: 0 10px;
    max-width: 280px;
  }

  .slide-content h1 {
    margin-bottom: 0.3rem;
    line-height: 1.1;
  }

  .slide-content p {
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 160px;
    padding: 8px 12px;
    font-size: 0.7rem;
    gap: 3px;
    border-radius: 20px;
  }

  .hero-features {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .feature {
    font-size: 0.6rem;
    justify-content: center;
    gap: 3px;
  }

  .feature i {
    font-size: 0.7rem;
  }

  .nav-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
  }

  .prev-arrow {
    left: 4px;
  }

  .next-arrow {
    right: 4px;
  }

  .dot-indicators {
    bottom: 8px;
    gap: 4px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
  }

  .dot:hover {
    background: transparent;
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
    background: var(--orange);
  }

  .btn-secondary:hover {
    transform: none;
    background: transparent;
    color: var(--white);
  }

  /* Larger touch targets for mobile */
  .nav-arrow {
    min-width: 44px;
    min-height: 44px;
  }

  .dot {
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    transition: all 0.3s ease;
  }

  .dot.active::before {
    background: var(--orange);
    border-color: var(--orange);
  }
}

/* Landscape orientation for mobile devices */
@media screen and (max-height: 400px) and (orientation: landscape) {
  .hero-section {
    height: 300px;
    max-height: 300px;
    min-height: 250px;
  }

  .slide-content {
    padding: 5px;
  }

  .content-wrapper {
    max-width: 500px;
  }

  .slide-content h1 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.2rem;
  }

  .slide-content p {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    margin-bottom: 0.5rem;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 6px 12px;
    font-size: 0.7rem;
    min-width: 100px;
  }

  .hero-features {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature {
    font-size: 0.6rem;
  }

  .nav-arrow {
    width: 25px;
    height: 25px;
    font-size: 0.6rem;
  }

  .dot-indicators {
    bottom: 5px;
  }
}

/* Print styles */
@media print {
  .hero-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .nav-arrow,
  .dot-indicators {
    display: none;
  }

  .slide {
    position: static;
    opacity: 1;
  }

  .slide:not(.active) {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .slide-content {
    background: rgba(0, 0, 0, 0.9);
  }

  .btn-primary {
    border: 2px solid var(--orange);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }

  @keyframes slideUp {
    from,
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .nav-arrow:hover {
    transform: none;
  }
}
/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--light-navy) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--light-navy);
  margin-bottom: 16px;
  font-weight: bold;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 74, 98, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--light-navy));
  transition: left 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 74, 98, 0.15);
  border-color: var(--orange);
}

.service-card:hover::before {
  left: 0;
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--white);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

/* Service Content */
.service-card h3 {
  font-size: 1.5rem;
  color: var(--light-navy);
  margin-bottom: 16px;
  font-weight: bold;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Service Features */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  text-align: left;
}

.service-features span {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features i {
  color: var(--orange);
  font-size: 0.8rem;
  width: 12px;
}

/* Service Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.service-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.service-btn:hover {
  color: var(--orange-hover);
}

.service-btn:hover::after {
  width: 100%;
}

.service-btn:hover i {
  transform: translateX(4px);
}

/* Services CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--light-navy), #1a3a4a);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 116, 0, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.services-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: bold;
}

.services-cta p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 116, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--light-navy);
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .services-section {
    padding: 100px 0;
  }

  .services-grid {
    gap: 40px;
  }

  .service-card {
    padding: 50px 40px;
  }

  .services-cta {
    padding: 60px 50px;
  }
}

/* Standard Desktop - 1025px to 1440px */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    margin-bottom: 50px;
  }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 2rem;
  }

  .services-cta {
    padding: 40px 30px;
  }

  .cta-buttons {
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 0.95rem;
    min-width: 160px;
  }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  .services-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
  }

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .services-cta {
    padding: 35px 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .services-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .service-icon i {
    font-size: 1.6rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .service-features {
    margin-bottom: 20px;
    gap: 6px;
  }

  .service-features span {
    font-size: 0.85rem;
  }

  .service-btn {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .services-cta {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 0.85rem;
    min-width: unset;
  }
}

/* Extra Small Mobile - 320px and below */
@media screen and (max-width: 360px) {
  .services-section {
    padding: 35px 0;
  }

  .container {
    padding: 0 12px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }

  .service-icon i {
    font-size: 1.4rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-features span {
    font-size: 0.8rem;
  }

  .services-cta {
    padding: 25px 15px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 220px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(44, 74, 98, 0.1);
  }

  .service-card:hover .service-icon {
    transform: none;
  }

  .service-btn:hover {
    color: var(--orange);
  }

  .service-btn:hover i {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

  .service-icon {
    transition: none;
  }

  .service-btn,
  .btn-primary,
  .btn-secondary {
    transition: none;
  }

  @keyframes rotate {
    0%,
    100% {
      transform: rotate(0deg);
    }
  }
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--light-navy) 50%,
    var(--orange) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--light-navy);
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--light-navy));
  border-radius: 3px;
}

.section-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

/* Reason Card */
.reason-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px rgba(44, 74, 98, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--light-navy));
  transition: left 0.4s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(44, 74, 98, 0.15);
  border-color: rgba(255, 116, 0, 0.3);
}

.reason-card:hover::before {
  left: 0;
}

.reason-card.featured {
  background: linear-gradient(135deg, var(--light-navy) 0%, #1a3a4a 100%);
  color: var(--white);
  transform: scale(1.05);
}

.reason-card.featured .reason-content h3,
.reason-card.featured .reason-content p,
.reason-card.featured .feature-list li {
  color: var(--white);
}

.reason-card.featured::before {
  background: linear-gradient(90deg, var(--orange), #ff9500);
  left: 0;
}

/* Reason Icon */
.reason-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.2);
}

.reason-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 12px 30px rgba(255, 116, 0, 0.4);
}

/* Reason Content */
.reason-content h3 {
  font-size: 1.8rem;
  color: var(--light-navy);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.reason-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

.reason-content strong {
  color: var(--orange);
  font-weight: 700;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.feature-list i {
  color: var(--orange);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
}

/* Stats */
.stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--orange);
  line-height: 1;
}

.stat .label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  padding: 60px 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.trust-indicators::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 116, 0, 0.05) 0%,
    transparent 50%
  );
  animation: rotate 30s linear infinite;
}

.trust-header {
  text-align: center;
  margin-bottom: 50px;
}

.trust-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--light-navy);
  margin-bottom: 15px;
  font-weight: bold;
}

.trust-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.indicator {
  text-align: center;
  padding: 20px;
}

.indicator-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--light-navy), #1a3a4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.indicator-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.indicator:hover .indicator-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(44, 74, 98, 0.2);
}

.indicator h4 {
  font-size: 1.3rem;
  color: var(--light-navy);
  margin-bottom: 12px;
  font-weight: bold;
}

.indicator p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  margin-bottom: 80px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--light-navy);
  margin-bottom: 15px;
  font-weight: bold;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(44, 74, 98, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--orange);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 74, 98, 0.12);
}

.testimonial-content {
  margin-bottom: 25px;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h5 {
  font-size: 1.1rem;
  color: var(--light-navy);
  margin-bottom: 5px;
  font-weight: bold;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.8;
}

.rating {
  display: flex;
  gap: 3px;
}

.rating i {
  color: #ffc107;
  font-size: 1rem;
}

/* CTA Section */
.why-choose-cta {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-hover) 100%
  );
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.why-choose-cta::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 25s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.why-choose-cta h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 18px;
  font-weight: bold;
}

.why-choose-cta p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-2px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-feature i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Service Areas */
.service-areas {
  background: linear-gradient(135deg, var(--light-navy) 0%, #1a3a4a 100%);
  border-radius: 25px;
  padding: 60px 40px;
  color: var(--white);
}

.areas-header {
  text-align: center;
  margin-bottom: 50px;
}

.areas-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
  font-weight: bold;
}

.areas-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.area-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.area-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.area-card h4 i {
  color: var(--orange);
}

.area-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Animation Keyframes */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE DESIGN */

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .why-choose-us-section {
    padding: 120px 0;
  }

  .reasons-grid {
    gap: 50px;
    margin-bottom: 120px;
  }

  .reason-card {
    padding: 50px 40px;
  }
}

/* Standard Desktop - 1025px to 1440px */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .why-choose-us-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
  }

  .reason-card {
    padding: 35px 30px;
  }

  .reason-card.featured {
    transform: scale(1.02);
  }

  .trust-indicators {
    padding: 50px 30px;
    margin-bottom: 60px;
  }

  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-cta {
    padding: 50px 30px;
    margin-bottom: 60px;
  }

  .service-areas {
    padding: 50px 30px;
  }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  .why-choose-us-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .reason-card {
    padding: 30px 25px;
  }

  .reason-card.featured {
    transform: scale(1);
  }

  .reason-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }

  .reason-icon i {
    font-size: 2.2rem;
  }

  .reason-content h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .reason-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .stats {
    gap: 25px;
    justify-content: center;
  }

  .stat .number {
    font-size: 2rem;
  }

  .trust-indicators {
    padding: 40px 25px;
    margin-bottom: 50px;
  }

  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .cta-features {
    gap: 20px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .why-choose-us-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .reasons-grid {
    gap: 25px;
    margin-bottom: 50px;
  }

  .reason-card {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .reason-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .reason-icon i {
    font-size: 2rem;
  }

  .reason-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .reason-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .feature-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .stat .number {
    font-size: 1.8rem;
  }

  .trust-indicators {
    padding: 35px 20px;
    margin-bottom: 40px;
    border-radius: 20px;
  }

  .indicators-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .indicator-icon {
    width: 60px;
    height: 60px;
  }

  .indicator-icon i {
    font-size: 1.5rem;
  }

  .indicator h4 {
    font-size: 1.2rem;
  }

  .indicator p {
    font-size: 0.9rem;
  }

  .testimonials-section {
    margin-bottom: 60px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .why-choose-cta {
    padding: 40px 20px;
    margin-bottom: 60px;
    border-radius: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: unset;
  }

  .cta-features {
    flex-direction: column;
    gap: 12px;
  }

  .cta-feature {
    justify-content: center;
    font-size: 0.9rem;
  }

  .service-areas {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .area-card {
    padding: 20px;
  }

  .area-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .area-card p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile - 320px and below */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .why-choose-us-section {
    padding: 40px 0;
  }

  .reason-card {
    padding: 20px 15px;
  }

  .reason-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .reason-icon i {
    font-size: 1.8rem;
  }

  .reason-content h3 {
    font-size: 1.3rem;
  }

  .reason-content p {
    font-size: 0.9rem;
  }

  .trust-indicators {
    padding: 30px 15px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .why-choose-cta {
    padding: 35px 15px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 250px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-areas {
    padding: 35px 15px;
  }

  .area-card {
    padding: 18px 15px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .reason-card:hover {
    transform: none;
    box-shadow: 0 15px 40px rgba(44, 74, 98, 0.1);
  }

  .reason-card:hover .reason-icon {
    transform: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .area-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .reason-card,
  .reason-icon,
  .testimonial-card,
  .area-card,
  .btn-primary,
  .btn-secondary {
    transition: none;
  }

  @keyframes rotate {
    0%,
    100% {
      transform: rotate(0deg);
    }
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .reason-card {
    border: 2px solid var(--light-navy);
  }

  .reason-card.featured {
    border: 2px solid var(--orange);
  }

  .btn-primary,
  .btn-secondary {
    border: 2px solid currentColor;
  }
}
/* Quick Quote Form Section Styles */
.quote-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.quote-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--light-navy) 50%,
    var(--orange) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--light-navy);
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--light-navy));
  border-radius: 3px;
}

.section-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Quote Form Wrapper */
.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 80px;
}

/* Form Benefits */
.form-benefits {
  background: linear-gradient(135deg, var(--light-navy) 0%, #1a3a4a 100%);
  border-radius: 20px;
  padding: 40px 35px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-benefits::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 116, 0, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

.form-benefits h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.benefits-list {
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.benefit-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.benefit-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Quote Form Container */
.quote-form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 50px rgba(44, 74, 98, 0.1);
  border: 2px solid transparent;
  position: relative;
}

.quote-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--light-navy));
  border-radius: 20px 20px 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--light-navy);
  margin-bottom: 10px;
  font-weight: bold;
}

.form-header p {
  color: var(--text-dark);
  opacity: 0.8;
}

.required {
  color: var(--orange);
  font-weight: bold;
}

/* Form Messages */
.form-messages {
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.success-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #c3e6cb;
  color: #155724;
}

.error-message {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.success-message i,
.error-message i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.success-message h4,
.error-message h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* Form Styles */
.quote-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: var(--light-navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 116, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
}

.form-group.error .error-msg {
  display: block;
}

/* Form Section Headers */
.form-section {
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
}

.form-section h4 {
  color: var(--light-navy);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h4 i {
  color: var(--orange);
}

/* Checkbox Group */
.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-item:hover input ~ .checkmark {
  border-color: var(--orange);
}

.checkbox-item input:checked ~ .checkmark {
  background-color: var(--orange);
  border-color: var(--orange);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-item input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-item .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.form-submit {
  text-align: center;
  margin: 30px 0;
}

.submit-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 116, 0, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer p {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-footer i {
  color: var(--orange);
}

/* Quick Contact */
.quick-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h3 {
  font-size: 1.8rem;
  color: var(--light-navy);
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-header p {
  color: var(--text-dark);
  opacity: 0.9;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contact-item {
  background: var(--white);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(44, 74, 98, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 74, 98, 0.12);
  border-color: var(--orange);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info h4 {
  font-size: 1.1rem;
  color: var(--light-navy);
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-info a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--orange-hover);
}

.contact-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-top: 5px;
}

/* Animation Keyframes */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE DESIGN */

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .quote-form-section {
    padding: 120px 0;
  }

  .quote-form-wrapper {
    gap: 60px;
    margin-bottom: 100px;
  }

  .form-benefits {
    padding: 50px 40px;
  }

  .quote-form-container {
    padding: 50px 40px;
  }
}

/* Standard Desktop - 1025px to 1440px */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .quote-form-wrapper {
    gap: 40px;
  }

  .contact-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .quote-form-section {
    padding: 80px 0;
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .form-benefits {
    padding: 35px 30px;
  }

  .quote-form-container {
    padding: 35px 30px;
  }

  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  .quote-form-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 50px;
  }

  .form-benefits {
    padding: 30px 25px;
  }

  .quote-form-container {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .checkbox-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .submit-btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 35px;
  }

  .contact-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quick-contact {
    padding: 40px 25px;
  }
}

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .quote-form-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .quote-form-wrapper {
    /* Change to single column layout since benefits are hidden */
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }

  /* Hide the benefits section completely on mobile */
  .form-benefits {
    display: none !important;
  }

  /* Make form container full width since benefits are hidden */
  .quote-form-container {
    padding: 25px 20px;
    border-radius: 16px;
    width: 100%;
    max-width: none;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .checkbox-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkbox-item {
    font-size: 0.9rem;
    padding-left: 25px;
  }

  .checkmark {
    width: 18px;
    height: 18px;
  }

  .submit-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    min-width: unset;
  }

  .form-footer p {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
  }

  /* Contact section adjustments */
  .quick-contact {
    padding: 35px 20px;
    border-radius: 16px;
  }

  .contact-header h3 {
    font-size: 1.5rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 20px 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 1.3rem;
  }
}

/* Extra Small Mobile - 320px and below */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .quote-form-section {
    padding: 40px 0;
  }

  .quote-form-wrapper {
    gap: 0;
    margin-bottom: 30px;
  }

  /* Benefits remain hidden */
  .form-benefits {
    display: none !important;
  }

  .quote-form-container {
    padding: 20px 15px;
    border-radius: 16px;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .form-footer p {
    font-size: 0.75rem;
  }

  .quick-contact {
    padding: 30px 15px;
  }

  .contact-item {
    padding: 18px 12px;
  }

  .contact-header h3 {
    font-size: 1.3rem;
  }
}

/* Extra Small Mobile - 320px and below */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .quote-form-section {
    padding: 40px 0;
  }

  .form-benefits {
    padding: 20px 15px;
  }

  .quote-form-container {
    padding: 20px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .contact-item {
    padding: 18px 12px;
  }

  .quick-contact {
    padding: 30px 15px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .contact-item:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(44, 74, 98, 0.08);
  }

  .submit-btn:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
  }

  .checkbox-item:hover input ~ .checkmark {
    border-color: #ddd;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .contact-item,
  .submit-btn,
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: none;
  }

  @keyframes rotate {
    0%,
    100% {
      transform: rotate(0deg);
    }
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .quote-form-container {
    border: 2px solid var(--light-navy);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 2px solid var(--text-dark);
  }

  .submit-btn {
    border: 2px solid var(--orange);
  }
}

/* Service Areas Section Base Styles */
.service-areas-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--background-light) 25%,
    var(--white) 75%,
    var(--background-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.service-areas-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--light-navy) 50%,
    var(--orange) 100%
  );
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--light-navy);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--gradient-orange);
  border-radius: 3px;
}

.section-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Coverage Statistics Styles */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  color: var(--text-dark); /* Fix text visibility */
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
  border-color: var(--orange);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 116, 0, 0.2);
}

.stat-icon i {
  font-size: 2.2rem;
  color: var(--white);
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotateY(360deg);
  box-shadow: 0 12px 35px rgba(255, 116, 0, 0.4);
}

.stat-content h3 {
  font-size: 2.2rem;
  color: var(--light-navy);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1;
}

.stat-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.8;
  font-weight: 500;
}

/* Areas Grid Styles */
.areas-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 100px;
}

/* Area Category Styles */
.area-category {
  background: var(--white);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px var(--shadow-light);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark); /* Fix text visibility */
}

.area-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 6px;
  background: var(--gradient-orange);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-category:hover {
  box-shadow: 0 25px 60px var(--shadow-medium);
  transform: translateY(-5px);
}

.area-category:hover::before {
  left: 0;
}

.area-category.featured {
  background: var(--gradient-navy);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 20px 60px var(--shadow-dark);
}

.area-category.featured::before {
  background: linear-gradient(90deg, var(--orange), #ff9500);
  left: 0;
}

.area-category.featured .category-header h3,
.area-category.featured .category-header p,
.area-category.featured .city-info h4,
.area-category.featured .city-list span {
  color: var(--white);
}

.area-category.featured .headquarters {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(255, 116, 0, 0.4) !important;
}

/* Category Header Styles */
.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 116, 0, 0.3);
}

.category-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.area-category:hover .category-icon {
  transform: scale(1.2) rotateY(360deg);
  box-shadow: 0 15px 40px rgba(255, 116, 0, 0.5);
}

.category-header h3 {
  font-size: 2rem;
  color: var(--light-navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.category-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.9;
  line-height: 1.5;
}

/* Cities Grid Styles */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.city-card {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  color: var(--text-dark); /* Fix text visibility */
}

.area-category.featured .city-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-light);
}

.city-info h4 {
  font-size: 1.4rem;
  color: var(--light-navy);
  margin-bottom: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-info h4::before {
  content: "📍";
  font-size: 1.1rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list span {
  background: var(--white);
  color: var(--light-navy);
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  font-weight: 500;
}

.city-list span:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 116, 0, 0.3);
}

.headquarters {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255, 116, 0, 0.3) !important;
}

/* Interactive Map Section */
.interactive-map-section {
  background: linear-gradient(
    135deg,
    var(--background-light) 0%,
    var(--white) 100%
  );
  border-radius: 25px;
  padding: 60px 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.interactive-map-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 116, 0, 0.05) 0%,
    transparent 50%
  );
  animation: rotate 30s linear infinite;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.map-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--light-navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.map-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.india-map {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px var(--shadow-light);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 500px;
}

.region {
  background: var(--light-navy);
  color: var(--white);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 600;
}

.region:hover {
  background: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 116, 0, 0.4);
}

.region.featured {
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(255, 116, 0, 0.3);
}

.region i {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.region span {
  font-size: 1rem;
  font-weight: 600;
}

.map-details {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px var(--shadow-light);
  height: fit-content;
  color: var(--text-dark); /* Fix text visibility */
}

.region-info h4 {
  color: var(--light-navy);
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 700;
}

.region-info p {
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
  font-size: 1rem;
}

/* Regional Contacts */
.regional-contacts {
  margin-bottom: 80px;
}

.contacts-header {
  text-align: center;
  margin-bottom: 60px;
}

.contacts-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--light-navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.contacts-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.contact-region {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  color: var(--text-dark); /* Fix text visibility */
}

.contact-region::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-orange);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-region:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--shadow-medium);
  border-color: var(--orange);
}

.contact-region:hover::before {
  opacity: 1;
}

.contact-region.featured {
  background: var(--gradient-navy);
  color: var(--white);
  transform: scale(1.02);
}

.contact-region.featured::before {
  background: linear-gradient(90deg, var(--orange), #ff9500);
  opacity: 1;
}

.contact-region.featured .region-header h4,
.contact-region.featured .contact-details p,
.contact-region.featured .contact-details a {
  color: var(--white);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.region-header i {
  font-size: 1.6rem;
  color: var(--orange);
}

.region-header h4 {
  font-size: 1.3rem;
  color: var(--light-navy);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.contact-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-details i {
  width: 18px;
  color: var(--orange);
  font-size: 1rem;
}

.contact-details a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--orange-hover);
}

.coverage {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
  line-height: 1.5;
}

.contact-region.featured .coverage {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.areas-cta {
  background: var(--gradient-orange);
  border-radius: 25px;
  padding: 70px 50px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.areas-cta::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 25s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.areas-cta h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.areas-cta p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 220px;
  justify-content: center;
}

.btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-3px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.cta-features .feature i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Animation Keyframes */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE DESIGN */

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .service-areas-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .coverage-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 25px 20px;
    color: var(--text-dark);
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .stat-icon i {
    font-size: 1.8rem;
  }

  .stat-content h3 {
    font-size: 1.6rem;
    color: var(--light-navy);
  }

  .stat-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
  }

  .areas-grid {
    gap: 40px;
    margin-bottom: 50px;
  }

  .area-category {
    padding: 30px 20px;
    border-radius: 20px;
    color: var(--text-dark);
  }

  .category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .category-icon i {
    font-size: 2rem;
  }

  .category-header h3 {
    font-size: 1.5rem;
    color: var(--light-navy);
  }

  .category-header p {
    color: var(--text-dark);
  }

  .cities-grid {
    gap: 20px;
  }

  .city-card {
    padding: 20px 18px;
    color: var(--text-dark);
  }

  .city-info h4 {
    font-size: 1.2rem;
    color: var(--light-navy);
  }

  .city-list span {
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--light-navy);
    background: var(--white);
  }

  .map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .india-map {
    padding: 25px;
    min-height: 350px;
  }

  .map-regions {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .region {
    padding: 20px 15px;
  }

  .map-details {
    color: var(--text-dark);
  }

  .region-info h4 {
    color: var(--light-navy);
  }

  .region-info p {
    color: var(--text-dark);
  }

  .interactive-map-section {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .contacts-grid {
    gap: 25px;
  }

  .contact-region {
    padding: 25px 20px;
    color: var(--text-dark);
  }

  .region-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .region-header h4 {
    font-size: 1.1rem;
    color: var(--light-navy);
  }

  .contact-details p {
    color: var(--text-dark);
  }

  .areas-cta {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    font-size: 1rem;
    min-width: unset;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

  .cta-features .feature {
    justify-content: center;
    font-size: 0.95rem;
  }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  .service-areas-section {
    padding: 70px 0;
  }

  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
  }

  .areas-grid {
    gap: 50px;
    margin-bottom: 70px;
  }

  .area-category {
    padding: 40px 30px;
  }

  .area-category.featured {
    transform: scale(1.01);
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .map-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contacts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .cta-buttons {
    gap: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    min-width: 200px;
  }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .service-areas-section {
    padding: 80px 0;
  }

  .coverage-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .areas-grid {
    gap: 60px;
    margin-bottom: 80px;
  }

  .map-container {
    grid-template-columns: 3fr 2fr;
    gap: 35px;
  }

  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .service-areas-section {
    padding: 120px 0;
  }

  .areas-grid {
    gap: 80px;
    margin-bottom: 120px;
  }

  .area-category {
    padding: 60px 50px;
  }

  .interactive-map-section {
    padding: 80px 60px;
  }

  .areas-cta {
    padding: 80px 60px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .stat-card:hover,
  .area-category:hover,
  .city-card:hover,
  .contact-region:hover {
    transform: none;
    box-shadow: inherit;
  }

  .stat-card:hover .stat-icon,
  .area-category:hover .category-icon {
    transform: none;
  }

  .region:hover {
    transform: none;
    background: var(--light-navy);
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .area-category,
  .stat-card,
  .contact-region {
    border: 2px solid var(--light-navy);
  }

  .area-category.featured {
    border: 2px solid var(--orange);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .area-category,
  .city-card,
  .region,
  .contact-region,
  .btn-primary,
  .btn-secondary {
    transition: none;
  }

  .stat-icon,
  .category-icon {
    transition: none;
  }

  @keyframes rotate {
    0%,
    100% {
      transform: rotate(0deg);
    }
  }
}
/* Customer Reviews Section Styles */
.customer-reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--background-light) 50%, var(--white) 100%);
    position: relative;
    color: var(--text-dark);
}

.customer-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-navy) 50%, var(--orange) 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--light-navy);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.section-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Rating Summary */
.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-light);
    margin-bottom: 80px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.rating-summary:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 15px;
}

.rating-stars {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Leave Review Button */
.leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leave-review-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 116, 0, 0.3);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar .stars {
    min-width: 60px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.rating-bar .stars i {
    color: var(--orange);
    font-size: 0.8rem;
    margin-left: 5px;
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--background-light);
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.percentage {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Review Card - Updated without avatar */
.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transition: left 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--orange);
}

.review-card:hover::before {
    left: 0;
}

.review-card:focus {
    outline: none;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--orange);
}

/* Review Header - Updated without avatar */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-navy);
    margin-bottom: 5px;
    line-height: 1.2;
}

.customer-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 5px;
}

.customer-location i {
    color: var(--orange);
    font-size: 0.8rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.review-rating {
    flex-shrink: 0;
}

.review-rating .stars {
    color: var(--orange);
    font-size: 1.1rem;
}

/* Review Content */
.review-content {
    margin-bottom: 20px;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.service-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-type i {
    color: var(--orange);
    font-size: 0.8rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
}

.verified-badge i {
    font-size: 0.9rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-bottom: 80px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.load-more-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

/* Reviews CTA */
.reviews-cta {
    background: var(--gradient-navy);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 25s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.reviews-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-cta p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Review Modal Styles */
.review-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.review-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--light-navy);
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--orange);
    transform: scale(1.1);
}

/* Review Form Styles */
.review-form {
    padding: 0 30px 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--light-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 116, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    margin-top: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--orange);
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE DESIGN */

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .customer-reviews-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-stars {
        font-size: 1.3rem;
    }
    
    .leave-review-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .customer-name {
        font-size: 1.1rem;
    }
    
    .review-title {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .load-more-container {
        margin-bottom: 50px;
    }
    
    .load-more-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .reviews-cta {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
        min-width: unset;
    }
    
    /* Modal responsive */
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .review-form {
        padding: 0 20px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rating-input {
        justify-content: center;
    }
    
    .submit-review-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .customer-reviews-section {
        padding: 70px 0;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
        margin-bottom: 60px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .reviews-cta {
        padding: 50px 30px;
    }
    
    .cta-buttons {
        gap: 18px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        min-width: 180px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .customer-reviews-section {
        padding: 80px 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .customer-reviews-section {
        padding: 120px 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .rating-summary {
        padding: 50px 40px;
        margin-bottom: 100px;
    }
    
    .reviews-cta {
        padding: 80px 60px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .review-card:hover {
        transform: none;
        box-shadow: 0 10px 30px var(--shadow-light);
        border-color: transparent;
    }
    
    .rating-summary:hover {
        border-color: transparent;
        box-shadow: 0 15px 40px var(--shadow-light);
    }
    
    .load-more-btn:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .leave-review-btn:hover,
    .submit-review-btn:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .review-card,
    .rating-summary,
    .modal-content {
        border: 2px solid var(--light-navy);
    }
    
    .btn-primary,
    .btn-secondary,
    .leave-review-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .review-card,
    .rating-summary,
    .load-more-btn,
    .btn-primary,
    .btn-secondary,
    .leave-review-btn,
    .submit-review-btn {
        transition: none;
    }
    
    .bar .fill {
        transition: none;
    }
    
    .review-modal,
    .modal-content {
        animation: none;
    }
    
    @keyframes rotate {
        0%, 100% { transform: rotate(0deg); }
    }
}
/* About Us Section Styles */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--background-light) 30%, var(--white) 70%, var(--background-light) 100%);
    position: relative;
    color: var(--text-dark);
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-navy) 50%, var(--orange) 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--light-navy);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.section-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

/* Company Story */
.about-story {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-story:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--shadow-medium);
    transform: translateY(-5px);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.story-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.about-story:hover .story-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.3);
}

.story-content h3 {
    font-size: 2rem;
    color: var(--light-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    color: var(--orange);
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.15);
    background: var(--gradient-orange);
}

.mission-card h4,
.vision-card h4 {
    font-size: 1.4rem;
    color: var(--light-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.9;
}

/* Key Highlights */
.key-highlights {
    margin-bottom: 80px;
}

.key-highlights h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--light-navy);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 116, 0, 0.3);
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--light-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    opacity: 0.9;
}

/* Contact Information Section */
.contact-info-section {
    margin-bottom: 80px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--light-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.contact-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.contact-card.featured {
    background: var(--gradient-navy);
    color: var(--white);
    transform: scale(1.02);
}

.contact-card.featured .contact-icon {
    background: var(--orange);
}

.contact-card.featured h4,
.contact-card.featured .detail-text,
.contact-card.featured .availability {
    color: var(--white);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 116, 0, 0.3);
}

.contact-info h4 {
    font-size: 1.2rem;
    color: var(--light-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    text-align: left;
}

.contact-detail i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.detail-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: var(--orange-hover);
}

.availability {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* About CTA */
.about-cta {
    background: var(--gradient-orange);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 25s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-cta p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Animation Keyframes */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE DESIGN */

/* Mobile - 320px to 480px */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .about-us-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .about-content-grid {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-story {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .story-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .story-icon i {
        font-size: 2rem;
    }
    
    .story-content h3 {
        font-size: 1.6rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .mission-vision {
        gap: 25px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .key-highlights {
        margin-bottom: 60px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .highlight-item {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.3rem;
    }
    
    .contact-info-section {
        margin-bottom: 60px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.contact-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 25px;
}

    .contact-card.featured {
        transform: scale(1);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .about-cta {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
        min-width: unset;
    }
}

/* Tablet Portrait - 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .about-us-section {
        padding: 70px 0;
    }
    
    .about-content-grid {
        gap: 50px;
        margin-bottom: 80px;
    }
    
    .about-story {
        flex-direction: column;
        padding: 35px 25px;
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-cta {
        padding: 50px 30px;
    }
    
    .cta-buttons {
        gap: 18px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        min-width: 180px;
    }
}

/* Tablet Landscape - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-us-section {
        padding: 80px 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .about-us-section {
        padding: 120px 0;
    }
    
    .about-content-grid {
        gap: 80px;
        margin-bottom: 120px;
    }
    
    .about-story {
        padding: 50px 40px;
    }
    
    .about-cta {
        padding: 80px 60px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-story:hover,
    .mission-card:hover,
    .vision-card:hover,
    .highlight-item:hover,
    .contact-card:hover {
        transform: none;
        box-shadow: inherit;
        border-color: transparent;
    }
    
    .story-icon,
    .card-icon,
    .highlight-icon,
    .contact-icon {
        transform: none !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .about-story,
    .mission-card,
    .vision-card,
    .highlight-item,
    .contact-card {
        border: 2px solid var(--light-navy);
    }
    
    .contact-card.featured {
        border: 2px solid var(--orange);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .about-story,
    .mission-card,
    .vision-card,
    .highlight-item,
    .contact-card,
    .btn-primary,
    .btn-secondary {
        transition: none;
    }
    
    .story-icon,
    .card-icon,
    .highlight-icon,
    .contact-icon {
        transition: none;
    }
    
    @keyframes rotate {
        0%, 100% { transform: rotate(0deg); }
    }
}

/* Contact Section - Perfect Regenerated Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 50%, var(--white) 100%);
    position: relative;
    color: var(--text-dark);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-orange);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--light-navy);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    line-height: 1.1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.section-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Contact Grid */
.main-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Info Panel */
.contact-info-panel {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px var(--shadow-light);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,116,0,0.03) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.contact-info-panel:hover {
    border-color: var(--orange);
    box-shadow: 0 30px 80px var(--shadow-medium);
    transform: translateY(-8px);
}

.contact-info-panel:hover::before {
    transform: scale(1.1);
}

.panel-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.panel-header h3 {
    font-size: 2.2rem;
    color: var(--light-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.panel-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: rgba(255, 116, 0, 0.05);
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.2);
}

.method-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.contact-method:hover .method-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 12px 35px rgba(255, 116, 0, 0.4);
}

.method-details h4 {
    font-size: 1.3rem;
    color: var(--light-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.contact-link:hover {
    color: var(--orange-hover);
    transform: scale(1.05);
}

.office-address {
    font-style: normal;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 5px;
}

.availability {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    max-width: 150px;
}

.action-btn.primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 116, 0, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 116, 0, 0.4);
}

.action-btn.secondary {
    background: var(--white);
    color: var(--orange);
    border: 2px solid var(--orange);
}

.action-btn.secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Interaction Panel */
.contact-interaction-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Map Section */
.map-section {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.map-section:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--shadow-medium);
    transform: translateY(-5px);
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
}

.map-header h3 {
    font-size: 1.8rem;
    color: var(--light-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.map-header p {
    color: var(--text-dark);
    opacity: 0.8;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

.map-actions {
    text-align: center;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 116, 0, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-section:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--light-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 18px 15px 8px 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 116, 0, 0.1);
}

.input-group label {
    position: absolute;
    top: 18px;
    left: 15px;
    color: var(--text-dark);
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:not([value=""]) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 18px;
}

.submit-button {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 116, 0, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-section h3 {
    font-size: 1.8rem;
    color: var(--light-navy);
    margin-bottom: 30px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.linkedin { background: #0077b5; }
.social-icon.youtube { background: #ff0000; }

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-icon i {
    font-size: 1.3rem;
}

/* Final CTA */
.final-cta {
    background: var(--gradient-navy);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 116, 0, 0.4);
}

/* Animation Keyframes */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE DESIGN */

/* Mobile - 320px to 768px */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .main-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .contact-info-panel {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .panel-header h3 {
        font-size: 1.8rem;
    }
    
.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    
    .contact-method:hover {
        transform: translateY(-5px);
    }
    
    .method-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
    }
    
    .method-icon i {
        font-size: 1.4rem;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .action-btn {
        max-width: none;
        padding: 12px 20px;
    }
    
    .contact-interaction-panel {
        gap: 30px;
    }
    
    .map-section,
    .contact-form-section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 15px 12px 6px 12px;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .bottom-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .final-cta {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .final-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Tablet - 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .main-contact-grid {
        gap: 50px;
    }
    
    .contact-info-panel {
        padding: 45px 35px;
    }
    
    .bottom-section {
        gap: 50px;
    }
}

/* Large Desktop - 1441px and up */
@media screen and (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .contact-section {
        padding: 120px 0;
    }
    
    .main-contact-grid {
        gap: 80px;
        margin-bottom: 100px;
    }
    
    .contact-info-panel {
        padding: 60px 50px;
    }
    
    .final-cta {
        padding: 60px 50px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .contact-info-panel,
    .map-section,
    .contact-form-section {
        border: 3px solid var(--light-navy);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .contact-info-panel,
    .map-section,
    .contact-form-section,
    .contact-method,
    .method-icon,
    .action-btn,
    .submit-button,
    .social-icon,
    .cta-button {
        transition: none;
        animation: none;
    }
    
    @keyframes rotate {
        0%, 100% { transform: rotate(0deg); }
    }
}

/* Our Clients Section */
.our-clients-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--background-light) 50%, var(--white) 100%);
    color: var(--text-dark);
    position: relative;
}

.our-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-orange);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--light-navy);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Client Stats */
.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-navy);
    font-weight: 600;
}

/* Logo Slider Section */
.logo-slider-section {
    margin-bottom: 60px;
}

.logo-slider-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--light-navy);
    margin-bottom: 40px;
    font-weight: 700;
}

.slider-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 15px 40px var(--shadow-light);
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

/* Horizontal Logo Slider */
.logo-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 140px;
    text-align: center;
}

.client-logo:hover {
    background: var(--background-light);
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(70%) brightness(0.9);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}

.client-logo p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 116, 0, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.4);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Progress Bar */
.slider-progress {
    width: 100%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-orange);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Clients CTA */
.clients-cta {
    background: var(--gradient-navy);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.clients-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.clients-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.clients-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Horizontal Slider */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .our-clients-section {
        padding: 60px 0;
    }
    
    .client-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .slider-container {
        padding: 30px 20px;
    }
    
    .client-logo {
        width: 120px;
        gap: 12px;
        padding: 15px;
    }
    
    .client-logo img {
        max-width: 80px;
        max-height: 50px;
    }
    
    .client-logo p {
        font-size: 0.8rem;
    }
    
    .logo-slider {
        gap: 25px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .clients-cta {
        padding: 40px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .client-logo {
        width: 100px;
        gap: 10px;
        padding: 12px;
    }
    
    .client-logo img {
        max-width: 70px;
        max-height: 45px;
    }
    
    .logo-slider {
        gap: 20px;
    }
    
    .slider-container {
        padding: 25px 15px;
    }
}

/* Large screens - show more logos */
@media screen and (min-width: 1200px) {
    .client-logo {
        width: 160px;
    }
    
    .client-logo img {
        max-width: 120px;
        max-height: 70px;
    }
    
    .logo-slider {
        gap: 50px;
    }
}
/* Footer Section - Complete Repaired Version */
.footer-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    font-family: inherit;
    border-top: 5px solid var(--orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 2fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #333333;
    align-items: start;
}

/* Company Info Column */
.company-info {
    padding-right: 20px;
}

.footer-logo h3 {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.company-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.company-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 116, 0, 0.1);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--orange);
    background: rgba(255, 116, 0, 0.2);
}

.stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.85rem;
    color: #d0d0d0;
    font-weight: 500;
}

/* Footer Column Headers */
.footer-column h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.footer-list a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-list a:hover {
    color: var(--orange);
    padding-left: 20px;
}

.footer-list a:hover::before {
    transform: translateX(5px);
}

/* Office Info */
.office-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-details h5 {
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.office-details p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link,
.email-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.contact-link:hover,
.email-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.contact-link i,
.email-link i {
    font-size: 0.9rem;
    width: 15px;
    color: var(--orange);
}

/* Working Hours Column - REPAIRED */
.hours-column {
    min-width: 220px;
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Hours List - REPAIRED */
.hours-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row:hover {
    background: rgba(255, 116, 0, 0.1);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 6px;
}

.hour-row.weekend {
    opacity: 0.7;
}

.hour-row.weekend .hours {
    color: #ff6b6b;
    font-weight: 600;
}

.hour-row.today {
    background: rgba(255, 116, 0, 0.15);
    border-left: 3px solid var(--orange);
    padding-left: 15px;
    margin-left: -5px;
    border-radius: 0 6px 6px 0;
}

.day {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 600;
    min-width: 80px;
    text-align: left;
}

.hours {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

/* Current Time Box - REPAIRED */
.current-time-box {
    background: var(--gradient-orange);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 116, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.current-time-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.current-time {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.timezone {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    font-size: 0.95rem;
    color: #d0d0d0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* Fixed Get Quote Button */
.get-quote-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.quote-button {
    background: var(--gradient-orange);
    color: #ffffff;
    padding: 20px 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.quote-button:hover {
    background: var(--orange-hover);
    padding-right: 18px;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.4);
}

.quote-button i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Animation */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse animation for today's row */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 116, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 116, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 116, 0, 0); }
}

/* Business Status Styles */
.business-status {
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
}

.status-indicator.open .status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.status-indicator.closed .status-dot {
    width: 8px;
    height: 8px;
    background: #f44336;
    border-radius: 50%;
}

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.next-open {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .hours-column {
        grid-column: span 1;
    }
}

@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .company-info {
        grid-column: span 2;
    }
    
    .company-stats {
        justify-content: center;
        gap: 60px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .company-info {
        grid-column: span 1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .company-stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .office-info {
        gap: 25px;
    }
    
    /* Working Hours Mobile - REPAIRED */
    .hours-column {
        min-width: unset;
        width: 100%;
    }
    
    .hours-container {
        gap: 20px;
    }
    
    .hours-list {
        padding: 15px;
    }
    
    .hour-row {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .day {
        min-width: 70px;
        font-size: 0.85rem;
    }
    
    .hours {
        font-size: 0.85rem;
    }
    
    .current-time-box {
        padding: 15px;
    }
    
    .current-time {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
    
    .timezone {
        font-size: 0.65rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 0;
    }
    
    .footer-bottom-links {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .get-quote-fixed {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        text-align: center;
        margin-top: 30px;
        background: #333333;
        padding: 20px 0;
    }
    
    .quote-button {
        writing-mode: horizontal-tb;
        text-orientation: unset;
        flex-direction: row;
        border-radius: 25px;
        padding: 15px 30px;
        display: inline-flex;
        position: relative;
    }
}

@media screen and (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    /* Working Hours Mobile Small - REPAIRED */
    .hour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    
    .day {
        min-width: unset;
        color: var(--orange);
        font-weight: 700;
    }
    
    .hours {
        text-align: left;
        padding-left: 10px;
    }
    
    .current-time-box {
        padding: 12px;
    }
    
    .current-time {
        font-size: 1.1rem;
    }
    
    .office-details p {
        font-size: 0.85rem;
    }
    
    .contact-link,
    .email-link {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Large screens optimization */
@media screen and (min-width: 1200px) {
    .hours-column {
        min-width: 240px;
    }
    
    .hours-list {
        padding: 25px;
    }
    
    .hour-row {
        padding: 12px 0;
    }
    
    .day {
        min-width: 90px;
        font-size: 0.95rem;
    }
    
    .hours {
        font-size: 0.95rem;
    }
    
    .current-time-box {
        padding: 25px;
    }
    
    .current-time {
        font-size: 1.5rem;
    }
}

/* Extra large screens */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .footer-content {
        gap: 60px;
        padding-bottom: 60px;
    }
    
    .company-stats {
        gap: 50px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .hour-row,
    .current-time-box::before,
    .stat {
        transition: none;
        animation: none;
    }
    
    @keyframes rotate {
        0%, 100% { transform: rotate(0deg); }
    }
    
    @keyframes pulse {
        0%, 100% { box-shadow: none; }
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .footer-section {
        border-top: 3px solid var(--orange);
    }
    
    .hours-list {
        border: 2px solid #ffffff;
    }
    
    .hour-row {
        border-bottom-color: #ffffff;
    }
    
    .current-time-box {
        border: 2px solid #ffffff;
    }
    
    .stat {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    .get-quote-fixed {
        display: none;
    }
    
    .footer-section {
        background: white;
        color: black;
    }
}
