@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM VARIABLES --- */
:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --color-primary: #2563eb;
  --color-primary-rgb: 37, 99, 235;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-accent: #f97316;
  --color-accent-hover: #ea580c;

  --color-text-dark: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;

  --color-bg-white: #ffffff;
  --color-bg-light: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-bg-dark: #070b19;
  --color-bg-footer: #040713;

  --color-border: #e2e8f0;
  --color-border-hover: #cbd5e1;

  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(37, 99, 235, 0.12);

  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* ---- Spacing tokens (design system) ---- */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3.5rem;
  --space-4xl: 5rem;
  --space-5xl: 7.5rem;

  /* ---- Container ---- */
  --container-max-width: 1280px;
  --container-px: 2rem;
  /* 32px desktop */
  --container-px-md: 1.75rem;
  /* 28px tablet */
  --container-px-sm: 1rem;
  /* 16px mobile */

  /* ---- Section rhythm ---- */
  --section-py: 5.5rem;
  --section-py-sm: 4rem;
  --section-py-xs: 3rem;

  /* ---- Typography scale ---- */
  --fs-hero: clamp(2.4rem, 4.5vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.45rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.8rem;

  --lh-heading: 1.2;
  --lh-body: 1.65;
  --lh-loose: 1.75;

  /* ---- Buttons ---- */
  --btn-height: 48px;
  --btn-px: 1.75rem;
  --btn-font-size: 0.95rem;
  --btn-radius: var(--border-radius-md);

  /* ---- Cards ---- */
  --card-pad: 2rem;
  --card-radius: var(--border-radius-md);
  --gap-cards: 2rem;

  /* ---- Images ---- */
  --img-radius: var(--border-radius-lg);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--color-text-muted);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #2c2c2c;
}

::-webkit-scrollbar-thumb {
  background: #8e8e8e;
  border-radius: 10px;
  border: 3px solid #2c2c2c;
  min-height: 80px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a6a6a6;
}

::-webkit-scrollbar-button:single-button {
  background-color: #2c2c2c;
  display: block;
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
  height: 18px;
  width: 12px;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-button:single-button:hover {
  background-color: #3e3e3e;
}

/* Up Button Arrow */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%238e8e8e'><polygon points='50,28 85,72 15,72'/></svg>");
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23ffffff'><polygon points='50,28 85,72 15,72'/></svg>");
}

/* Down Button Arrow */
::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%238e8e8e'><polygon points='50,72 85,28 15,28'/></svg>");
}

::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23ffffff'><polygon points='50,72 85,28 15,28'/></svg>");
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px, 5rem);
}

.section {
  padding: var(--section-py, 5.5rem) 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--color-bg-light);
}



.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl, 3.5rem) auto;
}

.section-subtitle {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span {
  color: var(--color-primary);
}

.section-description {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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





.btn-outline-white {
  background-color: transparent;
  color: var(--color-bg-white);
  border: 2px solid var(--color-bg-white);
}

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

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

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.35rem 0 0 0;
  background-color: transparent;
  transition: var(--transition-normal);
}

.header.sticky {
  position: fixed;
  background-color: #070b19;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0 0 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.logo-title {
  color: var(--color-bg-white);
  transition: var(--transition-fast);
}

.nav-link {
  color: var(--color-bg-white);
  transition: var(--transition-fast);
}

.header.sticky .logo-title {
  color: var(--color-bg-white);
}

.header.sticky .nav-link {
  color: var(--color-bg-white);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.45);
  transition: var(--transition-normal);
}

.header.sticky .nav-container {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  /* Transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-icon img {
  transform: rotate(360deg);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
  align-items: flex-start;
  /* Force absolute left alignment */
}

.logo-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.3px;
  text-align: left;
}

.logo-subtitle {
  font-family: var(--font-primary);
  /* Changed to Poppins to match logo title metrics exactly */
  font-weight: 700;
  /* Matching weight for a crisp, solid block alignment */
  font-size: 0.78rem;
  /* Increased slightly to align perfectly with the 's' of Woodlands */
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  /* Increased slightly for pixel-perfect stretch */
  margin-top: 4px;
  /* Balanced spacing */
  margin-left: 2px;
  /* Shift slightly to the right for optical alignment */
  text-align: left;
}

.logo-text-container-dark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
  align-items: flex-start;
  /* Force absolute left alignment */
}

.logo-title-dark {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-text-dark);
  letter-spacing: -0.3px;
  text-align: left;
}

.logo-subtitle-dark {
  font-family: var(--font-primary);
  /* Changed to Poppins to match logo title metrics exactly */
  font-weight: 700;
  font-size: 0.78rem;
  /* Increased slightly to align perfectly with the 's' of Woodlands */
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  /* Increased slightly for pixel-perfect stretch */
  margin-top: 4px;
  margin-left: 2px;
  /* Shift slightly to the right for optical alignment */
  text-align: left;
}

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

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after, .nav-item-dropdown:hover .nav-link::after {
  width: 100%;
}

.header.sticky .nav-link:hover, .header.sticky .nav-link.active {
  color: var(--color-bg-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-dark);
}

.header:not(.sticky) .menu-toggle {
  color: var(--color-bg-white);
}

/* Call Button Styling */
.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.35rem;
  background-color: #2563eb;
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.nav-call-btn:hover {
  background-color: #f97316;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
  transform: translateY(-1px);
}

