/* ==== GLOBAL STYLES ==== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: white;
  background: url('/background.jpg') no-repeat center center/cover;
  background-size: cover;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==== TOP BAR ==== */
.top-bar {
  background: #000;
  padding: 0.5rem 1rem;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.phone-info a,
.social-icons a {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.quote-btn {
  background: #0180d9;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background: #6fae1b;
}

/* ==== HEADER ==== */
header {
  background: #000; /* or your color */
  padding: 0;        /* remove default padding */
  margin: 0;
  width: 100%;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* ✅ Remove margins that shrink it */
  margin: 0;
  border-radius: 0;         /* optional: remove rounding if not needed */
  width: 100%;

  /* ✅ Add top/bottom padding */
  padding: 1rem 2rem;       /* 1rem top/bottom, 2rem left/right */

  background: rgba(0, 0, 0, 0.85); /* or your color */
  box-sizing: border-box;
  border-top: 2px solid white; /* 👈 thin white line on top */
}


.logo {
  height: 100px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 100;
}

nav a {
  color: white;
  font-weight: bold;
}

nav a.active,
.mobile-nav a.active {
  border-bottom: 2px solid #81c31c;
}
/* ==== DROPDOWNS ==== */
.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  display: none;
  z-index: 999;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  text-align: left;
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==== HERO FIX === */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

/* ==== MOBILE MENU ==== */
.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;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-nav a {
  padding: 1rem;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

@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);
  }
}

/* ==== CONTENT SECTION ==== */

.services-heading {
  text-align: center;
  margin: 0 auto;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  max-width: 1200px;
  box-sizing: border-box;
}

.content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .content-section {
    text-align: left;
  }

  .content-section img {
    max-width: 400px;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.content-section div {
  max-width: 600px;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #a7e3f5;
}

.content-section p,
.content-section ul {
  margin: 1rem 0;
  color: white;
  text-align: left;
}

.content-section ul {
  padding-left: 1.2rem;
}

.content-section li {
  margin-bottom: 0.8rem;
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  margin-top: 2rem;
  background: #81c31c;
  color: white;
  border-radius: 8px;
  font-size: 1.2rem;
}

/* ===== Newsletter Section ===== */
.newsletter {
  background: rgba(0, 0, 0, 0.85);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 3rem 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: #a7e3f5;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.newsletter .mc-field-group {
  margin-bottom: 1rem;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.newsletter .button {
  background-color: #81c31c;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter .button:hover {
  background-color: #6ea915;
}

/* ==== FOOTER ==== */
footer {
  background: black;
  color: white;
  padding: 2rem;
}

.footer-logo-container {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-logo-container img {
  max-width: 150px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin: 1rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a,
.footer-contact a {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .content-section img {
    margin-bottom: 1rem;
  }
}

/* ==== MOBILE DROPDOWN ==== */
#mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
}

#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 {
  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;
}
/* ===============================
   Slideshow Styles
   =============================== */
.slideshow-container {
  position: relative;
  width: 100vw;         /* Full viewport width */
  margin: 0;            /* Remove any centering */
  padding: 0;           /* Remove internal spacing */
  overflow: hidden;
}

.slideshow-section {
  padding: 0;           /* Remove default padding */
  margin: 0;
}


.slide {
  display: none;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.slide.active {
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover,
.next:hover {
  background: rgba(0,0,0,0.9);
}
/* Overlay container for button + text */
.slideshow-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  pointer-events: none; /* allow slides/buttons underneath */
}

.slideshow-cta {
  display: inline-block;
  background-color: #0180d9; /* ✅ Your custom blue */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  pointer-events: auto; /* Ensure it stays clickable */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.slideshow-cta:hover {
  background-color: #006bb3; /* 🔄 Darker shade for hover effect */
}


.slideshow-description {
  color: white;
  font-size: 1.25rem;     /* ⬆️ Increased from 1rem */
  font-weight: 550;        /* ⬆️ Made it bolder */
  margin: 0.5rem 0 0;
  pointer-events: none;
}
/* Default background for all pages */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: white;
  background: url('/background.jpg') no-repeat center center/cover;
  background-size: cover;
  overflow-x: hidden;
}

/* ✅ Override for home page */
body.home {
  background: #000; /* or any solid color */
}
.slideshow-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.slideshow-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #81c31c;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.slideshow-button:hover {
  background-color: #6ea915;
}
