:root {
  --light: #EDF6EC;
  --accent: #83B4FF;
  --primary: #5A72A0;
  --dark: #1A2130;
}

body {
  font-family: 'Sora', serif;
  background-color: var(--light);
  color: var(--dark);
}

html, body {
  overflow-x: hidden;
}

a {
  word-break: break-word;
}
/* ======= Header ======= */
.transparent-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
}

.top-bar {
  background: transparent;
  color: white;
  z-index: 1001;
}

.top-bar .container-fluid {
  max-width: 100%;
}

.top-bar i {
  font-size: 1.0rem;
}

.top-bar span {
  font-weight: 500;
}

.top-left i {
  font-size: 18px;
}

.top-right {
  font-weight: 500;
}

.top-bar a,
.social-link {
  text-decoration: none;
}

.scrolled.top-bar {
  color: var(--dark);
}

/* ======= End Header =======*/

/* ======= Navigation Bar ======= */
.nav-logo {
  height: 60px;
  transform: scale(2);
  transform-origin: left center;
  transition: 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(82, 80, 80, 0.2));
}

/* shrink slightly on scroll */
.scrolled .nav-logo {
  transform: scale(1.8);
}

/* Global navbar styles */
/* NAV LINKS HOVER (desktop + mobile) */
.navbar .nav-link {
  transition: all 0.25s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.451);
  display: inline-flex; 
  align-items: center;           
  gap: 6px;                       
  padding: 8px 12px;  
}

/* subtle hover */
.navbar .nav-link:hover {
  color: var(--accent) !important;
  transform: translateY(-1px);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}
/* End global navbar styles */

