/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  --bg-black: #000000;
  --bg-dark: #0a0a0a;       /* Slightly lighter for sections */
  --bg-card: #111111;       /* Lighter for cards */
  --accent-blue: #0180d9;   /* Brand Primary */
  --glow-blue: #a7e3f5;     /* Accent/Text Glow */
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --success-green: #81c31c; /* For success states */
  --border-color: #222222;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
  box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { 
  text-decoration: none; 
  color: inherit; 
  transition: var(--transition); 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

/* ==========================================================================
   2. TOP BAR (MODERNIZED - FAR EDGE ALIGNMENT)
   ========================================================================== */
.top-bar {
  background: #000;
  padding: 8px 40px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
  max-width: 100%; 
  margin: 0;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.phone-info {
  display: flex;
  gap: 2rem; 
}

.phone-info a {
  color: var(--glow-blue);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  font-size: 1.1rem;
}

.social-icons a {
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--glow-blue);
  transform: translateY(-2px);
}

/* THIN MOBILE TOP BAR */
@media (max-width: 768px) {
  .top-bar {
    padding: 5px 15px !important; /* Forces the thinness */
  }

  .top-bar-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  /* Target the new class to hide the email */
  .top-email {
    display: none !important;
  }

  .phone-info {
    gap: 0;
  }

  .phone-info a {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .social-icons {
    font-size: 0.9rem;
    gap: 0.7rem;
  }
}
/* ==========================================================================
   3. HEADER & NAVIGATION (MODERNIZED)
   ========================================================================== */
header {
  background: #000;
  width: 100%;
  position: sticky; 
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid var(--accent-blue);
  width: 100%;
}

.logo {
  height: 85px; 
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.02); }

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a, .dropdown-title {
  color: #efefef;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

nav a:hover, .dropdown:hover .dropdown-title {
  color: var(--glow-blue);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* ==== DROPDOWNS (Glass-morphism) ==== */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  min-width: 220px;
  border: 1px solid rgba(167, 227, 245, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  padding: 12px 0;
  display: block; 
  z-index: 999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  text-transform: none; 
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #bbb;
  border: none;
}

.dropdown-content a::after { display: none; } 

.dropdown-content a:hover {
  background: rgba(167, 227, 245, 0.05);
  color: var(--glow-blue);
  padding-left: 25px; 
}

/* ==========================================================================
   KEEPING MOBILE MENU & DROPDOWNS EXACTLY AS PROVIDED
   ========================================================================== */
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { height: 3px; width: 25px; background: white; margin: 4px 0; }

.mobile-nav {
  display: none; flex-direction: column; background: rgba(0, 0, 0, 0.9);
  position: absolute !important; top: 100%; left: 0; width: 100%; z-index: 9999 !important;
}

.mobile-nav a {
  padding: 1rem; color: white; border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

#mobile-menu {
  display: none; flex-direction: column; background: rgba(0, 0, 0, 0.95);
  position: absolute !important; top: 100%; left: 0; width: 100%; padding: 1rem 0; z-index: 9999 !important;
}

#mobile-menu.show { display: flex !important; }

.mobile-dropdown { display: flex; flex-direction: column; }

.mobile-dropdown-content {
  display: none; flex-direction: column; background: rgba(0, 0, 0, 0.85); align-items: center;
}

.mobile-dropdown-content a {
  display: block; width: 100%; padding: 0.5rem 0; text-align: center;
  font-size: 0.95rem; font-weight: normal; color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.2); box-sizing: border-box; margin: 0;
}

.mobile-nav a, .mobile-dropdown > a, .mobile-dropdown > span {
  display: block; width: 100%; padding: 0.5rem 0; margin: 0;
  text-align: center; font-size: 1rem; line-height: 1.2; font-weight: bold;
  color: white; border-top: 1px solid rgba(255, 255, 255, 0.2); box-sizing: border-box;
}

@media (max-width: 991px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.show { display: flex !important; }
  .dropdown-content { position: static; background: rgba(0, 0, 0, 0.85); visibility: visible; opacity: 1; transform: none; }
}
/* ==========================================================================
   4. NEW HERO SECTION (MODERN SLIDER)
   ========================================================================== */
.hero-modern {
  position: relative;
  height: 80vh;
  background: #000;
  display: flex;
  align-items: center; /* Keeps it vertically centered */
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content-vertical-fill {
  position: relative;
  z-index: 10;
  height: 70%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding-left: 40px; 
  text-align: left;
  max-width: 1200px;
  margin: 0; /* CHANGED: Removed 'auto' to align to left edge */
  width: 100%;
}

.hero-badge-minimal {
  display: inline-block;
  color: var(--glow-blue);
  border-left: 4px solid var(--accent-blue); 
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-content-vertical-fill h1 {
  font-size: clamp(2.8rem, 4vw, 3.5rem); 
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
}

.text-glow-blue {
  color: var(--glow-blue); 
  text-shadow: 0 0 20px rgba(167, 227, 245, 0.5);
}

.hero-content-vertical-fill p {
  font-size: 1.2rem; 
  color: #f1f1f1;
  max-width: 600px;
  line-height: 1.6;
}

.hero-btn-group-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-primary-blue {
  background: var(--accent-blue);
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-blue:hover {
  background: var(--glow-blue);
  color: #000;
  transform: translateX(5px);
}

.btn-phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem; 
  border-bottom: 1px solid rgba(167, 227, 245, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.btn-phone-link:hover {
  color: var(--glow-blue);
}

@media (max-width: 768px) {
  .hero-content-vertical-fill {
    height: 80%;
    padding-left: 20px;
  }
  .hero-btn-group-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ==========================================================================
   5. NEW MODERN INTRO SECTION
   ========================================================================== */
.modern-intro-box {
  background-color: var(--bg-dark); 
  padding: 80px 20px;
  color: #fff;
  border-bottom: 1px solid rgba(1, 128, 217, 0.2); 
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-pillars {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1;
}

.pillar i {
  color: var(--glow-blue); 
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(167, 227, 245, 0.3));
}

.pillar span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #888;
}

.intro-text-content {
  text-align: center;
  max-width: 1000px; 
  margin: 0 auto;
}

.intro-text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.5px; 
}

.intro-text-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 25px;
  padding: 0 10px; 
}

.intro-link-blue {
  color: var(--glow-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.intro-link-blue:hover {
  border-color: var(--accent-blue);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .intro-pillars {
    flex-direction: column;
    gap: 30px;
  }
  .intro-text-content h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   7. SERVICE GRID (Style: User Preferred Dark/Glow | Layout: 3-Top, 2-Bottom)
   ========================================================================== */
.service-grid-full {
  background: #111;
  padding: 4rem 4vw;
  display: flex;
  justify-content: center;
}

.service-grid {
  display: flex;               /* Flexbox handles the "Center last 2" naturally */
  flex-wrap: wrap;
  justify-content: center;     /* Centers the items in the last row */
  gap: 2.5rem;                 /* Your preferred gap */
  width: 100%;
  max-width: 1400px;           /* Your preferred width */
}

.service-card {
  /* Layout Math: Ensures 3 cards fit perfectly with the gap */
  flex: 0 1 calc(33.333% - 2.5rem);
  min-width: 320px;            /* Prevents squishing */
  
  /* Visuals: Your new "Black & Glow" style */
  background: #000;
  border-radius: 12px;
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect: Glow + Lift */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #a7e3f5;
  box-shadow: 0 0 15px rgba(167, 227, 245, 0.2);
}

.image-container {
  height: 250px; /* Your preferred taller image height */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Header Text: Your requested Blue */
.card-content h3 {
  color: #a7e3f5;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* Body Text: Your requested Light Gray */
.card-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: auto;
}

/* Link Wrapper logic to make whole card clickable */
.card-link-wrapper {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

/* Responsive Logic */
@media (max-width: 1100px) {
  .service-card {
    flex: 0 1 calc(50% - 2.5rem); /* Switches to 2 per row */
  }
}

@media (max-width: 700px) {
  .service-card {
    flex: 0 1 100%; /* Switches to 1 per row */
  }
}

/* ==========================================================================
   7. SERVICE ROWS (Alternating Layout)
   ========================================================================== */
.service-row { 
  padding: 100px 20px; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.bg-charcoal { background-color: var(--bg-dark); }
.bg-black { background-color: var(--bg-black); }

.row-container {
  max-width: 1200px; 
  margin: 0 auto;
  display: flex; 
  align-items: center; 
  gap: 60px;
}

.row-reverse { 
  flex-direction: row-reverse; 
}

.row-image, 
.row-text { 
  flex: 1; 
}

.row-image img {
  width: 100%; 
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.row-text h2 { 
  color: var(--glow-blue); 
  font-size: 2.2rem; 
  margin-bottom: 20px; 
}

.row-text p { 
  font-size: 1.1rem; 
  color: var(--text-gray); 
  margin-bottom: 20px; 
}

/* Checkmark List */
.check-list { 
  list-style: none; 
  padding: 0; 
}

.check-list li {
  position: relative; 
  padding-left: 35px; 
  margin-bottom: 15px; 
  font-weight: 600; 
  color: #fff;
}

.check-list li::before {
  content: "\f00c"; 
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
  position: absolute; 
  left: 0; 
  color: var(--accent-blue);
}

/* ==========================================================================
   8. SLEEK BUTTON (Row Link)
   ========================================================================== */
.row-text .btn-sleek {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.5rem 0;       
  background: none !important;    
  border: none !important;        
  border-bottom: 2px solid transparent !important; 
  border-radius: 0 !important;    
  box-shadow: none !important;    
  
  color: var(--glow-blue);                 
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.row-text .btn-sleek:hover {
  color: #fff;
  border-bottom: 2px solid var(--accent-blue) !important; 
  padding-left: 5px; 
}

.row-text .btn-sleek i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.row-text .btn-sleek:hover i {
  transform: translateX(5px); 
}
html {
  scroll-behavior: smooth;
}

/* Optional: Add a slight hover animation to the arrow specifically */
.btn-sleek:hover i {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}
/* This ensures the card doesn't get hidden behind your sticky header */
.service-card {
  scroll-margin-top: 120px; 
}

/* Ensure smooth movement */
html {
  scroll-behavior: smooth;
}
/* =========================================
   4. SERVICE CARDS (Package Section)
   ========================================= */
.package-section {
  width: 100%;
  background-color: #111;
  color: white;
  padding: 4rem 1rem;
  border-top: 3px solid #0180d9;
}

.package-container {
  max-width: 1200px;
  margin: 0 auto;
}

.package-container h2 {
  text-align: center;
  color: #a7e3f5;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  position: relative; /* REQUIRED for the stretched link to work */
  flex: 1 1 320px;
  background: #111;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer; /* Shows the user the whole box is clickable */
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #0180d9;
  box-shadow: 0 5px 15px rgba(1, 128, 217, 0.2);
}

.service-card h3 { margin-bottom: 1rem; color: #fff; }
.service-card p { font-size: 1rem; color: #ccc; margin-bottom: 1.5rem; line-height: 1.5; }

/* The "Stretched Link" Logic */
.service-card a {
  color: #0180d9;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #0180d9;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

/* This pseudo-element expands to fill the .service-card */
.service-card a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; /* Ensures the click area is on top */
}

.service-card a:hover {
  color: #a7e3f5;
  border-color: #a7e3f5;
}
/* =========================================
   5. SERVICE AREAS
   ========================================= */
.areas-section {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 4rem 1rem;
  border-top: 3px solid #0180d9;
}

.areas-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.areas-container h2 { color: #a7e3f5; margin-bottom: 1rem; font-size: 2rem; }

.areas-description {
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.area-link {
  display: block;
  background-color: #111;
  border: 1px solid #333;
  color: white !important;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: bold;
  transition: all 0.3s ease;
}

.area-link:hover {
  background-color: #0180d9;
  border-color: #a7e3f5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(1, 128, 217, 0.4);
}

/* =========================================
   6. FAQ SECTION (Consolidated & Fixed)
   ========================================= */
.faq-section {
  width: 100%;
  background-color: #111;
  color: white;
  padding: 4rem 1rem;
  border-top: 3px solid #0180d9;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  color: #a7e3f5;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.faq-item { 
  margin-top: 1.5rem; 
  border-bottom: 1px solid #444; 
  padding-bottom: 1rem; 
}

.faq-question { 
  width: 100%; 
  text-align: left; 
  background: none; 
  border: none; 
  color: #a7e3f5; /* Starts as Light Blue */
  font-size: 1.1rem; 
  font-weight: bold; 
  padding: 0.75rem 0; 
  cursor: pointer; 
  position: relative; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease; /* Smooth color change */
}

/* --- THIS IS THE FIX --- */
.faq-question:hover {
  color: #0180d9; /* Changes to Dark/Brand Blue on hover */
}

/* The Plus Icon */
.faq-question::after { 
  content: "+"; 
  font-size: 1.4rem; 
  color: #0180d9;
  transition: transform 0.3s ease; 
}

/* The Minus Icon */
.faq-question.active::after { 
  content: "–"; 
}

.faq-answer { 
  display: none; 
  overflow: hidden; 
  transition: max-height 0.4s ease; 
  padding-right: 1rem; 
}

.faq-answer p { 
  margin: 0.5rem 0 0; 
  line-height: 1.6; 
  font-size: 1rem; 
  color: #ccc;
}

/* ==========================================================================
   11. JOBBER & CONTACT
   ========================================================================== */
.contact-section-wrapper {
  width: 100%;
  background-color: #000;
  padding: 4rem 1rem;
  border-top: 3px solid var(--accent-blue);
  border-bottom: 3px solid var(--accent-blue);
}

.contact-card-custom {
  max-width: 800px; 
  margin: 0 auto; 
  background: #111; 
  padding: 2.5rem; 
  color: white; 
  border-radius: 12px;
  border: 1px solid #333;
  transition: all 0.4s ease; 
}

.contact-card-custom:hover {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 35px rgba(1, 128, 217, 0.4);
  background: #161616 !important;
  transform: translateY(-3px);
}

.jobber-form-wrapper {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

/* Jobber Embed Overrides */
.jobber-form-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.jobber-embed-wrap {
  width: 100%;
}

#a0c14a97-b60d-4345-a833-30b5f1bbe80e-2030339 {
  width: 100% !important;
  max-width: 100% !important;
}

#a0c14a97-b60d-4345-a833-30b5f1bbe80e-2030339 iframe,
#a0c14a97-b60d-4345-a833-30b5f1bbe80e-2030339 > *,
#a0c14a97-b60d-4345-a833-30b5f1bbe80e-2030339 form {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   11. NEWSLETTER
   ========================================================================== */
.newsletter {
  background: var(--bg-card); padding: 60px 20px;
  border-top: 1px solid var(--accent-blue); text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter input[type="email"] {
  width: 100%; padding: 15px; border-radius: 6px; border: 1px solid #333;
  background: #000; color: #fff; margin-bottom: 10px;
}
.newsletter .button {
  width: 100%; padding: 15px; background: var(--accent-blue); color: #fff;
  border: none; border-radius: 6px; font-weight: bold; cursor: pointer;
}
.newsletter .button:hover { background: var(--glow-blue); color: #000; }

/* ==========================================================================
   12. FOOTER (FIXED)
   ========================================================================== */
footer { 
  background: var(--bg-black); 
  padding: 60px 20px; 
  border-top: 1px solid var(--border-color); 
  width: 100%;
}

.footer-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  flex-wrap: wrap; /* Allows columns to stack on mobile */
  justify-content: space-between; 
  gap: 40px; 
}

.footer-column { 
  flex: 1 1 200px; /* Ensures columns shrink/grow properly */
  min-width: 200px; 
}

/* Footer Logo Styling */
.footer-logo {
  max-width: 180px;      /* Restricts size so it's not too big */
  height: auto;
  display: block;        /* Necessary for margin auto to work */
  margin: 0 auto 20px auto; /* Centers the logo and adds bottom spacing */
}

.footer-column h3 { 
  color: var(--glow-blue); 
  margin-bottom: 20px; 
  font-size: 1.2rem; 
  text-transform: uppercase;
}

.footer-column p {
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center;    /* Keeps text aligned with the centered logo */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li { 
  margin-bottom: 10px; 
  color: var(--text-gray); 
}

.footer-column ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-blue);
}

/* Social Links in Footer */
.footer-socials {
  display: flex;
  gap: 15px;
  justify-content: center; /* Centers social icons under logo/text */
  margin-top: 20px;
}

.footer-socials a {
  color: var(--text-gray);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--primary-blue);
}

/* Footer Bottom Bar */
.footer-bottom { 
  text-align: center; 
  margin-top: 40px; 
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #555; 
  font-size: 0.9rem; 
  width: 100%;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center; /* Centers everything on mobile */
  }
  
  .footer-column h3 {
    margin-top: 20px;
  }
}
/* ==========================================================================
   13. RESPONSIVE UTILITIES
   ========================================================================== */
@media (max-width: 992px) {
  .row-container, .row-reverse { flex-direction: column; text-align: center; gap: 40px; }
  .check-list li { text-align: left; display: inline-block; margin-right: 20px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .top-bar-container { flex-direction: column; gap: 10px; }
  .check-list li { display: block; margin-right: 0; }
}