/* --- NAVBAR DROPDOWN --- */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  /* Aligns perfectly with the bottom border of the default header */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(7, 11, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 260px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  /* Inset padding for modern rounded items */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Adjust dropdown position when header is sticky */
.header.sticky .dropdown-menu {
  top: calc(100% + 0.6rem);
  /* Aligns with sticky header's bottom border */
}

/* Hover bridge to prevent menu from closing when moving mouse from link to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.3rem;
  background-color: transparent;
}

.dropdown-menu a {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  /* macOS style rounded menu hover highlight */
  transition: all 0.2s ease;
  text-align: left;
  white-space: nowrap;
  /* Prevent messy text wrapping */
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: #3b82f6;
  padding-left: 1.5rem;
  /* Smooth text shift on hover */
}

/* Both dropdown menus are now displayed in a single column with automatic width to prevent overflow */

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* --- MOBILE NAV --- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-bg-white);
  z-index: 200;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  transition: var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-dark);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.mobile-link:hover, .mobile-link.active {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

/* Mobile Nested Dropdown Links */
.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid var(--color-border);
}

.mobile-dropdown-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.mobile-dropdown-link:hover, .mobile-dropdown-link.active {
  color: var(--color-primary);
  padding-left: 0.25rem;
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  background-color: #070b19;
  display: flex;
  align-items: center;
  padding-top: 13.5rem;
  padding-bottom: 6rem;
  color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

/* --- HERO BACKGROUND SLIDESHOW --- */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 1.8s ease-in-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s linear forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  background-color: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #fed7aa;
  align-self: flex-start;
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-full);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.25);
}

.hero-about .hero-tag, .hero-services .hero-tag {
  align-self: center;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-bg-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

/* --- HERO FORM --- */
.hero-form-container {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  color: var(--color-text-dark);
}

.hero-form-header {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 1.5rem 2rem;
  text-align: center;
}

.hero-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-bottom: 0.25rem;
}

.hero-form-subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-phone-container {
  display: flex;
  gap: 0.5rem;
}

.phone-prefix {
  padding: 0.75rem 0.85rem;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.phone-prefix img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.form-textarea {
  resize: none;
  height: 90px;
}

/* --- FEATURE CARDS --- */


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--color-primary);
  padding: 2.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--color-bg-white);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.feature-card:nth-child(even) {
  background-color: var(--color-primary-dark);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--color-bg-white);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-bg-white);
}