.navbar {
  background: transparent;
  margin-top: 20px;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-nav {
  gap: 25px;
  margin-left: 0;
  justify-content: center;
}

.navbar .container {
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.navbar .nav-link {
  color: white !important;
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active,
.navbar .dropdown-toggle.show {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.navbar .dropdown-toggle::after {
  display: none;
  margin-left: 6px;   /* space between text and arrow */
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.navbar .dropdown-toggle i {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .dropdown-toggle.show i {
  transform: rotate(180deg);
}

.cta-btn {
  padding: 10px 18px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cta-btn:hover {
  background: white;
  color: var(--dark);
}
/* ON SCROLL */
.scrolled .nav-link {
  color: var(--dark) !important;
}

.scrolled .top-bar a {
  color: var(--dark);
}

.scrolled .cta-btn {
  border-color: var(--dark);
  color: var(--dark);
}

.scrolled .cta-btn:hover {
  background: var(--dark);
  color: white;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/*
@media (max-width: 768px) {
  .dropdown-menu {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
  }
}
*/
@media (max-width: 768px) {
  .dropdown-menu {
    width: 100%;
    text-align: center;
  }

  .dropdown-item {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
  }
}
/* ======= End Navigation Bar ======= */

/* ======= Hero Section ======= */
.hero {
  height: 70vh; /* half-ish screen */
  min-height: 400px; /* prevents it from getting too small on phones */
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);

  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  padding-bottom: 60px;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 10;
  padding: 20px;
}

/* optional: make hero text larger and bolder on desktop
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  max-width: 800px;
}
*/

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
}

.hero-content h1 {
  font-family: 'Canela', serif;
  font-weight: 300;
  font-size: 3.5rem;
  letter-spacing: 1px;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
    margin-top: 50px; /* to account for fixed header (adjust if necessary) */
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .navbar {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
/* ======= End Hero Section ======= */

html {
  scroll-behavior: smooth;
}

/* ===== SERVICES/WHAT WE DO SECTION ===== */
.what-we-do {
  background: white;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.what-we-do h2 {
  font-family: 'Canela', serif;
  font-weight: 300;
  margin-bottom: 40px;
}

.services-strip {
  align-items: center;
}

.service-item {
  padding: 20px 10px;
}

.service-item h6 {
  margin-top: 8px;
  font-weight: 500;
  font-size: 1rem;
}

.service-icon {
  font-size: 40px;
  color: var(--primary);
  transition: 0.3s ease;
}

/* vertical dividers */
.divider {
  border-left: 1px solid #e5e5e5;
}

/* hover effect */
.service-item:hover .service-icon {
  color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-item {
    flex: 0 0 45%;
    border: none !important;
    margin-bottom: 20px;
  }

  .service-item:last-child {
    flex: 0 0 100%;
    text-align: center;
  }
}
/* ===== END SERVICES/WHAT WE DO SECTION ===== */

/* ===== SOCIAL SECTION ===== */
.social-section {
  background: var(--dark);
  position: relative;
  margin-top: -40px;
}

.social-section {
  background: radial-gradient(circle at 20% 20%, #5A72A0, #1A2130);
  background-size: 200% 200%;
  animation: pulseBg 10s ease infinite;
}

@keyframes pulseBg {
  0% { background-position: 20% 20%; }
  50% { background-position: 80% 80%; }
  100% { background-position: 20% 20%; }
}

/* optional subtle gradient (makes it feel less flat) */
.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(131,180,255,0.15), transparent);
  pointer-events: none;
}

.social-section .col-md-4.text-center {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

/* video cards */
.video-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 10/16;
  max-width: 350px;
  margin: auto;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hover animation */
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* social icons */
.social-link {
  font-size: 28px;
  color: white;
  transition: 0.3s ease;
}

.social-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
}
/* ===== END OF SOCIAL SECTION ===== */

/* ===== LEAD FORM ===== */
.lead-section {
  background: var(--light);
}

.lead-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: auto;
}

.lead-card h3 {
  font-weight: 600;
}

.form-control {
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.form-check {
  margin-bottom: 10px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

textarea.form-control {
  resize: none;
}

/* button upgrade */
.lead-card .btn {
  border-radius: 6px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.lead-card .btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
/* ===== END OF LEAD FORM SECTION ===== */

/* ===== FOOTER ===== */

/* Mobile spacing tweak */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}
/* ===== END OF FOOTER ===== */

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-3px);
}

#backToTop {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ======= ABOUT US PAGE ======= */
.about-page {
  padding-top: 140px;
  overflow-x: hidden;
}

.about-page .navbar-nav {
  margin-left: 0 !important;
  justify-content: center;
  width: 100%;
}

.about-page .navbar-about .container {
  max-width: 100%;
}

.about-page .container {
  max-width: 1450px; /* standard Bootstrap feel */
  margin: 0 auto;
}

.about-contact .container {
  max-width: 1350px;
}

.about-page .container-fluid {
  max-width: 100%;
}

/* This centers the dropdown text */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.dropdown-item:hover {
  background: var(--primary);
  color: white;
  transform: translateX(3px);
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.25s ease;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
}

.top-bar-about {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  height: 40px;
}

.navbar-about {
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 1000;
}

.about-contact {
  background: var(--light);
}

.about-contact .row {
  margin-left: 0;
  margin-right: 0;
}

/* LEFT SIDE */
.about-left h2 {
  font-weight: 700;
}

.about-left p {
  color: #444;
  line-height: 1.7;
}

.info-grid strong {
  color: var(--primary);
}

/* socials */
.about-social {
  font-size: 22px;
  margin-right: 12px;
  color: var(--dark);
  transition: 0.3s ease;
}

.about-social:hover {
  color: var(--accent);
}

/* RIGHT FORM CARD (DIFFERENT LOOK FROM INDEX) */
.about-form-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-top: 4px solid var(--primary);
}

.about-form-card .row .col-6 {
  margin-bottom: 8px;
}

/* inputs */
.about-form-card .form-control {
  border-radius: 8px;
  padding: 10px;
}

/* button */
.about-form-card .btn {
  border-radius: 8px;
  padding: 10px 28px;
}

/* subtle hover lift */
.about-form-card:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.about-logo {
  max-width: 450px;
  height: auto;
  display: block;
}

/*
.about-logo {
  display: block;
  margin: 0 auto 15px;
  max-width: 90%;
}
*/ 
/* ===== SOLID HEADER (About Page) ===== */
.solid-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.237);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);  
}

.scrolled {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(8px);
}

/* top bar text/icons */
.solid-header.top-bar {
  color: var(--dark);
}

.solid-header.top-bar a {
  color: var(--dark);
}

/* navbar links */
.solid-header .nav-link {
  color: var(--dark) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);  
}

/* CTA button */
.solid-header .cta-btn {
  border-color: var(--dark);
  color: var(--dark);
}

.solid-header .cta-btn:hover {
  background: var(--dark);
  color: white;
}

/* About page responsive adjustments */
@media (max-width: 768px) {
  .top-bar-about {
    height: 40px;
  }

  .navbar-about {
    top: 20px;
  }

  .about-page .nav-logo {
    transform: scale(1.8);
  }

  .about-contact {
    padding-top: 120px;
  }

  /*
  .about-page .navbar-nav {
    margin-left: 0 !important;
    text-align: center;
  }
  */
  .about-page .navbar-nav {
    width: 100%;
    justify-content: center;
  }

  .about-page .navbar-collapse {
    text-align: center;
    width: 100%;
  }

  .about-page .cta-btn {
    display: block;
    margin: 15px auto 0;
  }  

  .about-page .navbar-about .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .about-left {
    text-align: center;
  }

  .about-left a {
  word-break: break-word;
  }

  .about-logo {
    margin: 0 auto 15px;
    max-width: 375px;
  }

  .info-grid {
    text-align: center;
  }
}
/* ===== END OF ABOUT US PAGE ===== */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ======= OUR WORK/SHOWCASE PAGE ======= */
body.showcase-page {
  background: linear-gradient(
    180deg,
    #EDF6EC 0%,
    #c1d6ff 100%
  );
}

/* ========== SHOWCASE BANNER ======= */
.showcase-banner {
  width: 100%;
  height: 60vh; /* adjust height */
  background: url("banner.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-banner {
  background-size: 100%;
  transition: 6s ease;
}

.showcase-banner:hover {
  background-size: 110%;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
}

.banner-overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .showcase-banner {
    height: 40vh;
  }

  .banner-overlay h1 {
    font-size: 2rem;
  }
}
/* ====== END OF SHOWCASE BANNER ======= */

/* ========== BEFORE/AFTER SECTION (INSPO FROM CODEPEN) ======= */
#page{
  width:100%;
  height:100%;
  position:absolute;
}

/* Our normalize css */
.showcase-page * {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}
/* ====== END OF BEFORE/AFTER SECTION ======= */

/* ========== IMAGE GRID SECTION ======= */
.work-gallery {
  padding: 80px 20px;
}

.gallery-row:active {
  cursor: grabbing;
}

.gallery-row::-webkit-scrollbar {
  height: 6px;
}

.gallery-row img {
  flex: 0 0 auto;
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: 0.3s ease;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
  opacity: 0.7;
}

.gallery-btn:hover {
  background: var(--accent);
}

.gallery-container:hover .gallery-btn {
  opacity: 1;
}

.gallery-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  cursor: grab;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}
/* ====== END OF IMAGE GRID SECTION ======= */

