/* 
  Shine and Sparkle Cleaning By Renee LTD - Master Stylesheet
  Edmonton, Alberta Professional Cleaning Services
  Color System: Matched to Official Logo (Midnight Navy #0B2545, Royal Blue #0072CE, Sparkle Cyan #00A3FF, Ice Tint #EBF4FC)
*/

:root {
  /* Logo Matched Color Palette */
  --primary: #0072CE;       /* Logo "CLEANING" Royal Blue */
  --primary-hover: #005da8;
  --primary-dark: #0b2545;  /* Logo Roof & Swirl Midnight Navy */
  --primary-light: #ebf4fc; /* Bubble Ice Blue Tint */
  
  --accent: #00a3ff;        /* Sparkle Cyan */
  --accent-soft: #d4ecff;
  
  --dark: #0b2545;          /* Logo Midnight Navy */
  --dark-muted: #1e3a8a;
  --body-text: #334155;     /* Slate Body Text */
  --light-bg: #f5f9fc;      /* Soft Ice Mist */
  --border-color: #e2e8f0;
  --white: #ffffff;
  
  /* Status Colors */
  --success: #059669;
  --info: #0072ce;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing System */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 1.75rem;  /* 28px */
  --spacing-lg: 3rem;     /* 48px */
  --spacing-xl: 5rem;     /* 80px */
  --spacing-2xl: 8rem;    /* 128px */

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.12);
  --shadow-hover: 0 24px 56px rgba(0, 114, 206, 0.18);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Wrappers */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-lg {
  padding: var(--spacing-2xl) 0;
}

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

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

.bg-primary-soft {
  background-color: var(--primary-light);
  border-top: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.section-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--body-text);
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-bounce);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.75s ease;
}

.btn:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 114, 206, 0.35);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--light-bg);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

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

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

/* Header & Significantly Enlarged Standalone Logo */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 115px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
}

.brand-logo-img {
  height: 92px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-bounce);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

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

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 300px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-soft);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.dropdown-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: var(--transition-fast);
}

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

.dropdown-item:hover svg {
  transform: translateX(5px);
  color: var(--primary-dark);
}

/* Mobile Navigation Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
}

.mobile-toggle svg {
  width: 32px;
  height: 32px;
}

/* Hero Section */
.hero {
  padding: var(--spacing-xl) 0 var(--spacing-2xl);
  background: linear-gradient(180deg, #ebf4fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-content {
  max-width: 630px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.85rem);
  line-height: 1.14;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.hero-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--body-text);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-soft);
}

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

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.04);
}

.hero-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--accent-soft);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.hero-badge-text p {
  font-size: 0.825rem;
  color: var(--body-text);
}

/* Feature Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: rotate(6deg) scale(1.08);
}

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

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--primary-dark);
}

.card-text {
  color: var(--body-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.card-link:hover svg {
  transform: translateX(6px);
}

/* Service Card Layouts */
.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

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

.service-card-image-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

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

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

.process-step {
  background-color: var(--white);
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--primary-dark);
}

.step-desc {
  font-size: 0.925rem;
  color: var(--body-text);
}

/* Split Grid */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-soft);
}

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

.split-image-wrap:hover .split-image {
  transform: scale(1.04);
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--body-text);
}

.feature-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion Component */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.faq-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-header svg {
  transform: rotate(180deg);
  color: var(--primary-dark);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-item.active .faq-body {
  padding: 0 1.75rem 1.5rem;
}

/* Modal Overlay & Estimator */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 37, 69, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-bounce);
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--accent-soft);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--light-bg);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--border-color);
  color: var(--dark);
}

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

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--dark);
  transition: var(--transition-fast);
  min-height: 48px;
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.estimate-box {
  background-color: var(--primary-light);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.estimate-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.estimate-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* Service Comparison Matrix Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
}

.matrix-table th, .matrix-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.matrix-table th {
  background-color: var(--light-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.matrix-table td svg.check {
  color: var(--success);
  width: 22px;
  height: 22px;
}

.matrix-table td svg.cross {
  color: #cbd5e1;
  width: 20px;
  height: 20px;
}

/* Contact Info & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
}

.contact-info-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: #e2e8f0;
}

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

/* Footer with Standalone Large Logo */
.footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid #1e3a8a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand .brand-logo-img {
  height: 80px;
  margin-bottom: 1.25rem;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: var(--radius-md);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

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

.footer-bottom {
  border-top: 1px solid #1e3a8a;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations & Staggered Scroll Observer */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* Thorough Multi-Device Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    height: 440px;
  }

  .split-grid, .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .split-image {
    height: 380px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-container {
    height: 95px;
  }

  .brand-logo-img {
    height: 72px;
    max-height: 78px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - 95px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background-color: var(--light-bg);
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 0.5rem;
  }

  .dropdown-menu.active-mobile {
    display: block;
  }

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

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

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

  .modal-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 85px;
  }

  .brand-logo-img {
    height: 62px;
  }

  .hero {
    padding: var(--spacing-md) 0 var(--spacing-xl);
  }

  .hero-image {
    height: 320px;
  }

  .hero-badge-floating {
    left: 12px;
    bottom: 12px;
    padding: 0.75rem 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}
