/*==================================================
  1) RESET & BASE
==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  line-height: 1.6;
  color: #45429f;
}

/*==================================================
  2) HEADER & NAVIGATION (Desktop)
==================================================*/
/* Top green bar */
.top-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #040460;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Phone number inside top bar */
.header-contact p {
  margin: 0;
  font-size: 20px;
  padding-right: 85px;
}

/* Main white nav bar */
.main-nav {
  position: sticky;
  top: 52px;
  z-index: 998;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

/* Logo */
.logo img {
  height: 100px;
}

/* Nav links + button container */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 5px;
  list-style: none;
}
.nav-links a {
  color: #696969;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  margin-right: 40px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #3733a6;
}
.nav-links .active {
  color: #040460 !important;
  font-weight: 600;
}

/* Schedule button */
.btn {
  background-color: #3733a6;
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: 200;
  font-size: 20px;
  display: inline-block;
}
.btn:hover {
  background-color: #040460;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
  display: none;
}
.dropdown-links li:not(:last-child) {
  border-bottom: 1px solid #cbcbcb;
}
.dropdown-links a {
  text-decoration: none;
  color: #696969;
  font-size: 22px;
  font-weight: 600;
  padding: 10px 10px;
  display: block;
}
.dropdown-links a.active {
  color: #040460 !important;
}
.dropdown-menu .schedule-btn {
  width: auto !important;
  padding: 8px 14px;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
  border-radius: 4px;
  background-color: #3733a6;
  color: #fff;
  align-self: flex-start;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #3733a6;
  background: none;
  border: none;
  padding: 0.25rem;
}

/*==================================================
  3) HERO SECTIONS (Desktop)
==================================================*/
/* Generic hero */
.hero {
  position: relative;
  height: 90vh;
  overflow: auto;
}

/* Background image for hero */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero content */
.hero-content h1 {
  color: #fff;
  font-size: 3.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  padding-top: 50px;
  white-space: nowrap;
}
.hero-content p {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
}

/* Portfolio hero */
.hero-portfolio {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}
.hero-portfolio .hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.hero-portfolio .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero-portfolio h1 {
  color: #fff;
  font-size: 3.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Services hero */
.hero-services {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}
.hero-services .hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.hero-services .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.392);
  z-index: 0;
}
.hero-services h1 {
  color: #fff;
  font-size: 3.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/*==================================================
  4) TRUSTED CONTRACTOR & BANNER (Desktop)
==================================================*/
.trusted-contractor {
  background-color: #f9fafb;
  margin-top: 10px;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}
.trusted-contractor .container {
  max-width: 2000px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #a4a4a41b;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.trusted-contractor .image {
  flex: 1;
}
.trusted-contractor .image img {
  width: auto;
  height: 400px;
  left: -40%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.trusted-contractor .content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 60px;
  color: #333;
}
.trusted-contractor .content h2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 10px;
  color: #040460;
  font-size: 40px;
  font-weight: 400;
}
.trusted-contractor .content p {
  margin-bottom: 10px;
  font-size: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #585858;
  padding-bottom: 10px;
}
.orange-btn {
  background-color: #EC804A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 200;
  margin-top: 15px;
}
.orange-btn:hover {
  background-color: #3733a6;
}