/* ========== VIDEO GRID SECTION ======= */
.video-grid {
  padding: 80px 20px;
}

.video-grid .row video {
  width: 85%;
  /* height: 600px; */
  aspect-ratio: 11/16;
  object-fit: cover; 
  border-radius: 12px;
}

.video-grid video {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 11/16;
  object-fit: cover;
  border-radius: 12px;
}

.video-showcase {
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
}

.video-showcase:hover {
  transform: translateY(-5px);
}

.video-showcase video {
  transition: transform 0.3s ease;
}

.video-showcase:hover video {
  transform: scale(1.03);
}
/* ====== END OF VIDEO GRID SECTION ======= */

/* ========== TIKTOK SECTION ======= */

/*
.tiktok-section {
  padding: 100px 20px;
  text-align: center;
}

.tiktok-section .cta-btn {
  background: var(--accent);
}
*/

.tiktok-section {
  padding: 100px 20px;
  text-align: center;
}

.tiktok-box {
  background: linear-gradient(135deg, #000000, #1A2130);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  max-width: 750px;
  margin: auto;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.tiktok-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(131,180,255,0.3), transparent);
  opacity: 0.6;
}

.tiktok-box h2 {
  position: relative;
  z-index: 2;
}

.tiktok-box p {
  position: relative;
  z-index: 2;
}

.tiktok-box .cta-btn {
  position: relative;
  z-index: 2;
  background: var(--accent);
  border: none;
}

/* ====== END OF TIKTOK SECTION ======= */

/* ====== END OF OUR WORK/SHOWCASE PAGE ===== */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ====== SERVICES PAGES ====== */

