/* ============================================
   AKN Techs - Premium Technical Services Website
   Dubai, UAE
   ============================================ */

/* CSS Variables - Theme Colors (Red & Black) */
:root {
  --primary: #dc3545;
  --primary-dark: #c41e3a;
  --secondary: #e74c3c;
  --accent: #ff4757;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

/* Top Bar */
.top-bar {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
}

.badge-24-7 {
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 120px;
  
  
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: 0 5px 20px var(--shadow-lg);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 24px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

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

.btn-secondary:hover {
  background: #0099b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

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

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

.btn-whatsapp {
  background: #25d366;
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero.bg-abtimage {
  background: url('../img/BG/BG_aboutpage.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero.bg-image {
  background: url('../img/BG/BG Hero_Service.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero.pj-image {
  background: url('../img/BG/BG_project.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero.service-image {
  background: url('../img/BG/BG\ Hero_Service.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.2;
  z-index: 2;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  text-align: left;
  padding-left: 5rem;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.6;
  max-width: 80%;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
  align-items: flex-start;
}

/* Trust Row */
.trust-row {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.trust-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
  border-color: var(--primary);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.trust-item:hover .trust-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
}

.trust-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-wrapper svg {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.trust-item h4 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-dark);
  font-weight: 700;
  transition: color 0.3s ease;
}

.trust-item:hover h4 {
  color: var(--primary);
}

.trust-item p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.section-header-left {
  max-width: 700px;
  margin: 0 0 1.5rem;
  text-align: left;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Service Cards */
/* AC Services Section */
.ac-services-section {
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
}

.ac-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

/* Services Page Modern Design */
.services-page-section {
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 4rem 0;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.ac-featured-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 10px 40px rgba(220, 53, 69, 0.2);
}

.ac-banner-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ac-banner-icon {
  font-size: 3rem;
  line-height: 1;
}

.ac-banner-text {
  flex: 1;
  min-width: 250px;
}

.ac-banner-text h3 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ac-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.services-filter-wrapper {
  margin: 3rem 0 2.5rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(220, 53, 69, 0.2);
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

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

.filter-btn.active::before,
.filter-btn:hover::before {
  left: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  min-height: 200px; /* Prevent layout shift */
}

.services-grid-modern {
  gap: 2rem;
}

/* Modern Service Card Design */
.service-card-modern {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(220, 53, 69, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  height: 100%;
  min-height: 450px;
}

.services-grid-modern {
  align-items: stretch;
}

.services-grid-modern .service-card-modern {
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(220, 53, 69, 0.25);
  border-color: var(--primary);
}

.service-card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  z-index: 2;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(220, 53, 69, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
  z-index: 1;
}

.service-card-header {
  padding: 2rem 2rem 1rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.service-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.service-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.service-card-body {
  padding: 0 2rem 1.5rem;
  flex-grow: 1;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

.service-image-placeholder {
  width: 100%;
  height: 220px;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 53, 69, 0.1);
  transition: transform 0.4s ease;
}

.service-card-modern .service-image-placeholder {
  margin-bottom: 0;
  border-radius: 0;
  height: 200px;
  border: none;
}

.service-card-modern:hover .service-image-placeholder {
  transform: scale(1.05);
}

.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card-modern:hover .service-image-placeholder img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-modern .service-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
}

.service-card-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-card-modern .service-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.service-card-content p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-card-modern .service-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  min-height: 60px;
  flex-basis: auto;
}

.service-card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  min-width: 140px;
  padding: 0.75rem 1.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  align-self: flex-start;
}

.service-card-btn svg {
  transition: transform 0.3s ease;
}

.service-card-btn:hover svg {
  transform: translateX(4px);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.service-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.service-card .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.service-card:hover .btn {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

/* Other Services Row */
.other-services {
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}

.other-services-scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.other-services-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: stretch;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.other-services-row:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.other-service-item {
  background: var(--bg-white);
  padding: 0;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 53, 69, 0.1);
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.service-image-wrapper {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.service-image-placeholder svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  opacity: 0.5;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: opacity 0.3s ease;
}

.other-service-item:hover .service-image {
  transform: scale(1.1);
}

.other-service-item:hover .service-overlay {
  opacity: 0.5;
}

.other-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.other-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.other-service-item:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px 0 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
}

.other-service-item:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.other-service-item svg {
  width: 35px;
  height: 35px;
  fill: var(--primary);
  transition: all 0.3s ease;
}

.other-service-item:hover svg {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.other-service-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
  padding: 0 1rem;
  transition: color 0.3s ease;
}

.other-service-item:hover h4 {
  color: var(--primary);
}

/* Why Choose Us */
.why-choose {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.feature-icon {
  width: 45px;
  height: 45px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h4 {
  color: var(--primary);
}

.feature-content p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* How It Works - Modern Minimalist Design */
.how-it-works {
  background: var(--bg-light);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
}

.steps-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  padding: 3rem 0;
}

.step-modern {
  position: relative;
  padding-left: 4rem;
  transition: all 0.4s ease;
}

.step-modern::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(220, 53, 69, 0.2) 100%);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.step-modern:hover::before {
  width: 6px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--text-dark) 100%);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

.step-modern:hover {
  transform: translateX(10px);
}

.step-modern-number {
  position: absolute;
  left: -1.5rem;
  top: 0;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(220, 53, 69, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 0;
}

.step-modern:hover .step-modern-number {
  color: rgba(220, 53, 69, 0.2);
  transform: scale(1.1);
}

.step-modern-content {
  position: relative;
  z-index: 1;
}

.step-modern-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.step-modern:hover .step-modern-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.step-modern-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.step-modern:hover .step-modern-icon svg {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.step-modern-content h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.step-modern:hover .step-modern-content h4 {
  color: var(--primary);
}

.step-modern-content p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* Testimonials */
.testimonials {
  background: var(--bg-white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  
  
}

.testimonial-content {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.5rem;
}

.testimonial-info h5 {
  margin: 0;
  font-size: 1.125rem;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* Projects */
.projects {
  background: var(--bg-light);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Service Filter States */
.service-item {
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  display: block;
}

.service-item.filter-hidden {
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

.service-item.filter-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  pointer-events: auto;
  height: auto;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, height 0.4s ease;
}

.project-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-lg);
}

.project-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.project-content {
  padding: 1.5rem;
}

.project-content h4 {
  margin-bottom: 0.5rem;
}

.project-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Service Areas */
.service-areas {
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.area-item {
  background: var(--bg-white);
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.area-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.area-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.area-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.area-item:hover::before {
  transform: scaleX(1);
}

.area-item:hover::after {
  opacity: 1;
}

.area-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.area-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.area-item:hover .area-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

.area-item:hover .area-icon svg {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.area-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  flex: 1;
}

.area-item:hover h4 {
  color: var(--primary);
}

/* Redesigned About Page Sections */

/* Who We Are Section */
.who-we-are {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.about-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(26, 26, 26, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(220, 53, 69, 0.2);
  overflow: hidden;
  position: relative;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image-placeholder:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.about-image-placeholder p {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 0;
  font-weight: 500;
  z-index: 2;
}



/* Our Mission Section */
.our-mission {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.our-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--text-dark) 0%, var(--primary) 100%);
}

.mission-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.05) 0%, rgba(220, 53, 69, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(26, 26, 26, 0.2);
  overflow: hidden;
  position: relative;
}

.mission-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.mission-image-placeholder:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.mission-image-placeholder p {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 0;
  font-weight: 500;
  z-index: 2;
}



.mission-text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.feature-icon {
  width: 45px;
  height: 45px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h4 {
  color: var(--primary);
}

.feature-content p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Our Service Areas Section */
.service-areas-section {
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.service-areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--text-dark) 0%, var(--primary) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.area-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.area-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.area-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover::after {
  opacity: 1;
}

.area-icon-wrapper {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.area-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.area-card:hover .area-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

.area-card:hover .area-icon {
  fill: var(--bg-white);
  transform: scale(1.1);
}

.area-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.area-card:hover h3 {
  color: var(--primary);
}

/* Section Header Enhancements */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--text-dark) 100%);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: 1rem;
  font-weight: 500;
}

/* Maintenance Features Grid */
.maintenance-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Process Grid for AC Repair Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-step::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover::after {
  opacity: 1;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.process-step:hover h3 {
  color: var(--primary);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-icon svg {
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon svg {
  transform: scale(1.1);
}

/* Benefits Grid for Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.1);
}

/* Ideal For Grid */
.ideal-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ideal-for-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ideal-for-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ideal-for-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ideal-for-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
  border-color: var(--primary);
}

.ideal-for-card:hover::before {
  transform: scaleX(1);
}

.ideal-for-card:hover::after {
  opacity: 1;
}

.ideal-for-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
}

.tick-container {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.tick-icon {
  width: 18px;
  height: 18px;
  fill: var(--bg-white);
  flex-shrink: 0;
}

.ideal-for-card:hover h3 {
  color: var(--primary);
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: block;
  transition: var(--transition);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  transition: var(--transition);
  margin: 0;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-section a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.social-link:hover svg {
  /* Ensure SVG remains centered during hover */
  transform: translate(-60%, -50%);
  width: 20px;
  height: 20px;
  fill: var(--bg-white);
  display: block;
  top: 50%;
  left: 50%;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-white);
  display: block;
  margin: 0;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
}

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-info .contact-item .contact-icon {
  margin-top: 0.25rem; /* Adjust for proper vertical alignment */
}

.contact-info .contact-item p {
  margin: 0;
  line-height: 1.5;
}

.contact-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-info .contact-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-icon.large {
  width: 24px;
  height: 24px;
}

.contact-info .contact-numbers {
  margin: 0;
  line-height: 1.5;
}

.contact-info .contact-numbers a {
  display: inline;
  margin-bottom: 0;
}

.contact-info .address span {
  display: block;
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow-lg);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--bg-white);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.call-btn {
  bottom: 2rem;
  left: 2rem;
  background: var(--primary);
  color: var(--bg-white);
  display: none;
}

.call-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-error {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--danger);
}

/* Tabs */
.tabs {
  margin-bottom: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Accordion */
.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background: #e9ecef;
}

.accordion-header h4 {
  margin: 0;
  font-size: 1.125rem;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
}

.accordion-body {
  padding: 1.5rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header h4 {
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--success);
  flex-shrink: 0;
}

/* Map */
/* Modern Map Section */
.map-section {
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
}

.map-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-section-header .section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.map-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.map-section-header p {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  align-items: start;
}

.map-address-card {
  background: var(--bg-white);
  border: 2px solid rgba(220, 53, 69, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 2rem;
}

.map-address-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.map-address-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.map-address-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--bg-white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.map-link-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.map-container {
  width: 100%;
  height: 500px;
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--danger);
  color: var(--bg-white);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.modal-body {
  padding: 2rem;
}

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

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0.5rem 0 0 1rem;
    border-left: 2px solid var(--border);
    padding-left: 1rem;
  }

  .hero {
    padding: 4rem 0 3rem;
    min-height: 500px;
  }

  .hero-video {
    min-height: 100%;
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .hero p {
    max-width: 100%;
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-row {
    padding: 3rem 0;
  }

  .trust-row {
    padding: 3rem 0;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-item {
    padding: 2rem 1.5rem;
  }

  .trust-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .trust-icon-wrapper svg {
    width: 35px;
    height: 35px;
  }

  .trust-item {
    padding: 2rem 1.5rem;
  }

  .trust-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .trust-icon-wrapper svg {
    width: 35px;
    height: 35px;
  }

  .services-page-section {
    padding: 2.5rem 0;
  }

  .ac-featured-banner {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .ac-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .ac-banner-icon {
    font-size: 2.5rem;
  }

  .ac-banner-text h3 {
    font-size: 1.5rem;
  }

  .services-filter-wrapper {
    margin: 2rem 0 1.5rem;
    padding: 1rem;
  }

  .projects-filter {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid-modern {
    gap: 1.5rem;
  }

  .service-card-modern {
    min-height: 400px;
  }

  .service-card-modern .service-image-placeholder {
    height: 180px;
  }

  .service-card-modern .service-card-content {
    padding: 1.25rem;
  }

  .service-card-modern .service-card-content h3 {
    font-size: 1.25rem;
  }

  .service-card-modern .service-card-content p {
    font-size: 0.85rem;
  }

  .service-card-btn {
    width: auto;
    min-width: 120px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .service-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .service-card-body {
    padding: 0 1.5rem 1.5rem;
  }

  .service-card-content {
    padding: 1.25rem;
  }

  .service-card-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

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

  .other-services-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .other-services-row {
    flex-wrap: nowrap;
    gap: 1rem;
    animation: none;
  }

  .other-service-item {
    min-width: calc(50% - 0.5rem);
    flex: 0 0 calc(50% - 0.5rem);
  }

  .service-image-wrapper {
    height: 150px;
  }

  .service-icon-box {
    width: 50px;
    height: 50px;
    margin: -25px 0 0.75rem 0;
  }

  .other-service-item svg {
    width: 28px;
    height: 28px;
  }

  .other-service-item h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-content h4 {
    font-size: 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }



  .steps-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 0;
  }

  .step-modern {
    padding-left: 3rem;
  }

  .step-modern:hover {
    transform: translateX(5px);
  }

  .step-modern-number {
    font-size: 4rem;
    left: -1rem;
  }

  .step-modern-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }

  .step-modern-icon svg {
    width: 30px;
    height: 30px;
  }

  .step-modern-content h4 {
    font-size: 1.5rem;
  }

  .step-modern-content p {
    font-size: 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .area-item {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .area-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .area-icon svg {
    width: 26px;
    height: 26px;
  }

  .area-item h4 {
    font-size: 0.95rem;
  }

  /* Responsive styles for redesigned sections */
  .about-content-wrapper,
  .mission-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-text-content,
  .mission-text-content {
    order: 2;
  }

  .about-image-content,
  .mission-image-content {
    order: 1;
  }

  .about-image-placeholder,
  .mission-image-placeholder {
    max-width: 100%;
    height: 250px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-areas-section {
    padding: 4rem 0;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .area-card {
    padding: 1.5rem 1rem;
  }

  .area-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .area-icon {
    width: 35px;
    height: 35px;
  }

  .area-card h3 {
    font-size: 1.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .who-we-are,
  .our-mission,
  .why-choose-us,
  .service-areas-section {
    padding: 4rem 0;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-description p,
  .mission-description p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info .contact-numbers {
    display: block;
  }

  .contact-info .contact-numbers a {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .whatsapp-btn {
    bottom: 2rem;
    right: 2rem;
    left: auto;
  }

  .call-btn {
    bottom: 2rem;
    left: 2rem;
    right: auto;
    display: flex;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    padding: 3rem 0 2rem;
  }

  .hero-video {
    min-height: 100%;
  }

  .hero-content {
    padding-left: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 100%;
  }

  .hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    max-width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

  .trust-row {
    padding: 2.0rem 0;
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-item {
    padding: 2rem 1.5rem;
  }

  .trust-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .trust-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }

  .other-services-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .other-services-row {
    flex-wrap: nowrap;
    gap: 1rem;
    animation: none;
  }

  .other-service-item {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .service-image-wrapper {
    height: 140px;
  }

  .service-icon-box {
    width: 50px;
    height: 50px;
    margin: -25px 0 0.75rem 0;
  }

  .other-service-item svg {
    width: 26px;
    height: 26px;
  }

  .other-service-item h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .area-item {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }

  .area-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .area-icon svg {
    width: 28px;
    height: 28px;
  }

  .area-item h4 {
    font-size: 1rem;
  }

  /* Responsive styles for redesigned sections on small screens */
  .about-content-wrapper,
  .mission-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .about-text-content,
  .mission-text-content {
    order: 2;
  }

  .about-image-content,
  .mission-image-content {
    order: 1;
  }

  .about-image-placeholder,
  .mission-image-placeholder {
    max-width: 100%;
    height: 200px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-areas-section {
    padding: 3rem 0;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .area-card {
    padding: 1.25rem 0.75rem;
  }

  .area-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .area-icon {
    width: 30px;
    height: 30px;
  }

  .area-card h3 {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .who-we-are,
  .our-mission,
  .why-choose-us,
  .service-areas-section {
    padding: 3rem 0;
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .about-description p,
  .mission-description p {
    font-size: 0.95rem;
  }
}

/* Modern Contact Info Section */
.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header-modern {
  margin-bottom: 1rem;
}

.section-header-modern .section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header-modern h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--bg-white);
  border: 2px solid rgba(220, 53, 69, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
  transform: translateY(-4px);
}

.contact-card:hover::before {
  transform: scaleY(1);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.phone-icon {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  color: var(--primary);
}

.email-icon {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  color: var(--primary);
}

.location-icon {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  color: var(--primary);
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  color: var(--bg-white);
  transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
  flex: 1;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.contact-card-content .contact-value {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-card-content .contact-value a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card-content .contact-value a:hover {
  color: var(--primary);
}

.contact-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(220, 53, 69, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.business-hours-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-dark) 100%);
  border-radius: 20px;
  padding: 2rem;
  color: var(--bg-white);
  box-shadow: 0 10px 40px rgba(220, 53, 69, 0.25);
}

.business-hours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.business-hours-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.business-hours-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--bg-white);
}

.business-hours-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.business-hours-content {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
}

.hours-days {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hours-time {
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.hours-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding-top: 0.5rem;
}

.contact-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp-modern,
.btn-call-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.btn-whatsapp-modern {
  background: #25D366;
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-modern:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-call-modern {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-call-modern:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
}

.btn-whatsapp-modern svg,
.btn-call-modern svg {
  flex-shrink: 0;
}

/* Responsive Styles for Contact Section */
@media (max-width: 768px) {
  .section-header-modern h2 {
    font-size: 1.75rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .business-hours-card {
    padding: 1.5rem;
  }

  .business-hours-header h3 {
    font-size: 1.25rem;
  }

  .business-hours-icon {
    font-size: 2rem;
  }

  .btn-whatsapp-modern,
  .btn-call-modern {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .map-section {
    padding: 2.5rem 0;
  }

  .map-section-header h2 {
    font-size: 1.75rem;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-address-card {
    position: static;
    padding: 1.5rem;
  }

  .map-container {
    height: 400px;
  }
}