/* Trusted banner */
.trusted-banner {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.trusted-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.trusted-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.608);
  z-index: 0;
}
.trusted-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 4rem 50px;
  gap: 2rem;
}
.trusted-banner-text {
  flex: none;
  text-align: left;
  margin: 0 120px 0 0;
}
.trusted-banner-text h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.trusted-banner-button {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trusted-banner-button a.btn {
  padding: 12px 20px;
  font-size: 28px;
  white-space: nowrap;
}

/*==================================================
  5) CAROUSEL (Desktop)
==================================================*/
.carousel-image {
  background: linear-gradient(to bottom, #f9fafb 50%, #fffefe 50%);
  overflow: visible;
}
.brush-image {
  margin-bottom: 20px;
  z-index: 3;
}
.brush-image img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.carousel-section {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
  margin-top: -2px;
}
.carousel-section h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 55px;
  color: #040460;
  letter-spacing: 2px;
  margin-top: 40px;
}
.carousel-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.slideshow-container {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 90%;
}
.slides {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: calc(33.33% - 15px);
  box-sizing: border-box;
}
.slide img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: white;
  color: #393939;
  font-size: 40px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.nav-arrow.prev {
  left: 30px;
}
.nav-arrow.next {
  right: 30px;
}
.nav-arrow:hover {
  color: #939393;
}
.button-wrapper {
  margin-top: 20px;
}
.view-projects-button {
  background-color: #EC804A;
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: 200;
  font-size: 30px;
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 60px;
}
.view-projects-button:hover {
  background-color: #3733a6;
}

/*==================================================
  6) SECTION CONTAINERS & TYPOGRAPHY (Desktop)
==================================================*/
/* Section Container */
.section-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9fafb;
}
.header-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.header-with-lines::before,
.header-with-lines::after {
  content: "";
  flex: 1;
  height: 5px;
  background-color: #7D0064;
}
.header-with-lines h2 {
  margin: 0;
  padding: 0 10px;
  font-size: 55px;
  color: #040460;
  letter-spacing: 2px;
  font-weight: normal;
}
.section-paragraph {
  margin: 20px auto 40px;
  font-size: 25px;
  color: #555;
  line-height: 1.6;
  max-width: 950px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 100;
}

/* Box Container */
.box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  justify-items: center;
  align-items: start;
  margin-top: 20px;
}
.box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 40px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
  width: 100%;
  max-width: 900px;
  max-height: 900px;
  overflow-y: auto;
}
.box h3 {
  font-size: 35px;
  color: #EC804A;
  margin-bottom: 20px;
  font-weight: normal;
}
.box p {
  font-size: 22px;
  font-weight: 600;
  color: #555;
  line-height: 1.6;
}
.box:hover {
  background-color: #7d0064;
  color: #fff;
}
.box:hover h3,
.box:hover p {
  color: #ffffff;
}

/* Bottom Container */
.bottom-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 50px;
  padding: 70px 50px 60px 50px;
  margin-top: 50px;
}
.address-section h1 {
  font-size: 35px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #7d0064;
  text-align: left;
}
.address-section .address-text p {
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
  max-width: 300px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  font-weight: normal;
  letter-spacing: normal;
}
.brand-promise-section h1 {
  color: #7d0064;
  font-size: 35px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.brand-promise-section p {
  color: #000;
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo-section,
.address-section,
.brand-promise-section {
  flex: 1;
  text-align: left;
  max-width: 300px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.logo-section {
  flex: 0 0 auto;
  max-width: none;
  margin-right: 50px;
}
.logo-section img {
  width: 300px;
  max-width: 1000px;
}
.address-section,
.brand-promise-section {
  flex: 1;
  max-width: 400px;
}

/* Info Section (header + paragraph) */
.info-section {
  padding: 2rem;
  text-align: center;
}
.info-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.info-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Info Boxes */
.info-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 2rem 0;
}
.info-box {
  flex: 1;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-icon {
  width: 70px;
  height: 70px;
  margin: 0;
}
.info-box h3 {
  font-size: 1.5rem;
  color: #040460;
  margin-bottom: 0.5rem;
}
.info-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Contact Info Boxes */
.contact-info-boxes {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}
.contact-info-boxes .info-box {
  flex: 1 1 600px;
  max-width: 600px;
}

/* Interest Form Section */
.interest-form-section {
  padding: 2rem;
  text-align: center;
}
.interest-form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.interest-form-section p {
  font-size: 1rem;
  margin: 0 auto 2rem;
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}
.interest-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
button[type="submit"] {
  background-color: #040460;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: #040460;
}
.interest-form .form-row:last-child {
  text-align: center;
}
.interest-form .form-row:last-child button {
  margin: 0 auto;
}
.form-box {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

/* Steps / Process Section */
.intro-section {
  text-align: center;
  padding: 2rem;
}
.intro-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #040460;
}
.intro-section h2 {
  font-size: 1.8rem;
  color: #666;
}
.steps-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
.step-item {
  display: flex;
  gap: 2rem;
}
.step-image {
  flex: 0 0 40%;
}
.step-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #040460;
}
.step-content p {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Recent Projects Intro */
.recent-projects-intro {
  text-align: center;
  margin: 1rem 0;
  background-color: #e8e8e8;
  padding: 2rem;
}
.recent-projects-intro h2 {
  font-size: 2rem;
  color: #040460;
  margin-bottom: 1rem;
}
.recent-projects-intro p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  background-color: #f5f5f5;
  padding: 2rem;
  text-align: center;
  margin-bottom: 0;
}
.services-overview h2 {
  font-size: 2.5rem;
  color: #040460;
  margin-bottom: 1rem;
}
.services-overview p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 420px;
  min-height: 500px;
  height: 100%;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.service-box h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #040460;
}
.service-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}
.service-box:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.service-box button {
  align-self: center;
  margin-top: auto;
  background-color: #EC804A;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 25px;
  cursor: pointer;
}
.service-box button:hover {
  background-color: #3733a6;
}