.feature-description {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* --- ABOUT SECTION --- */














.about-text {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.checkmark-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.5rem 0;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.checkmark-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

/* Color theme border-tops for each service card matching Principles */
.services-grid .service-card:nth-child(1) {
  border-top-color: #2563eb;
}

/* AC Install - Blue */
.services-grid .service-card:nth-child(2) {
  border-top-color: #10b981;
}

/* AC Maint - Green */
.services-grid .service-card:nth-child(3) {
  border-top-color: #f97316;
}

/* AC Repair - Orange */
.services-grid .service-card:nth-child(4) {
  border-top-color: #2563eb;
}

/* Heat Install - Blue */
.services-grid .service-card:nth-child(5) {
  border-top-color: #10b981;
}

/* Heat Maint - Green */
.services-grid .service-card:nth-child(6) {
  border-top-color: #f97316;
}

/* Heat Repair - Orange */

/* Hover border top colors */
.services-grid .service-card:nth-child(1):hover {
  border-top-color: #1d4ed8;
}

.services-grid .service-card:nth-child(2):hover {
  border-top-color: #059669;
}

.services-grid .service-card:nth-child(3):hover {
  border-top-color: #ea580c;
}

.services-grid .service-card:nth-child(4):hover {
  border-top-color: #1d4ed8;
}

.services-grid .service-card:nth-child(5):hover {
  border-top-color: #059669;
}

.services-grid .service-card:nth-child(6):hover {
  border-top-color: #ea580c;
}

/* Service images support */
.service-image-wrapper {
  overflow: hidden;
  position: relative;
  height: 220px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-image {
  transform: scale(1.06);
}

/* Custom check colors matching each card theme */
.services-grid .service-card:nth-child(1) .why-panel-list-item i {
  color: #2563eb;
}

.services-grid .service-card:nth-child(2) .why-panel-list-item i {
  color: #10b981;
}

.services-grid .service-card:nth-child(3) .why-panel-list-item i {
  color: #f97316;
}

.services-grid .service-card:nth-child(4) .why-panel-list-item i {
  color: #2563eb;
}

.services-grid .service-card:nth-child(5) .why-panel-list-item i {
  color: #10b981;
}

.services-grid .service-card:nth-child(6) .why-panel-list-item i {
  color: #f97316;
}

.service-card-body {
  padding: 2.25rem 2.25rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: var(--transition-fast);
}

.service-card-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

.services-grid .service-card:nth-child(1) .service-card-link {
  color: #2563eb;
}

.services-grid .service-card:nth-child(2) .service-card-link {
  color: #10b981;
}

.services-grid .service-card:nth-child(3) .service-card-link {
  color: #f97316;
}

.services-grid .service-card:nth-child(4) .service-card-link {
  color: #2563eb;
}

.services-grid .service-card:nth-child(5) .service-card-link {
  color: #10b981;
}

.services-grid .service-card:nth-child(6) .service-card-link {
  color: #f97316;
}

.services-grid .service-card:nth-child(1):hover .service-card-link {
  color: #1d4ed8;
}

.services-grid .service-card:nth-child(2):hover .service-card-link {
  color: #059669;
}

.services-grid .service-card:nth-child(3):hover .service-card-link {
  color: #ea580c;
}

.services-grid .service-card:nth-child(4):hover .service-card-link {
  color: #1d4ed8;
}

.services-grid .service-card:nth-child(5):hover .service-card-link {
  color: #059669;
}

.services-grid .service-card:nth-child(6):hover .service-card-link {
  color: #ea580c;
}



/* --- WHY CHOOSE US --- */






















/* --- PORTFOLIO SECTION --- */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.portfolio-tab {
  padding: 0.6rem 1.5rem;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--border-radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

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



.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

.portfolio-card:nth-child(1), .portfolio-card:nth-child(5) {
  border-top-color: #2563eb;
}

/* Blue */
.portfolio-card:nth-child(2) {
  border-top-color: #10b981;
}

/* Green */
.portfolio-card:nth-child(3), .portfolio-card:nth-child(6) {
  border-top-color: #f97316;
}

/* Orange */
.portfolio-card:nth-child(4) {
  border-top-color: #f59e0b;
}

/* Gold */

.portfolio-card:nth-child(1):hover, .portfolio-card:nth-child(5):hover {
  border-top-color: #1d4ed8;
}

.portfolio-card:nth-child(2):hover {
  border-top-color: #059669;
}

.portfolio-card:nth-child(3):hover, .portfolio-card:nth-child(6):hover {
  border-top-color: #ea580c;
}

.portfolio-card:nth-child(4):hover {
  border-top-color: #d97706;
}

.portfolio-image-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
  text-align: left;
}

.portfolio-tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  font-family: var(--font-primary);
}

.portfolio-card:nth-child(1) .portfolio-tag-pill, .portfolio-card:nth-child(5) .portfolio-tag-pill {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.portfolio-card:nth-child(2) .portfolio-tag-pill {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.portfolio-card:nth-child(3) .portfolio-tag-pill, .portfolio-card:nth-child(6) .portfolio-tag-pill {
  background-color: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.portfolio-card:nth-child(4) .portfolio-tag-pill {
  background-color: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.portfolio-project-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.35;
  font-family: var(--font-primary);
}







/* --- PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: dashed var(--color-border-hover);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.process-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--color-bg-white);
  border: 4px solid var(--color-bg-alt);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
}

.process-step:hover .process-icon-wrapper {
  border-color: var(--color-primary);
  color: var(--color-bg-white);
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.process-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--color-bg-white);
  transition: var(--transition-normal);
}

.process-step:hover .process-num {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
}

.process-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.process-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- TESTIMONIALS --- */
.testimonials-slider-container {
  overflow: visible;
  position: relative;
  padding: 0 50px 3.5rem 50px;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  width: 100%;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

.testimonials-swiper .swiper-slide:nth-child(1) .testimonial-card, .testimonials-swiper .swiper-slide:nth-child(5) .testimonial-card {
  border-top-color: #2563eb;
}

.testimonials-swiper .swiper-slide:nth-child(2) .testimonial-card, .testimonials-swiper .swiper-slide:nth-child(6) .testimonial-card {
  border-top-color: #10b981;
}

.testimonials-swiper .swiper-slide:nth-child(3) .testimonial-card {
  border-top-color: #f97316;
}

.testimonials-swiper .swiper-slide:nth-child(4) .testimonial-card {
  border-top-color: #f59e0b;
}

.testimonials-swiper .swiper-slide:nth-child(1):hover .testimonial-card, .testimonials-swiper .swiper-slide:nth-child(5):hover .testimonial-card {
  border-top-color: #1d4ed8;
}

.testimonials-swiper .swiper-slide:nth-child(2):hover .testimonial-card, .testimonials-swiper .swiper-slide:nth-child(6):hover .testimonial-card {
  border-top-color: #059669;
}

.testimonials-swiper .swiper-slide:nth-child(3):hover .testimonial-card {
  border-top-color: #ea580c;
}

.testimonials-swiper .swiper-slide:nth-child(4):hover .testimonial-card {
  border-top-color: #d97706;
}

.testimonial-stars {
  color: #fbbf24;
  display: flex;
  gap: 0.25rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-stars {
  transform: scale(1.05);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-title {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-border-hover);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pagination-bullet.active {
  width: 24px;
  background-color: var(--color-primary);
}

/* --- SWIPER NAVIGATION CHEVRONS --- */
.testimonials-prev, .testimonials-next {
  color: #2563eb;
  font-size: 1.35rem;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s ease;
}

.testimonials-prev {
  left: 20px;
}

.testimonials-next {
  right: 20px;
}

.testimonials-prev:hover {
  color: #070b19;
  transform: translateY(-50%) scale(1.2) translateX(-4px);
}

.testimonials-next:hover {
  color: #070b19;
  transform: translateY(-50%) scale(1.2) translateX(4px);
}

.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}

@media (max-width: 1200px) {
  .testimonials-prev {
    left: 10px;
  }

  .testimonials-next {
    right: 10px;
  }
}

@media (max-width: 768px) {

  .testimonials-prev, .testimonials-next {
    display: none;
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 4.5rem 0;
  color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  margin-bottom: -4rem;
  z-index: 10;
  position: relative;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-banner-title {
  font-size: 2.25rem;
  color: var(--color-bg-white);
  font-weight: 800;
}

.cta-banner-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 650px;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* --- FAQ SECTION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.8rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-solid) 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-content {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-wrapper {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.faq-item.active .faq-answer-content {
  border-top-color: var(--color-border);
}

/* --- COVERAGE SECTION --- */











/* --- FOOTER SECTION (ORIGINAL DESIGN — FULLY RESPONSIVE) --- */
.footer {
  background-color: #070b15;
  color: var(--color-bg-white);
  padding: 60px 0 0 0;
  border-top: 1px solid rgba(37, 99, 235, 0.15);
  font-family: var(--font-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  margin-bottom: 50px;
  align-items: start;
}

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

.footer-column.list-column {
  gap: 0.6rem;
  align-items: flex-start;
  text-align: left;
}

/* Brand Column (Original Centered Design) */
.brand-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer-logo {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  gap: 0 !important;
  text-align: center !important;
  margin-bottom: 0.25rem !important;
  text-decoration: none;
}

.footer-logo .logo-icon {
  width: 90px !important;
  height: 90px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.footer-logo .logo-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.footer-logo .logo-text-container {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 0.25rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.footer-logo .logo-title {
  font-family: var(--font-primary) !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--color-bg-white) !important;
  text-align: center !important;
}

.footer-logo .logo-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  text-align: left;
}

.follow-us-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.follow-us-label:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.follow-us-label.followed {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.brand-column .social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-column .social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-bg-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-column .social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* List Columns */
.footer-column.list-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.footer-col-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-bottom: 0.25rem;
  text-align: left;
}

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

.footer-link {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.footer-link i {
  font-size: 0.65rem;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.footer-link:hover {
  color: #60a5fa;
  padding-left: 0.25rem;
}

.footer-link:hover i {
  transform: translateX(3px);
  color: var(--color-accent);
}

/* Contact & Action Column (Original Centered Design) */
.contact-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.book-appointment-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-book-btn:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.footer-book-btn i {
  font-size: 0.8rem;
}

.footer-call-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #2563eb;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  width: 100%;
  max-width: 260px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-call-card:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.call-card-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-card-icon-wrapper i {
  color: #2563eb;
  font-size: 1rem;
}

.call-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.call-card-num {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-bg-white);
  text-decoration: none;
}

.call-card-label {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Bottom Bar */
.footer-bottom-wrapper {
  background-color: #02040a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}



/* --- TOAST / NOTIFICATION --- */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transform: translateX(calc(100% + 2rem));
  background-color: var(--color-bg-white);
  border-left: 4px solid #10b981;
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast-notification.active {
  transform: translateX(0);
}

.toast-icon {
  color: #10b981;
  font-size: 1.5rem;
}

.toast-content {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.toast-message {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- ANIMATION CLASSES --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */
.hero-about {
  min-height: 70vh;
  background: linear-gradient(rgba(4, 7, 19, 0.7), rgba(4, 7, 19, 0.85)), url('../img/6.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 13.5rem;
  padding-bottom: 5rem;
  color: var(--color-bg-white);
}

.hero-about .hero-content {
  align-items: center;
  max-width: 800px;
}

.hero-about .hero-title {
  font-size: 2.75rem;
  color: var(--color-bg-white);
}

.hero-about .hero-buttons {
  justify-content: center;
  margin-top: 1.25rem;
}

/* Intro Simple Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Why Choose Details */


















/* How We Work Section */






























/* Split Card Commitment Section */
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.commitment-card {
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.commitment-card-blue {
  background-color: #e0f2fe;
  /* Light sky blue */
  color: var(--color-text-dark);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.commitment-card-white {
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
}

.commitment-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.commitment-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.commitment-item i {
  color: var(--color-primary);
  font-size: 1.05rem;
}

.commitment-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}





/* Mid Page Text CTA Banner */






/* --- SERVICES PAGE SPECIFIC STYLES --- */
.hero-services {
  min-height: 70vh;
  background: linear-gradient(rgba(4, 7, 19, 0.7), rgba(4, 7, 19, 0.85)), url('../img/7.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 13.5rem;
  padding-bottom: 5rem;
  color: var(--color-bg-white);
}

.hero-services .hero-content {
  align-items: center;
  max-width: 850px;
}

.hero-services .hero-title {
  font-size: 2.75rem;
  color: var(--color-bg-white);
}

.hero-services .hero-buttons {
  justify-content: center;
  margin-top: 1.25rem;
}

/* Services Intro Section */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-intro-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  height: 400px;
  width: 100%;
  object-fit: cover;
}

/* 11 Card Services Grid */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-v2 {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-v2-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.card-v2-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.card-v2-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}







.card-v2-img-wrapper {
  overflow: hidden;
  height: 180px;
  width: 100%;
}

.card-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card-v2:hover .card-v2-img {
  transform: scale(1.06);
}

/* Why Services V2 */
.why-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.why-v2-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-v2-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-v2-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.why-v2-item i {
  color: var(--color-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-v2-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  height: 450px;
  width: 100%;
  object-fit: cover;
}

/* Blueprint CTA Section */
.blueprint-cta {
  background-color: var(--color-bg-dark);
  color: var(--color-bg-white);
  padding: 5.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.blueprint-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.blueprint-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-bg-white);
  line-height: 1.2;
}

.blueprint-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 650px;
}

.blueprint-img-wrapper {
  position: relative;
  height: 380px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blueprint-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* --- HORIZONTAL BOOKING STRIP --- */
.booking-strip {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  color: var(--color-text-dark);
}

.booking-strip-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.02em;
}

.booking-strip-title i {
  color: #2563eb;
  font-size: 1.25rem;
}

.booking-strip-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  width: 100%;
}

.booking-strip-form .form-input, 
.booking-strip-form .form-select {
  width: 100%;
  height: 46px;
  padding: 0 1rem;
  font-size: 0.9rem;
  background-color: #f8fafc;
  color: var(--color-text-dark);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-strip-form .form-input:focus, 
.booking-strip-form .form-select:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.booking-strip-form .btn-primary {
  height: 46px;
  padding: 0 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  background-color: #2563eb !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-strip-form .btn-primary:hover {
  background-color: #1d4ed8 !important;
  background: #1d4ed8 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.4);
}

/* --- 4-STEP PROCESS ROADMAP --- */
.process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid-4::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: dashed var(--color-border-hover);
  z-index: 1;
}

/* --- PRICING TABLE STYLES --- */
















/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .intro-grid, .services-intro-grid, .why-v2-grid, .blueprint-grid {
    gap: 3rem;
  }

  .commitment-card {
    padding: 2.5rem;
  }

  .services-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-py, 4.5rem) 0;
  }

  .hero {
    padding-top: 11.5rem;
    padding-bottom: 5rem;
  }

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

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-description {
    margin: 0 auto;
  }

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

  

  .intro-grid, .commitment-grid, .services-intro-grid, .why-v2-grid, .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-image, .services-intro-img, .why-v2-image {
    height: 380px;
  }

  

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

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .process-grid::before {
    display: none;
  }

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

  .cta-banner-actions {
    justify-content: center;
  }

  

  

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  

  .blueprint-img-wrapper {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    height: 300px;
  }

@media (max-width: 768px) {
  .booking-strip-form {
    grid-template-columns: 1fr 1fr;
  }
  .booking-strip-form .btn-primary {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .booking-strip-form {
    grid-template-columns: 1fr;
  }
  .booking-strip-form .btn-primary {
    grid-column: span 1;
  }
}

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

  .process-grid-4::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }

  .services-grid, .portfolio-grid, .services-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .checkmark-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .commitment-card {
    padding: 2rem;
  }

  .process-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .hero-buttons, .cta-banner-actions, .commitment-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn, .cta-banner-actions .btn, .commitment-actions .btn {
    width: 100%;
  }

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

  

  .hero-form {
    padding: 1.5rem;
  }

  

  

  

  

  

  .booking-strip-form {
    grid-template-columns: 1fr;
  }

  .booking-strip-form .btn {
    grid-column: span 1;
  }
}

/* --- NEW COVERAGE SECTION ( Dubai Locations ) --- */
.coverage-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.centered-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.centered-desc {
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}

.coverage-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.36fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.map-container-new {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
  border: 1px solid var(--color-border);
}

.map-container-new iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.locations-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.85rem;
  align-items: flex-start;
}

.locations-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--color-bg-white);
  border: 1px solid #cbd5e1;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease-in-out;
}

.location-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.location-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1.5px 3px rgba(37, 99, 235, 0.15);
}

.location-icon-wrapper i {
  color: var(--color-bg-white);
  font-size: 0.8rem;
}

.location-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

/* Responsive location rules */
@media (max-width: 768px) {
  .coverage-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-container-new {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .locations-grid-new {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .locations-grid-new {
    grid-template-columns: 1fr;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .logo-title {
    font-size: 1.15rem;
  }

  .logo-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .logo-title-dark {
    font-size: 1.15rem;
  }

  .logo-subtitle-dark {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }
}

/* --- BOXED AREAS WE SERVE SECTION --- */
.areas-serve-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background-color: var(--color-bg-white);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}



















/* Responsive areas serve rules */
@media (max-width: 768px) {
  .areas-serve-box {
    grid-template-columns: 1fr;
  }

  

  
}

/* ===================================================
   PREMIUM ANIMATIONS & MICRO-INTERACTIONS
   =================================================== */

/* ---- Scroll-reveal base state ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Floating pulse on accent badge / CTA chip ---- */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-tag {
  animation: floatBadge 3.5s ease-in-out infinite;
}

/* ---- Primary accent button ripple / pulse ---- */
@keyframes accentPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(249, 115, 22, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.btn-accent {
  animation: accentPulse 2.4s infinite;
}

.btn-accent:hover {
  animation: none;
}

/* ---- Primary button ripple / pulse ---- */
@keyframes primaryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.btn-primary.hero-cta {
  animation: primaryPulse 2.4s infinite;
}

.btn-primary.hero-cta:hover {
  animation: none;
}

/* ---- Shimmer skeleton loader (used when images are loading) ---- */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

img[src=""], img:not([src]), img.loading {
  background: linear-gradient(90deg, #f0f4f8 25%, #e8eef4 50%, #f0f4f8 75%);
  background-size: 1000px 100%;
  animation: shimmer 1.8s infinite linear;
  color: transparent;
}

/* ---- Feature card lift on hover ---- */
.feature-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

/* ---- Service card accent underline on hover ---- */
.service-card::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 1.25rem;
}

.service-card:hover::after {
  width: 60px;
}

/* ---- Stats / counter digit emphasis ---- */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number, .counter-val {
  animation: countUp 0.7s ease-out both;
}

/* ---- Smooth page-load fade-in for sections ---- */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

main, .hero {
  animation: pageFadeIn 0.6s ease-out both;
}

/* ---- Section heading accent underline decoration ---- */
.section-subtitle::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  margin-top: 0.5rem;
}

.section-header.center .section-subtitle::after, .text-center .section-subtitle::after, .coverage-header .section-subtitle::after {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Booking strip CTA hover glow ---- */
.booking-strip .btn-accent:hover, .cta-banner .btn-accent:hover {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

/* ---- Smooth image zoom on portfolio cards ---- */


.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

/* ---- Why item icon accent ring ---- */




/* ---- FAQ question button accent on active ---- */
.faq-item.active .faq-question-btn {
  background-color: rgba(37, 99, 235, 0.04);
}

/* ---- Staggered reveal delays for grid children ---- */








.services-grid .service-card:nth-child(1) {
  transition-delay: 0.0s;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 0.16s;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 0.24s;
}

.services-grid .service-card:nth-child(5) {
  transition-delay: 0.32s;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 0.40s;
}

/* ---- nav active link orange underline accent ---- */
.nav-link.active::after, .nav-link:hover::after {
  background-color: var(--color-accent);
}

/* ==========================================
   HOMEPAGE CONTENT REDESIGN STYLES
   ========================================== */

/* Trust Bar / Features Grid */
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  padding: 2.25rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

.trust-card:nth-child(1), .trust-card:nth-child(5) {
  border-top-color: #2563eb;
}

/* Blue */
.trust-card:nth-child(2), .trust-card:nth-child(6) {
  border-top-color: #10b981;
}

/* Green */
.trust-card:nth-child(3) {
  border-top-color: #f97316;
}

/* Orange */
.trust-card:nth-child(4) {
  border-top-color: #f59e0b;
}

/* Gold */

.trust-card:nth-child(1):hover, .trust-card:nth-child(5):hover {
  border-top-color: #1d4ed8;
}

.trust-card:nth-child(2):hover, .trust-card:nth-child(6):hover {
  border-top-color: #059669;
}

.trust-card:nth-child(3):hover {
  border-top-color: #ea580c;
}

.trust-card:nth-child(4):hover {
  border-top-color: #d97706;
}

.trust-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-card:nth-child(1) .trust-icon-box, .trust-card:nth-child(5) .trust-icon-box {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.trust-card:nth-child(2) .trust-icon-box, .trust-card:nth-child(6) .trust-icon-box {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.trust-card:nth-child(3) .trust-icon-box {
  background-color: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.trust-card:nth-child(4) .trust-icon-box {
  background-color: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.trust-card:hover .trust-icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* AI Overview Section Grid */
.ai-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .ai-overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.systems-serviced-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.systems-serviced-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-top-color: var(--color-accent);
}

.systems-serviced-card .why-panel-icon {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.systems-serviced-card:hover .why-panel-icon {
  background-color: rgba(249, 115, 22, 0.08);
  color: var(--color-accent);
  transform: scale(1.1) rotate(5deg);
}







.brand-tags-container {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.brand-tags-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-tag {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all 0.25s ease;
}

.brand-tag:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
}

/* Why Choose Professional Panels */
.why-panels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 769px) {
  .why-panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-panel {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-panel:nth-child(1) {
  border-top-color: #2563eb;
}

/* Climate - Blue */
.why-panel:nth-child(2) {
  border-top-color: #10b981;
}

/* Honest - Green */
.why-panel:nth-child(3) {
  border-top-color: #f97316;
}

/* Workmanship - Orange */
.why-panel:nth-child(4) {
  border-top-color: #f59e0b;
}

/* Energy - Gold */

.why-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.why-panel:nth-child(1):hover {
  border-top-color: #1d4ed8;
}

.why-panel:nth-child(2):hover {
  border-top-color: #059669;
}

.why-panel:nth-child(3):hover {
  border-top-color: #ea580c;
}

.why-panel:nth-child(4):hover {
  border-top-color: #d97706;
}

.why-panel-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.why-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-panel:nth-child(1) .why-panel-icon {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.why-panel:nth-child(2) .why-panel-icon {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.why-panel:nth-child(3) .why-panel-icon {
  background-color: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.why-panel:nth-child(4) .why-panel-icon {
  background-color: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.why-panel:hover .why-panel-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-panel-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

.why-panel-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.why-panel-desc:last-of-type {
  margin-bottom: 0;
}

.why-panel-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
}

.why-panel-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.why-panel-list-item i {
  font-size: 0.95rem;
  margin-top: 3px;
}

.why-panel:nth-child(1) .why-panel-list-item i {
  color: #2563eb;
}

.why-panel:nth-child(2) .why-panel-list-item i {
  color: #10b981;
}

.why-panel:nth-child(3) .why-panel-list-item i {
  color: #f97316;
}

.why-panel:nth-child(4) .why-panel-list-item i {
  color: #f59e0b;
}

/* Maintenance Section Grid */
.maintenance-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.maintenance-benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}











.alert-card {
  background-color: rgba(239, 68, 68, 0.02);
  border: 1px dashed rgba(239, 68, 68, 0.3);
  border-left: 4px solid #ef4444;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
}

.alert-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.alert-card-header i {
  color: #ef4444;
  font-size: 1.35rem;
}

.alert-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.alert-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.alert-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-weight: 600;
}

.alert-card-item i {
  color: #ef4444;
  margin-top: 3px;
  font-size: 0.95rem;
}

/* Areas served tags and list panels */
.areas-serve-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .areas-serve-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.served-zip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.zip-tag {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.zip-tag:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
}

.service-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .service-type-grid {
    grid-template-columns: 1fr;
  }
}

.service-type-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}



/* Sticky Service Area Map Card */
.sticky-map-column {
  position: sticky;
  top: 105px;
  z-index: 10;
}

.map-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.map-card:hover {
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.25);
}

.map-card-header {
  background-color: rgba(37, 99, 235, 0.03);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.map-card-header i {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.map-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: #f3f4f6;
}

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

.map-card-footer {
  padding: 1.25rem 1.5rem;
  background-color: rgba(249, 115, 22, 0.02);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.map-card-footer i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* Blue Commitment Panel Card (Principles layout style but with Blue Background) */
.commitment-panel-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.commitment-panel-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 70%);
  pointer-events: none;
}

.commitment-panel-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.commitment-panel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-top-color: #ff9d43;
}

.commitment-panel-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.commitment-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  font-size: 1.5rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.commitment-panel-card:hover .commitment-panel-icon {
  background-color: rgba(249, 115, 22, 0.15);
  color: #ff9d43;
  transform: scale(1.1) rotate(5deg);
}

.commitment-panel-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.commitment-panel-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff9d43;
  letter-spacing: 0.05em;
}

.commitment-panel-title {
  font-family: var(--font-primary);
  font-weight: 850;
  font-size: 1.55rem;
  color: var(--color-bg-white) !important;
  margin: 0;
}

.commitment-panel-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.commitment-panel-text-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 850px;
}

.commitment-panel-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .commitment-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .commitment-panel-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

.commitment-panel-actions .btn {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
}

.commitment-panel-actions .btn-accent {
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.commitment-panel-actions .btn-accent:hover {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

/* Hero section upgrades */
.hero-title {
  font-size: 2.75rem !important;
  font-weight: 850;
  line-height: 1.3 !important;
  color: var(--color-bg-white) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.hero-title .text-accent {
  color: var(--color-accent) !important;
}

.hero-title .title-divider {
  color: var(--color-bg-white) !important;
  margin: 0 0.4rem;
}

.hero-title .text-secondary-highlight {
  color: var(--color-bg-white) !important;
}

.hero-desc-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 650px;
}

.hero-coverage-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0.85rem;
  border-radius: var(--border-radius-md);
}

.hero-coverage-badge i {
  color: var(--color-accent);
  margin-top: 0.15rem;
  font-size: 1rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.hero-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-highlight-item i {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.highlight-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.highlight-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-bg-white);
}

.highlight-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.hero-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-trust-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust-rating .stars {
  color: #ffb800;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.hero-form-container {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-form-container:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

.hero-form-header {
  background-color: var(--color-primary) !important;
  color: var(--color-bg-white);
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-form-container:hover .hero-form-header {
  background-color: var(--color-primary-dark) !important;
}

.hero-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-bg-white) !important;
  margin-bottom: 0.25rem;
}

.hero-form-title i {
  color: var(--color-accent);
}

.hero-form-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
}

.hero-form {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #334155 !important;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-align: left;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.form-input-wrapper .field-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.form-input-wrapper .textarea-icon {
  top: 1rem;
}

.form-input-wrapper .form-input, .form-input-wrapper .form-select {
  padding-left: 2.75rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.form-input-wrapper .form-textarea {
  padding-left: 2.75rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  min-height: 90px;
}

.form-input-wrapper .form-input:focus, .form-input-wrapper .form-select:focus, .form-input-wrapper .form-textarea:focus {
  background-color: var(--color-bg-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-input-wrapper .form-input:focus~.field-icon, .form-input-wrapper .form-select:focus~.field-icon, .form-input-wrapper .form-textarea:focus~.field-icon, .form-input-wrapper:focus-within .field-icon {
  color: var(--color-primary);
}

.phone-prefix {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  color: var(--color-text-dark);
  padding: 0.75rem 1rem;
}

.hero-form .btn-full {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.hero-form .btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.hero-form .btn-full i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.hero-form .btn-full:hover i {
  transform: translateX(4px) translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-title .text-highlight {
    font-size: 1.85rem;
  }
}

@media (max-width: 768px) {
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Compact Hero Form Card styling for perfect vertical balance */
.hero-form-container, #contact-form, .contact-form-wrapper {
  scroll-margin-top: 120px !important;
}

.hero-form-container {
  max-width: 430px;
  justify-self: end;
  width: 100%;
}

@media (min-width: 769px) {
  .hero-grid {
    align-items: flex-start !important;
  }

  .hero-form-container {
    margin-top: 3.25rem !important;
    /* Offsets tag height to align top of the form exactly in level with the hero title */
  }
}

.hero-form-header {
  padding: 1.15rem 1.5rem !important;
}

.hero-form-title {
  font-size: 1.25rem !important;
  margin-bottom: 0.15rem !important;
}

.hero-form-subtitle {
  font-size: 0.8rem !important;
}

.hero-form {
  padding: 1.25rem 1.5rem !important;
  gap: 0.85rem !important;
}

.hero-form .form-group {
  gap: 0.35rem !important;
}

.hero-form .form-field-label {
  font-size: 0.78rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.hero-form .form-input, .hero-form .form-select, .hero-form .form-textarea {
  padding: 0.55rem 0.85rem 0.55rem 2.5rem !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

.hero-form .form-input-wrapper .field-icon {
  left: 0.85rem !important;
  font-size: 0.85rem !important;
}

.hero-form .form-input-wrapper .textarea-icon {
  top: 0.75rem !important;
}

.hero-form .phone-prefix {
  padding: 0.55rem 0.75rem !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

.hero-form .form-textarea {
  min-height: 65px !important;
  height: 65px !important;
}

.hero-form .btn-full {
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  border-radius: 8px !important;
}

/* --- COMPREHENSIVE RESPONSIVE ENHANCEMENTS --- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* FAQ 2-Column Responsive Layout */
.faq-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .hero-services {
    padding-top: 8.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .hero-services .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.35rem) !important;
    line-height: 1.3 !important;
  }

  .hero-services .hero-title-line {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem) !important;
  }

  .hero-buttons {
    gap: 0.75rem !important;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .form-input, .form-select, .form-textarea, .btn {
    min-height: 44px;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.85rem) !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  .hero-title, .hero-title-line {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .trust-bar-grid, .why-panels-grid, .services-grid-v2 {
    grid-template-columns: 1fr !important;
  }
}

/* --- PRINCIPLES CARD DESIGN SYSTEM --- */
.principles-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.principles-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl) !important;
}

/* ==========================================================================
   PERFECT MOBILE RESPONSIVENESS & CARD BOUNDARY PROTECTION SYSTEM
   ========================================================================== */

/* 1. Global Horizontal Overflow & Boundary Protection */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
  max-width: 100%;
}

/* Ensure all text wraps cleanly within container borders */
p, h1, h2, h3, h4, h5, h6, li, span, a, button, label, input, select, textarea {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* 2. Header Mobile Responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 0.75rem 0 0 0 !important;
  }

  .header.sticky {
    padding: 0.6rem 0 0 0 !important;
  }

  .nav-container {
    padding-bottom: 0.75rem !important;
    gap: 0.5rem !important;
  }

  .logo {
    gap: 0.5rem !important;
  }

  .logo-icon {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }

  .logo-title {
    font-size: clamp(1.05rem, 4vw, 1.25rem) !important;
  }

  .logo-subtitle {
    font-size: clamp(0.62rem, 2.3vw, 0.72rem) !important;
    letter-spacing: 0.12em !important;
  }

  .nav-actions {
    gap: 0.5rem !important;
  }

  .nav-call-btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
  }

  .mobile-nav-drawer {
    width: min(320px, 85vw) !important;
    padding: 1.75rem 1.25rem !important;
  }
}

@media (max-width: 420px) {
  .nav-call-btn span, .nav-call-btn {
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 0 0 !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
    margin-bottom: 2.5rem !important;
    text-align: center !important;
  }

  .footer-column {
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
  }

  .brand-column {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    justify-content: center !important;
    align-items: center !important;
  }

  .footer-logo .logo-text-container {
    align-items: center !important;
  }

  .footer-logo .logo-title, .footer-logo .logo-subtitle {
    text-align: center !important;
  }

  .footer-col-title {
    text-align: center !important;
    font-size: 1.1rem !important;
  }

  .footer-links {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-link {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.9rem !important;
  }

  .contact-column .contact-info-list {
    align-items: center !important;
  }

  .contact-column .footer-contact-item {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.9rem !important;
  }

  .footer-bottom {
    padding: 1.25rem 1rem !important;
    font-size: 0.825rem !important;
    text-align: center !important;
    line-height: 1.6 !important;
  }
}

/* 4. Strict Card Boundary Protection & Layout Stability */
@media (max-width: 768px) {
  .sticky-map-column, .sticky-sidebar {
    position: static !important;
    top: auto !important;
  }

  .hero-form-container {
    justify-self: center !important;
    margin: 2rem auto 0 auto !important;
    width: 100% !important;
    max-width: 500px !important;
  }

  .maintenance-grid, .areas-serve-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  [style*="grid-column: span 2"], [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }

  .service-type-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .tuneup-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .portfolio-tabs {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
  }

  .portfolio-tab {
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
  }

  .why-panel, .principles-card, .alert-card, .service-type-box, .service-card, .portfolio-card, .testimonial-card, .faq-item, .commitment-card, .trust-card {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0 !important;
  }

  .why-panel, .principles-card, .alert-card, .service-type-box, .service-card, .portfolio-card-body, .testimonial-card, .faq-item, .hero-form-container, .commitment-card, .trust-card {
    padding: 1.25rem 1rem !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .why-panel-list, .alert-card-list, ul, ol {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .why-panel-list-item, .alert-card-item {
    font-size: 0.88rem !important;
    gap: 0.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-coverage-badge {
    font-size: 0.85rem !important;
    padding: 0.85rem !important;
  }

  .form-input, .form-select, .form-textarea, .btn {
    font-size: 0.925rem !important;
    min-height: 44px;
  }

  .toast-notification {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 0.85rem 1.15rem !important;
  }
}
/* --- COMPREHENSIVE MID-SIZE DESKTOP & DESKTOP-MODE ON MOBILE OPTIMIZATIONS (769px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  /* 1. Header & Navigation */
  .header {
    padding: 0.85rem 0 0 0 !important;
  }
  .nav-container {
    padding-bottom: 0.85rem !important;
    gap: 1rem !important;
  }
  .nav-menu {
    gap: 1.15rem !important;
  }
  .nav-link {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  .nav-call-btn {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }
  .menu-toggle {
    display: none !important;
  }

  /* 2. Hero Section */
  .hero {
    padding-top: 9.5rem !important;
    padding-bottom: 4rem !important;
    min-height: auto !important;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 2rem !important;
    align-items: flex-start !important;
  }
  .hero-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
    line-height: 1.2 !important;
  }
  .hero-description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  .hero-coverage-badge {
    font-size: 0.8rem !important;
    padding: 0.75rem 1rem !important;
  }
  .hero-highlights {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
    padding: 1rem 0 !important;
    margin: 1rem 0 !important;
  }
  .highlight-label {
    font-size: 0.82rem !important;
  }
  .highlight-sub {
    font-size: 0.7rem !important;
  }
  .hero-buttons {
    gap: 0.75rem !important;
  }
  .hero-buttons .btn {
    padding: 0.65rem 1.15rem !important;
    font-size: 0.88rem !important;
  }
  .hero-form-container {
    margin-top: 0 !important;
    max-width: 420px !important;
    width: 100% !important;
  }

  /* 3. Footer Section (Original Design Responsive Grid) */
  .footer-top {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    margin-bottom: 2.5rem !important;
  }
  .brand-column {
    align-items: center !important;
    text-align: center !important;
  }
  .contact-column {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-link {
    font-size: 0.85rem !important;
  }
}
