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

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-left,
.nav-right {
  flex-shrink: 0;
}

.logo {
  height: 100px;
}

.sprayman {
  height: 77px;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  list-style: none;
  padding: 0;
  gap: 2.5rem;
}

.nav-center a.nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: #13008a;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  display: inline-block;
}



.nav-center a.nav-link:hover {
  text-decoration: underline;
}

.nav-center .home-link {
  font-weight: 700;
}

/* Quote Button */
.quote-button {
  background-color: #F49000;
  color: black;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  list-style: none;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 10;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: #13008a;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-right {
    align-self: flex-end;
    margin-top: 1rem;
  }

  .logo {
    height: 100px;
  }

  .sprayman {
    height: 77px;
  }

  .nav-center a.nav-link {
    font-size: 1rem;
  }
}

.footer {
  background-color: #13008a;
  color: #F49000;
  padding: 3rem 1rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-box.expanded {
  background-color: #F49000;
  color: #13008a;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 550px;
}

.footer-box.expanded h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.footer-box.expanded p {
  font-size: 1.1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-box.expanded a {
  color: #13008a;
  font-weight: 600;
  text-decoration: none;
}

.footer-box.expanded a:hover {
  text-decoration: underline;
}

.icon-circle img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.5rem;
}


/* Socials */
.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.portfolio-cta {
  margin-top: 2rem;
}

.portfolio-cta a {
  color: #13008a;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
}

.portfolio-cta a:hover {
  background-color: #100072;
}

/* Bottom Copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
  color: #F49000;
}



/* Hero Video Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 0, 138, 0.7); /* Less opaque */
  color: #F49000;
  padding: 1.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}


/* Quote Bar */
.quote-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.quote-strip .quote-button.large {
  background-color: #F49000;
  color: #13008a;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-area {
  color: #13008a;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}


/* Services Section */
.services-section {
  padding: 3rem 1rem;
  text-align: center;
}

.services-header h2 {
  color: #13008a;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.services-icon {
  font-size: 1.8rem;
  color: #F49000;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.service-box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 2px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-box span {
  padding: 1rem;
  font-weight: bold;
  color: #F49000;
  background-color: #13008a;
  text-align: center;
  font-size: 1.1rem;
}


.service-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Bottom Quote Button */
.quote-bottom {
  text-align: center;
  padding: 2rem 1rem;
}
.footer-logo {
  height: 70px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-overlay {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .quote-strip {
    flex-direction: column;
    text-align: center;
  }

  .quote-strip .quote-button.large {
    width: 100%;
    text-align: center;
  }

  .service-area {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .services-header h2 {
    font-size: 1.5rem;
  }

  .services-icon {
    font-size: 1.5rem;
  }

  .quote-bottom {
    padding: 1.5rem 1rem;
  }
}

.about-section {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.about-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color:#13008a;
}

.about-content {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.about-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer-logo-section {
  margin-top: 4rem;
  text-align: center;
}

.footer-logo {
  height: 80px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .about-text {
    font-size: 1rem;
    padding-top: 1rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .footer-logo {
    height: 60px;
  }
}
.contact-page {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  gap: 2rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-box {
  background-color: #F49000;
  color: #13008a;
  padding: 1.2rem 1.5rem; /* reduced padding */
  flex: 1 1 300px;
  border-radius: 8px;
  min-width: 300px;
  max-width: 400px;
}


.contact-box h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-box p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-line {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-line img {
  width: 20px;
  height: 20px;
  margin-right: 0.7rem;
}

.contact-line a {
  color: #13008a;
  font-weight: 600;
  text-decoration: none;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-socials img {
  width: 28px;
  height: 28px;
}

.calendar-section {
  flex: 2 1 500px;
  padding: 1rem;
}

.calendar-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#calendar-container {
  min-height: 200px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* Booking Form */
#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

#booking-form input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.calendar-days,
.calendar-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calendar-day,
.time-slot {
  padding: 0.75rem 1rem;
  background-color: #13008a;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}

.calendar-day:hover,
.calendar-slots button:hover {
  background-color: #0f0072;
}

.calendar-day.disabled,
.calendar-slots button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  color: #666;
}
.back-button {
  background-color: #f3f3f3;
  color: #13008a;
  border: 1px solid #13008a;
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.back-button:hover {
  background-color: #eee;
}

/* Mobile Responsive Contact Page */
@media (max-width: 768px) {
  .contact-page {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .contact-box, .calendar-section {
    width: 100%;
    max-width: 100%;
  }

  .calendar-days, .calendar-slots {
    flex-direction: column;
    align-items: center;
  }

  .calendar-day, .calendar-slots button {
    width: 100%;
    text-align: center;
  }
}
.quote-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #13008a;
}

.quote-form input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Hero Image for Services Pages */
.hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  background-color: #13008a;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 0, 138, 0.7);
  color: #F49000;
  padding: 1.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

/* Orange Content Box */
.service-detail {
  background-color: #F49000;
  color: #13008a;
  padding: 3rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.service-box {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-box h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.service-box h3 {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.service-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.info-box {
  background-color: #F49000;
  padding: 3rem 1rem;
  color: #13008a;
  text-align: center;
}

.info-box-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.info-box-content h2 {
  text-align: center;
  color: #13008a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-box-content h3 {
  font-weight: 700;
  margin-top: 2rem;
}

.info-box-content ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.info-box-content li {
  margin-bottom: 0.5rem;
}
.page-title {
  text-align: center;
  padding: 2rem 0;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 600;
}

.portfolio-section {
  padding: 4rem 2rem;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.portfolio-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #13008a;
  text-align: center;
  margin-bottom: 2rem;
}

.portfolio-filters {
  text-align: center;
  margin-bottom: 2.5rem;
}

.filter-button {
  background: none;
  border: 2px solid #13008a;
  color: #13008a;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.filter-button:hover,
.filter-button.active {
  background-color: #13008a;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Fix for "Get a Quote" button on mobile */
@media (max-width: 768px) {
  .nav-center {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .quote-button {
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap;
    margin-top: 5px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .navbar .nav-link {
    font-size: 14px; /* Make nav links smaller */
  }

  .quote-button {
    font-size: 13px;
    padding: 6px 10px; /* Smaller button on mobile */
  }

  .nav-center {
    gap: 8px; /* Less spacing between nav links */
  }

  .navbar .logo {
    max-width: 90px; /* Shrinks logo slightly */
  }

  .sprayman {
    max-width: 40px; /* Shrinks sprayman image */
  }
}
@media (max-width: 768px) {
  .nav-center {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .nav-center a.nav-link,
  .quote-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }

  .quote-button {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background-color: #F49000;
    color: black;
    font-weight: bold;
    border-radius: 5px;
  }

  .nav-left,
  .nav-right {
    display: none; /* Optionally hide sprayman and logo for space */
  }
}