/* ===================================================== */
/* ===== INTERIOR SERVICES PAGE ===== */
/* ===================================================== */

body.interiorservices-page {
  background: linear-gradient(
    180deg,
    #c7d8ff 0%,
    #EDF6EC 100%
  );
}

/* ===== HERO / BANNER ===== */

.interiorservices-page .services-banner {
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.interiorservices-page .banner-overlay {
  width: 100%;
  height: 100%;
  padding: 56px 20px 56px;
  background:
    linear-gradient(
      135deg,
      rgba(18, 28, 45, 0.88),
      rgba(42, 60, 92, 0.82)
    );
    
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
}

.interiorservices-page .services-banner h1 {
  font-family: 'Canela', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.interiorservices-page .services-banner p {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.92;
}

/* ===== SERVICES SECTION ===== */

.interiorservices-page .services-section {
  padding: 110px 24px;
}

/* ===== EACH SERVICE ROW ===== */

.interiorservices-page .service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;

  max-width: 1320px;
  margin: 0 auto 120px;
}

/* alternating layout */

.interiorservices-page .service-row.reverse {
  flex-direction: row-reverse;
}

/* ===== TEXT SIDE ===== */

.interiorservices-page .service-text {
  flex: 1;
}

.interiorservices-page .service-text h2 {
  font-family: 'Canela', serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 300;
  color: #1d2738;

  margin-bottom: 10px;
}

.interiorservices-page .service-text h5 {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #5d6d86;
}

.interiorservices-page .service-text strong {
  color: #181818;
}

.interiorservices-page .service-text p {
  font-size: 1rem;
  line-height: 1.95;
  color: #404040;
}

/* ===== IMAGE SIDE ===== */

.interiorservices-page .service-image {
  flex: 1.05;
}

.interiorservices-page .service-image img {
  width: 100%;
  border-radius: 24px;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.12);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;

  display: block;
}

/* hover effect */

.interiorservices-page .service-image img:hover {
  transform: scale(1.025);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.16);
}

/* ===================================================== */
/* ===== EXTERIOR PAGE DIFFERENCES ===== */
/* ===================================================== */

body.exteriorservices-page {
  background: linear-gradient(
    180deg,
    #EDF6EC 0%,
    #E4EFF2 42%,
    #d7ecff 100%
  );
}

/* warmer outdoor banner */

.exteriorservices-page .banner-overlay {
  background:
    linear-gradient(
      135deg,
      rgba(18, 28, 45, 0.88),
      rgba(44, 58, 85, 0.82)
    );
}

/* ===================================================== */
/* ===== TABLET ===== */
/* ===================================================== */

@media (max-width: 992px) {

  .interiorservices-page .service-row,
  .interiorservices-page .service-row.reverse {
    gap: 45px;
  }

  .interiorservices-page .service-text p {
    line-height: 1.8;
  }
}

/* ===================================================== */
/* ===== MOBILE ===== */
/* ===================================================== */

@media (max-width: 768px) {

  .interiorservices-page .services-banner {
    min-height: auto;
  }

  .interiorservices-page .banner-overlay {
    padding:
      120px 24px 70px;
  }

  .interiorservices-page .services-banner p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .interiorservices-page .services-section {
    padding: 70px 20px;
  }

  .interiorservices-page .service-row,
  .interiorservices-page .service-row.reverse {

    flex-direction: column;
    gap: 35px;

    margin-bottom: 90px;

    text-align: center;
  }

  .interiorservices-page .service-text {
    width: 100%;
  }

  .interiorservices-page .service-image {
    width: 100%;
  }

  .interiorservices-page .service-image img {
    width: 100%;
    border-radius: 20px;
  }

  .interiorservices-page .service-text h2 {
    margin-bottom: 14px;
  }

  .interiorservices-page .service-text h5 {
    margin-bottom: 22px;
  }

  .interiorservices-page .service-text p {
    font-size: 0.98rem;
    line-height: 1.85;
  }
}

/* ===================================================== */
/* ===== SMALL MOBILE ===== */
/* ===================================================== */

@media (max-width: 480px) {

  .interiorservices-page .services-banner h1 {
    font-size: 2.4rem;
  }

  .interiorservices-page .services-banner p {
    font-size: 0.95rem;
  }

  .interiorservices-page .service-row {
    margin-bottom: 70px;
  }
}