/* Portfolio Grid */
.portfolio-header {
  text-align: center;
  padding: 2rem;
}
.portfolio-header h1 {
  font-size: 3rem;
}
.portfolio-grid {
  padding: 2rem;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.23,1.02,.67,.98), box-shadow 0.25s;
  cursor: pointer;
}
.grid-item:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 60, 60, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: opacity 0.2s;
  pointer-events: none;
}
.grid-item:hover .grid-overlay {
  opacity: 1;
  pointer-events: auto;
}
.grid-overlay span {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.5em 1.2em;
  border-radius: 8px;
}
.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/*==================================================
  7) EXPERIENCE BANNER & ICONS (Desktop)
==================================================*/
/* Experiences banner */
.experiences-banner {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin: 2rem 0;
}
.experiences-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.experiences-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.608);
  z-index: 1;
}
.experiences-icons-row {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 200px;
  z-index: 2;
}
.experience-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 250px;
  min-width: 300px;
}
.experience-icon-img {
  width: 90px;
  height: 90px;
  display: block;
}
.experience-icon-header {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/*==================================================
  8) MODAL OVERLAY
==================================================*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.862);
  justify-content: center;
  padding-top: 100px;
}
.modal-content {
  position: relative;
  margin: 5% auto;
  background-color: #fff;
  width: 80%;
  max-width: 1200px;
  padding: 2rem;
  border-radius: 5px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
}
.modal-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.modal-grid img:hover {
  transform: scale(1.05);
}

/*==================================================
  9) UTILITY CLASSES & SCROLL EFFECTS
==================================================*/
.hide-top-header {
  transform: translateY(-100%);
}
body.scrolled .main-nav {
  top: 0;
}

/*==================================================
  10) RESPONSIVE OVERRIDES (≤1024px)
==================================================*/
/* ───────────────────────────────────────────────────────────────────────────
   10) RESPONSIVE OVERRIDES (≤1024px)
   ─────────────────────────────────────────────────────────────────────────── */
/* ==================================================
   10) RESPONSIVE OVERRIDES (≤1024px)
   ================================================== */
/* ==================================================
   10) RESPONSIVE OVERRIDES (≤1024px)
   ================================================== */
/* ==================================================
   10) RESPONSIVE OVERRIDES (≤1024px)
   ================================================== */
/* ==================================================
   10) RESPONSIVE OVERRIDES (≤1024px)
   ================================================== */
@media (max-width: 1024px) {
  /* ─────────────────────────────────────────────────────────────────────────
     NAVIGATION: hide desktop links, show hamburger
     (unchanged from before)
     ───────────────────────────────────────────────────────────────────────── */
  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
  .nav-right {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
    margin-right: 1rem;
    font-size: 3rem;
  }
  .dropdown-menu.open {
    display: flex;
  }
  .logo img {
    margin-left: 1rem !important;
  }

  /* ─────────────────────────────────────────────────────────────────────────
     HERO (shrink text, etc.)
     (unchanged from before)
     ───────────────────────────────────────────────────────────────────────── */
  .hero {
    height: 60vh;
    padding: 0;
    overflow: hidden;
    width: 100%;
  }
  .hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .hero-content {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .hero-content h1 {
    font-size: 2.1rem !important;
    word-break: break-word;
    margin: 0 auto 0.5rem;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
  .hero-content p {
    font-size: 1.5rem !important;
    word-break: break-word;
    margin: 0 auto 1rem;
    max-width: 100%;
    text-align: center;
  }

  /* ─────────────────────────────────────────────────────────────────────────
     TRUSTED CONTRACTOR & BANNER
     ───────────────────────────────────────────────────────────────────────── */
  .trusted-contractor .container,
  .trusted-banner-content {
    flex-direction: column !important;
    text-align: center !important;        /* center header + paragraph */
    padding: 2rem 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .trusted-contractor .content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0 !important;           /* remove desktop padding */
    padding-right: 0 !important;
    color: #333;
  }
  .trusted-contractor .content h2 {
    /* mobile: “TRUSTED CHICAGO PAINTING AND REMODELING COMPANY” */
    font-size: 2.4rem !important;          /* mobile header size */
    font-weight: bold !important;
    padding-bottom: 10px;                  /* small gap under heading */
    text-align: center !important;
  }
  .trusted-contractor .content p {
    /* mobile: paragraph under that header */
    font-size: 1.2rem !important;            /* mobile paragraph size */
    word-break: break-word;
    margin: 0 auto 1rem;
    max-width: 100%;
    text-align: center !important;
    padding: 0;
  }
  .trusted-contractor .image img {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
  }
  .trusted-banner-text {
    margin: 0 0 1rem;
    text-align: center;                    /* center “Trusted by Hundreds…” header */
  }

  .trusted-banner {
    height: 75vh;
  }

  .trusted-banner-text h2 {
    /* mobile: “Trusted by Hundreds Across Chicago & Indiana” */
    font-size: 2.4rem !important;          /* mobile header size */
    font-weight: bold !important;
    text-align: center !important;
  }
  .trusted-banner-text p {
    /* mobile: paragraph under “Trusted by Hundreds…” */
    font-size: 1rem !important;            /* mobile paragraph size */
    text-align: center !important;
  }
  .trusted-banner-button a {
    width: auto;
  }

  /* ─────────────────────────────────────────────────────────────────────────
     CAROUSEL & GRID LAYOUTS
     (unchanged from before)
     ───────────────────────────────────────────────────────────────────────── */
  .slides {
    gap: 0;           /* no gap so one slide fully fills the viewport */
  }
  .slide {
    min-width: 100%;  /* each slide is exactly 100% of container’s width */
  }
  .box-container,
  .portfolio-grid .grid-container,
  .services-overview .services-grid {
    grid-template-columns: 1fr !important;
  }
  .service-box {
    width: 100%;
    max-width: none;
  }

  /* ─────────────────────────────────────────────────────────────────────────
     RECENT PROJECTS SECTION HEADER
     “Recent Painting and Remodeling Projects”
     ───────────────────────────────────────────────────────────────────────── */
  .carousel-section h2 {
    font-size: 2.4rem !important;   /* mobile header size */
    font-weight: bold !important;   /* make it bold on mobile */
    text-align: center !important;  /* center it on mobile */
    margin: 1.5rem 0;               /* space above/below */
  }

  /* ─────────────────────────────────────────────────────────────────────────
     EXPERIENCES BANNER (stack icons vertically) 
     ───────────────────────────────────────────────────────────────────────── */
  .experiences-banner {
    height: auto !important;
    padding: 1rem 0 !important;
    background-image: url('Assets/64cb2d20c86c605724e6376b_francesca-tosolini-XcVm8mn7NUM-unsplash-topaz-upscale-1.7x.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .experiences-banner .banner-image {
    display: none !important;
  }
  .experiences-banner .banner-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    z-index: 1 !important;
  }
  .experiences-icons-row {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;       /* small vertical gap between icon rows */
    padding-top: 1rem !important;
  }
  .experience-icon-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 90% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    gap: 0.1rem !important;     /* gap between icon and text */
  }
  .experience-icon-img {
    width: 100px !important;   /* make the icon larger on mobile */
    height: auto !important;
    margin: 0 !important;      /* remove any old bottom margin */
    margin-right: 1rem !important;
  }
  .experience-icon-header {
    /* mobile: text next to icons (“5+ Experienced Workers”, etc.) */
    font-size: 1.5rem !important;    /* increase from 1.2rem → 1.4rem */
    font-weight: 600 !important;     /* semi-bold on mobile for legibility */
    text-align: left !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ─────────────────────────────────────────────────────────────────────────
     WHY CHOOSE SECTION
     “Why Choose Precision Painting?” + paragraph
     ───────────────────────────────────────────────────────────────────────── */
  .section-container .header-with-lines h2 {
    /* mobile: “Why Choose Precision Painting?” */
    font-size: 2.6rem !important;   /* mobile header size */
    text-align: center !important;  /* center on mobile */
    margin: 1.5rem 0;               /* spacing above/below */
  }
  .section-container .section-paragraph {
    /* mobile: paragraph under “Why Choose Precision Painting?” */
    font-size: 1.2rem !important; 
    font-weight: 500;    /* mobile paragraph size */
    text-align: center !important;  /* center on mobile */
    margin: 0 auto 1.5rem;          /* spacing below */
    max-width: 90%;                 /* keep lines from stretching too wide */
  }

  /* ─────────────────────────────────────────────────────────────────────────
     BOXES, INFO SECTIONS, FOOTER (full-width / centered)
     (unchanged from before)
     ───────────────────────────────────────────────────────────────────────── */
  .contact-info-boxes {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .contact-info-boxes .info-box {
    width: 100%;
    max-width: 500px;
    max-height: 300px;
  }
  .steps-section {
    flex-direction: column;
    gap: 2rem;
  }
  .dropdown-menu {
    width: 100%;
    left: 0;
  }
  .dropdown-links {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .dropdown-links li {
    width: 100%;
  }
  .dropdown-links a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
  }
  .bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    gap: 30px;
    flex-wrap: wrap;
  }
  .logo-section,
  .address-section,
  .brand-promise-section {
    text-align: center;
    max-width: none;
  }
  .address-section .address-text p,
  .brand-promise-section p {
    text-align: center;
  }

.bottom-container .logo-section {
  margin: 0 auto !important;       /* remove desktop margin-right and center container */
  text-align: center !important;   /* ensure any inline children without explicit display: block also center */
  max-width: none !important;      /* allow full-width behavior if needed */
}

.bottom-container .logo-section img {
  display: block !important;       /* treat <img> as a block‐level element */
  margin: 0 auto !important;       /* horizontally center the logo itself */
}
}

/* ==================================================
   11) EXTRA MOBILE OVERRIDES (≤768px)
   ================================================== */
@media (max-width: 768px) {
  .box {
    width: 100%;
  }
  .contact-info-boxes .info-box {
    max-width: 100%;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}
