/* ===================================
   CSS CUSTOM PROPERTIES & RESET
   =================================== */
:root {
  --color-primary: #0066cc; /* Updated to a stronger blue based on logo */
  --color-primary-dark: #004c99;
  --color-secondary: #1A2332;
  --color-secondary-light: #2C3E50;
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  --color-success: #10B981;
  --color-error: #EF4444;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  
  --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-gray-50);
}

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

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

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Glassmorphism Utility */
.glass {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 140px; /* Adjusted height for larger logo */
  display: flex;
  align-items: center;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  /* EDIT HERE: Adjust logo height and shadow for desktop */
  height: 120px; /* Increased logo size */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); /* Subtle shadow for depth */
  transition: var(--transition-base);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

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

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.39);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 102, 204, 0.23);
  color: var(--color-white);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-sticky {
    height: 100px; /* Adjusted height for mobile nav */
  }
  .nav-logo-img {
    /* EDIT HERE: Adjust logo height for mobile */
    height: 80px; /* Smaller logo for mobile */
  }

  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 100px; /* Adjusted top position to match new nav height */
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    border-bottom: 1px solid var(--color-gray-200);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    text-align: center;
    padding: 0.75rem;
    font-size: 1.1rem;
  }
  
  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 1.5rem 6rem;
  margin-top: 0;
}

.hero-small {
  min-height: 50vh;
  background-position: center;
  margin-top: 140px; /* Adjusted margin-top to match new nav height */
}
@media (max-width: 768px) {
  .hero-small {
    margin-top: 100px; /* Adjusted margin-top for mobile */
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(20, 50, 90, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  text-align: center;
  color: var(--color-white);
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subheadline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
}

.trust-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #60A5FA; /* Brighter blue for dark background */
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: var(--color-white);
  backdrop-filter: blur(5px);
}

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

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

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

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-submit {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--color-secondary);
  color: var(--color-white);
}

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

.section-contact {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: var(--color-white);
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  color: inherit;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: 4rem;
  color: inherit;
  opacity: 0.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-contact .section-title,
.section-contact .section-subtitle {
  color: var(--color-white);
}

/* ===================================
   SERVICES GRID (Updated for 4 columns)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
}

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

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

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

.service-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--color-primary-dark);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Enforcing 2 cols on mobile as requested */
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-description {
    font-size: 0.85rem;
    display: none; /* Hide description on mobile to keep grid clean/compact */
  }
}

/* ===================================
   PROJECTS GALLERY
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cols desktop */
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem; 
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background-color: var(--color-gray-800);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.03); 
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: white;
  width: 40px;
  height: 40px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Trust Copy Section */
.trust-copy {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(5px);
}

.trust-copy p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-gray-200);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    z-index: 2001;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 0.75rem;
  }
  .trust-copy {
    padding: 1.5rem;
  }
  .trust-copy p {
    font-size: 1rem;
  }
}

/* ===================================
   REVIEWS GRID
   =================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  border: 1px solid var(--color-gray-100);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: #FFC107;
  font-size: 1.2rem;
}

.review-text {
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.author-name {
  font-weight: 700;
  color: var(--color-secondary);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

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

.about-paragraph {
  color: var(--color-gray-700);
  line-height: 1.8;
  font-size: 1.125rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-gray-700);
  font-size: 1.05rem;
}

.list-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-primary);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  padding: 4px;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transform: rotate(2deg);
  border: 4px solid var(--color-white);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: var(--transition-base);
}

.about-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
    transform: rotate(0);
  }
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form {
  max-width: 700px;
  margin: 3rem auto 0;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-2xl);
  border-top: 4px solid var(--color-primary);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.form-input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-base);
  background: var(--color-gray-50);
  color: var(--color-gray-900);
}

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

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-input.error {
  border-color: var(--color-error);
}

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

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.form-error {
  color: var(--color-error);
  font-size: 0.875rem;
  min-height: 1.25rem;
  display: block;
}

.form-success {
  background: var(--color-success);
  color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0f172a;
  color: var(--color-white);
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--color-primary);
}

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

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

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1); /* Make logo white for footer */
}

.footer-text {
  color: var(--color-gray-400);
  line-height: 1.7;
  max-width: 400px;
}

.footer-trust-line {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-contact-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-gray-300);
}

.footer-info-item svg {
  color: var(--color-primary);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.footer-link {
  color: var(--color-gray-400);
  transition: var(--transition-base);
}

.footer-link:hover {
  color: var(--color-white);
  padding-left: 0.5rem;
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===================================
   LAZY LOADING
   =================================== */
.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-load.loaded {
  opacity: 1;
}