/* 
  ALI POWER PRO - Premium CSS Design System
  Color Theme: Premium Red, Black, White, and Dark Grey
  Typography: Outfit (Headings) & Inter (Body)
*/

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

:root {
  /* Colors */
  --color-primary: #E50914;      /* Premium Red */
  --color-primary-hover: #b8070f;
  --color-primary-glow: rgba(229, 9, 20, 0.4);
  --color-bg-dark: #0A0A0A;      /* True Black for depth */
  --color-bg-card: #141414;      /* Deep Charcoal for cards */
  --color-bg-section: #0F0F0F;   /* Section backgrounds */
  --color-text-light: #FFFFFF;
  --color-text-muted: #B3B3B3;
  --color-text-dark: #121212;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(229, 9, 20, 0.3);
  --color-accent-gold: #FFC107;  /* For reviews & highlights */
  --color-whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Blur */
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(16px) saturate(180%);
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-red-glow: 0 0 20px rgba(229, 9, 20, 0.15);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- Layout Components --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
  background-color: var(--color-bg-section);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

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

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 10, 0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  height: 70px;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--color-text-light);
}

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

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

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

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

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

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

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

/* Mobile Nav Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--color-text-light);
  transition: var(--transition-smooth);
}

/* --- Buttons & Call To Action --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-red-glow), 0 6px 20px rgba(229, 9, 20, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-text-light);
  border: 1px solid var(--color-whatsapp);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

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

/* --- Hero Section --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(10, 10, 10, 0.95) 30%, rgba(10, 10, 10, 0.5) 70%, rgba(10, 10, 10, 0.95)), url('../images/hero_electrical.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

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

.hero-tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-text-light);
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* --- Features / Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: rgba(229, 9, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Services Showcase --- */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card-body {
  padding: 2.5rem;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: rgba(229, 9, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card:hover .service-card-icon {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.service-card-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullet-list li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullet-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

/* --- AMC Plans Grid --- */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.amc-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.amc-card.recommended {
  border: 2px solid var(--color-primary);
  background-color: #161213; /* subtle warm charcoal tint */
  box-shadow: 0 15px 40px rgba(229, 9, 20, 0.15);
  transform: scale(1.03);
}

.badge-recommended {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 3rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.amc-header {
  margin-bottom: 2.5rem;
}

.amc-name {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.amc-card.recommended .amc-name {
  color: var(--color-primary);
}

.amc-price {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text-light);
}

.amc-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.amc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.amc-features li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.amc-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.amc-features li.disabled {
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
}

.amc-features li.disabled svg {
  fill: rgba(255,255,255,0.15);
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.google-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.5rem 3rem;
  border-radius: 4px;
  max-width: 450px;
  margin: 0 auto 4rem auto;
}

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

.google-stats {
  text-align: left;
}

.google-stars {
  color: var(--color-accent-gold);
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  margin-bottom: 0.25rem;
}

.google-rating-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.google-rating-text strong {
  color: var(--color-text-light);
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

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

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2A2A2A;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.review-author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-stars {
  color: var(--color-accent-gold);
  font-size: 0.95rem;
}

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

/* --- Contact & Forms --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(229, 9, 20, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-card-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card-details p, .contact-card-details a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.contact-form-panel {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  border-radius: 4px;
  position: relative;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.1);
}

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

.form-feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-feedback.success {
  color: #28a745;
  display: block;
}

.form-feedback.error {
  color: var(--color-primary);
  display: block;
}

/* Map Section */
.map-container {
  height: 450px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-top: 4rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.95) contrast(1.2); /* elegant dark theme filter */
}

/* --- Inline Page Banner Sections --- */
.page-hero {
  padding: 10rem 0 5rem 0;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.page-hero-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-hero-desc {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Us Sections */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(0.2);
}

.about-img-overlay-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  text-align: center;
  max-width: 220px;
  z-index: 10;
}

.about-img-overlay-card h3 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.about-img-overlay-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-bullets {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-bullet-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

/* Mission & Vision Sections */
.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mv-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 4rem 3rem;
  border-radius: 4px;
}

.mv-icon {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.mv-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.mv-card p {
  color: var(--color-text-muted);
}

/* --- CTA Section Banner --- */
.cta-banner {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('../images/hero_electrical.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.cta-banner-content .btn-primary {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

/* --- Footer --- */
footer {
  background-color: #050505;
  border-top: 1px solid var(--color-border);
  padding: 6rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-bottom-links a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .amc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .amc-card.recommended {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .about-grid, .contact-wrapper, .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-img-overlay-card {
    right: 0;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: #0E0E0E;
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 3rem 3rem 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }

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

  .nav-cta {
    display: none; /* In mobile menu, we'll embed CTA at the bottom */
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .google-trust-badge {
    padding: 1.5rem;
  }
  
  .contact-form-panel {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}
