@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap");

html,
body {
  overflow-x: hidden;
}
/* 🌐 Smooth scroll visual enhancement */
html {
  scroll-behavior: smooth !important;
}

/* ✨ Subtle fade-in animation when sections enter viewport */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background: #fffff4;
  color: #111827;
}

section {
  padding: 50px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-text {
  font-size: 1rem;
  color: #374151;
}
header {
  background-color: #000000 !important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important; /* Keeps it above other elements */
}

/* Compact Button – Smooth Slide Both Ways */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  font-weight: 400;
  color: rgb(53, 53, 53) !important;
  border: 2px solid rgb(53, 53, 53);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  border-radius: 0 !important;
  letter-spacing: 0.5px;
  transition: color 0.6s ease-in-out, transform 0.15s ease; /* smooth color + press feel */
  will-change: transform; /* performance boost */
}

/* Sliding black background */
.btn::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top/left/right/bottom: 0 */
  background-color: black;
  transform: translateX(-100%); /* hidden state */
  transition: transform 0.6s ease-in-out !important; /* ✅ equal speed both in & out */
  z-index: -1;
  will-change: transform;
}

/* Hover: slide background in */
.btn:hover::before {
  transform: translateX(0);
}

/* Hover: smooth color fade */
.btn:hover {
  color: #fff !important;
}

/* Pressed effect (scale) — separated from slide transform */
.btn:active {
  transform: scale(0.96); /* press down effect */
  transition: transform 0.1s ease; /* quick bounce feel */
}

/* === 📱 Mobile View === */
@media (max-width: 768px) {
  .btn {
    padding: 0.4rem 0.9rem; /* smaller */
    font-size: 12px; /* slightly smaller text */
    border-width: 1.6px;
    letter-spacing: 0.4px;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .btn {
    padding: 0.35rem 0.8rem;
    font-size: 11px;
    border-width: 1.4px;
    letter-spacing: 0.3px;
  }
}

/* ===============================
   HEADER LOGO + NAV TEXT STYLING
   =============================== */

/* STUDIO (lighter) */
.logo-text .studio {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  letter-spacing: 1.2px;
  opacity: 0.7;
  color: #ffffff;
  text-transform: uppercase;
  /* font-size: 28px; default for desktop */
}

/* PATRON (bolder) */
.logo-text .patron {
  font-weight: 500;
  color: #fffff4;
  letter-spacing: 1.2px;
  opacity: 0.9;
  font-family: "Montserrat", sans-serif;
  /* font-size: 28px; default for desktop */
}

/* Brand Text (e.g., nav links) */
.text-brand {
  color: #fffff4;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover effect for better UX */
.text-brand:hover {
  color: #ffffff;
}

/* GET FREE QUOTE link */
.get {
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px; /* ✅ Default for laptop/desktop */
}

/* ✅ Responsive adjustment for tablets & phones */
@media (max-width: 768px) {
  .get {
    font-size: 13px !important; /* smaller text for phones */
    letter-spacing: 1px; /* slightly tighter */
  }
}

@media (max-width: 480px) {
  .get {
    font-size: 13px !important; /* extra small for very small phones */
    letter-spacing: 0.5px;
  }
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */

/* For tablets and smaller laptops */
@media (max-width: 1024px) {
  .logo-text .studio,
  .logo-text .patron {
    font-size: 24px;
  }

  .text-brand {
    font-size: 18px;
  }

  .get {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}

/* For tablets and large phones */
@media (max-width: 768px) {
  .logo-text .studio,
  .logo-text .patron {
    font-size: 20px;
  }

  .text-brand {
    font-size: 16px;
  }

  .get {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

/* For small phones */
@media (max-width: 480px) {
  .logo-text .studio,
  .logo-text .patron {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .text-brand {
    font-size: 14px;
  }

  .get {
    font-size: 14px;
    letter-spacing: 0.8px;
  }
}

/* Modal smooth animation (for quoteModal if used elsewhere) */
#quoteModal {
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: "Montserrat", sans-serif !important;
  text-transform: uppercase;
  font-size: small !important;
}

#quoteModal h2 {
  font-size: medium !important;
  word-spacing: 3px !important;
}

/* Top image section */
.modal-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  transition: transform 0.6s ease !important;
}

/* Adjust image position upward */
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -55px !important; /* 👈 Moves image upward to show top part */
  transition: transform 0.6s ease !important;
}

/* Modal open and close states */
#quoteModal.flex {
  opacity: 1;
  transform: scale(1);
}

#quoteModal.hidden {
  opacity: 0;
  transform: scale(0.95);
}

/* Inner form box */
#quoteModal .bg-white {
  animation: slideDown 0.35s ease;
}

/* Button styling */
#quoteModal .btn {
  padding: 0.6rem 1.2rem !important;
  width: 100% !important;
  text-transform: uppercase;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   HERO SLIDESHOW SECTION
================================ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  text-align: center; /* Centers text */
  padding: 0; /* Removes unnecessary padding */
}

/* Overlay removed */
.hero-slideshow::after {
  content: none;
}

/* ================================
   SLIDESHOW BASE
================================ */
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  will-change: transform, opacity;
}
/* ================================
   PERFORMANCE BOOST FOR SLIDES
================================ */
.slide {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: opacity 0.6s ease-in-out;
  image-rendering: -webkit-optimize-contrast;
}


/* ================================
   SLIDE ANIMATIONS
================================ */
.slide:nth-child(1) {
  animation: slideFromRight 20s infinite;
}
.slide:nth-child(2) {
  animation: slideFromTop 20s infinite;
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation: slideFromLeft 20s infinite;
  animation-delay: 8s;
}
.slide:nth-child(4) {
  animation: slideFromBottom 20s infinite;
  animation-delay: 12s;
}
.slide:nth-child(5) {
  animation: slideFromRight 20s infinite;
  animation-delay: 16s;
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  10%,
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateX(-10%);
  }
}

@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  10%,
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateY(10%);
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  10%,
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateX(10%);
  }
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10%,
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateY(-10%);
  }
}

/* ================================
   TEXT ANIMATIONS
================================ */
.animate-text {
  position: relative;
  width: 100%;
  height: 100%;
}

.animate-text div {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  color: white;
  font-family: "Montserrat", sans-serif;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
  transform-origin: center;
}

.animate-text h1 {
  font-size: 4rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 1rem;
  letter-spacing: 0.1px !important;
}
@media (max-width: 1024px) {
  .slide1-text{
    margin-top: -50px !important;
  }
}
@media (max-width: 768px) {
  .slide1-text{
    margin-top: -120px !important;
  }
}
.animate-text p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.4;
}
/* 🔥 Default (Desktop / Laptop) */
.slide2-text p,
.slide3-text p,
.slide4-text p,
.slide5-text p {
  font-size: 2.5rem !important; /* large for wide screens */
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #f8f8f8; /* soft off-white tone */
}

/* === 💻 Tablet View (Below 1024px) === */
@media (max-width: 1024px) {
  .slide2-text p,
  .slide3-text p,
  .slide4-text p,
  .slide5-text p {
    font-size: 2rem !important;
    line-height: 1.55;
    letter-spacing: 0.25px;
    margin-top: 130px !important;
    font-weight: bolder;
    
  }
}

/* === 📱 Mobile View (Below 768px) === */
@media (max-width: 768px) {
  .slide2-text p,
  .slide3-text p,
  .slide4-text p,
  .slide5-text p {
    font-size: 2rem !important;
    font-weight: bolder !important;
    line-height: 1.5;
    letter-spacing: 0.2px;
    margin-top: -100px !important;
  }
}

/* === 📱 Very Small Phones (Below 480px) === */
@media (max-width: 480px) {
  .slide2-text p,
  .slide3-text p,
  .slide4-text p,
  .slide5-text p {
    font-size: 1.3rem !important;
    line-height: 1.4;
    letter-spacing: 0.15px;
  }
}


.animate-text a {
  font-size: 1.125rem;
  pointer-events: auto;
}

/* .animate-text div:hover {
  transform: translate(-50%, -50%) !important;
} */

/* ================================
   TEXT PER SLIDE SYNC
================================ */
.slide1-text {
  opacity: 0;
  animation: textSyncSlide1 20s infinite;
  color: white !important;
}
.slide2-text {
  opacity: 0;
  animation: textSyncSlide2 20s infinite;
}
.slide3-text {
  opacity: 0;
  animation: textSyncSlide3 20s infinite;
}
.slide4-text {
  opacity: 0;
  animation: textSyncSlide4 20s infinite;
}
.slide5-text {
  opacity: 0;
  animation: textSyncSlide5 20s infinite;
}

/* ================================
   FADE-ONLY TEXT KEYFRAMES
================================ */
@keyframes textSyncSlide1 {
  0% {
    opacity: 0;
  }
  10%,
  20% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
  }
}

@keyframes textSyncSlide2 {
  0%,
  20% {
    opacity: 0;
  }
  30%,
  40% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes textSyncSlide3 {
  0%,
  40% {
    opacity: 0;
  }
  50%,
  60% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
  }
}

@keyframes textSyncSlide4 {
  0%,
  60% {
    opacity: 0;
  }
  70%,
  80% {
    opacity: 1;
  }
  90%,
  100% {
    opacity: 0;
  }
}

@keyframes textSyncSlide5 {
  0%,
  80% {
    opacity: 0;
  }
  90%,
  100% {
    opacity: 1;
  }
}

/* ================================
   BUTTONS
================================ */
.openQuoteModal {
  transition: background-color 0.3s, transform 0.3s;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  /* Use portrait images on mobile */
  .slide:nth-child(1) {
    background-image: url("assets/images/MObile-img-1.jpeg") !important;
  }
  .slide:nth-child(2) {
    background-image: url("assets/images/Mobile-image2.jpeg") !important;
  }
  .slide:nth-child(3) {
    background-image: url("assets/images/Mobile-image3.jpeg") !important;
  }
  .slide:nth-child(4) {
    background-image: url("assets/images/download (30).jpeg") !important;
  }
  .slide:nth-child(5) {
    background-image: url("assets/images/download (28).jpeg") !important;
  }

  .slide {
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
  }

  .hero-slideshow {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .animate-text h1 {
    font-size: 2rem;
  }

  .animate-text p,
  .animate-text a {
    font-size: 1rem;
  }
}

/* ================================
   HEADER FIXES
================================ */
header nav {
  padding: 0 60px;
}

header a.text-2xl {
  margin-left: -60px;
}

header ul {
  margin-right: -60px;
}

@media (max-width: 768px) {
  header nav {
    padding: 0 20px;
  }
  header a.text-2xl {
    margin-left: 0;
  }
  header ul {
    margin-right: 0;
  }
}

/* ================================
   CLOSE BUTTON
================================ */
#closeModalBtn:hover {
  color: #f59e0b;
  transform: scale(1.2);
  transition: all 0.2s ease;
}

/* ===============================
   GUARANTEE SECTION
   =============================== */
.guarantee-section {
  background: #fff;
  padding: 40px 20px;
  padding-top: 60px !important;
  color: #545252 !important;
  letter-spacing: 0.5px;
}

.guarantee-section h2 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

/* Container */
.guarantee-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

/* Each item */
.guarantee-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px !important;
}

/* ✅ Default (Desktop) Icons */
.guarantee-item img {
  width: clamp(75px, 7vw, 100px);
  height: 90px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.guarantee-item img:hover {
  transform: scale(1.05);
}

/* Text */
.guarantee-item p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #1c1b1b;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 16px;
  margin: 0;
  text-align: center;
  min-height: 40px;
}
/* === 💻 Laptop View (Medium Desktops) === */
@media (min-width: 1025px) and (max-width: 1440px) {
  .guarantee-container {
    gap: 5px !important; /* reduced spacing between items */
  }
}

/* ===============================
   RESPONSIVE STYLES
   =============================== */

/* === Tablet View === */
@media (max-width: 1024px) {
  .guarantee-section h2 {
    font-size: 24px;
  }

  .guarantee-container {
    gap: 25px;
  }

  .guarantee-item img {
    width: clamp(65px, 9vw, 85px);
    height: 80px;
  }

  .guarantee-item p {
    font-size: 14.5px;
  }
}

/* === 📱 Mobile View === */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 40px 10px;
  }

  .guarantee-section h2 {
    font-size: 22px;
  }

  .guarantee-container {
    gap: 12px;
  }

  /* ✅ Force mobile icons to override desktop */
  .guarantee-item img {
    width: clamp(
      65px,
      13vw,
      90px
    ) !important; /* slightly smaller than before */
    height: 75px !important;
  }

  .guarantee-item p {
    font-size: 13.8px;
    line-height: 1.45;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .guarantee-section h2 {
    font-size: 20px;
  }

  .guarantee-container {
    gap: 8px;
  }

  /* ✅ Even smaller fine-tuned icons */
  .guarantee-item img {
    width: clamp(60px, 14vw, 80px) !important;
    height: 70px !important;
  }

  .guarantee-item p {
    font-size: 12.8px;
  }
}

/* -------------------------------------------------
   OFFER SECTION – BASE STYLES
   ------------------------------------------------- */
.offer-section {
  padding: 60px 20px;
  background: #fff;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.offer-header h2 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-top: 6px;
}

.offer-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  margin-top: -20px !important;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-title {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.offer-icon {
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.offer-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  font-family: "Montserrat", sans-serif !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.offer-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

.services-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  padding-bottom: 10px !important;
}

.services-list li {
  margin-bottom: 8px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #545252;
  line-height: 1.6;
}

/* -------------------------------------------------
   RESPONSIVE OFFER SECTION BUTTON POSITION
   ------------------------------------------------- */
.offer-section .quote-btn-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .offer-section .offer-header .quote-btn {
    display: none;
  }

  .offer-section .quote-btn-mobile {
    display: block;
    margin: 50px auto 0;
    text-align: center;
    padding: 0.8rem 2rem !important;
    font-size: 15px;
    font-weight: 400;
    color: rgb(0, 0, 0) !important;
    border: 1.6px solid rgb(53, 53, 53);
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    width: fit-content;
  }

  .offer-section .quote-btn-mobile:hover {
    background-color: black !important;
    color: white;
    transform: translateY(-2px);
  }
}

/* -------------------------------------------------
   ACCORDION SECTION (TABLET + MOBILE)
   ------------------------------------------------- */
@media (max-width: 1024px) {
  /* Hide desktop cards */
  .offer-container > .offer-card { display: none; }

  /* Accordion container */
  .offer-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Each panel */
  .offer-panel {
    background: transparent; /* removed white background */
    border-radius: 12px;     /* softer corners */
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05); /* lighter shadow */
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05); /* subtle border */
  }

  .offer-panel:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
  }

  /* Panel Header */
  .offer-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    position: relative;
  }

  .offer-panel-header img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .offer-panel-header h3 {
    flex: 1;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .offer-panel-header::after {
    content: "▼";
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .offer-panel.active .offer-panel-header::after {
    transform: rotate(180deg);
  }

  /* Smooth Body Transition */
  .offer-panel-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.3s ease;
    padding: 0 22px;
  }

  .offer-panel.active .offer-panel-body {
    max-height: 500px;
    opacity: 1;
    padding: 16px 22px;
  }

  /* Bullet Points Visible */
  .offer-panel-body .services-list {
    list-style: disc !important;
    padding-left: 24px !important;
  }

  .offer-panel-body .services-list li::marker {
    color: #444;
  }

  .offer-panel-body li {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    font-family: "Montserrat", sans-serif;
  }
}

/* -------------------------------------------------
   📱 MOBILE VIEW (≤768px)
   ------------------------------------------------- */
@media (max-width: 768px) {
  .offer-section { padding: 45px 15px; }

  .offer-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 25px;
  }

  .offer-header h2 { font-size: 22px; }

  .offer-accordion { gap: 12px; padding: 0 15px; }

  .offer-panel {
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }

  .offer-panel-header {
    padding: 16px 18px;
    gap: 12px;
  }

  .offer-panel-header img {
    width: 28px;
    height: 28px;
  }

  .offer-panel-header h3 { font-size: 15.5px; }

  .offer-panel-body {
    padding: 0 18px;
  }

  .offer-panel.active .offer-panel-body {
    padding: 14px 18px;
  }

  .offer-panel-body li {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .quote-btn-mobile {
    margin-top: 40px;
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* -------------------------------------------------
   📱 VERY SMALL PHONES (≤480px)
   ------------------------------------------------- */
@media (max-width: 480px) {
  .offer-header h2 { font-size: 20px; }

  .offer-accordion {
    gap: 10px;
    padding: 0 10px;
  }

  .offer-panel {
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .offer-panel-header {
    padding: 14px;
    gap: 10px;
  }

  .offer-panel-header img {
    width: 24px;
    height: 24px;
  }

  .offer-panel-header h3 {
    font-size: 14.5px;
    letter-spacing: 0.2px;
  }

  .offer-panel-body .services-list {
    padding-left: 20px !important;
  }

  .offer-panel-body li {
    font-size: 13px;
    line-height: 1.5;
  }

  .quote-btn-mobile {
    margin-top: 30px;
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* --- DESKTOP FIX --- */
@media (min-width: 1025px) {
  .offer-container {
    display: flex !important;
  }

  .offer-container > .offer-card {
    display: block !important;
  }

  .offer-accordion {
    display: none !important;
  }
}



/* Partners Section */
.partners-section {
  background: #f6f6f6;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.partners-header {
  max-width: 900px;
  margin: 0 auto 70px;
}

.partners-header h2 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}

.partners-header p {
  color: #555;
  font-size: 16px;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: -20px !important;
    font-family: "Montserrat", sans-serif;

}

/* === Scroll Wrapper === */
.partners-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px !important;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 20px 0;
  animation: scrollLeft 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}


@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* === Partner Card (White Card Background) === */
.partner-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* White card background */
  border-radius: 7px; /* Rounded corners */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); Soft shadow */
  padding: 10px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === Partner Logos === */
.partner-card img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}


/* === Tablet View === */
@media (max-width: 1024px) {
  .partners-header h2 {
    font-size: 25px;
  }

  .partners-header p {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .partners-logos {
    gap: 60px;
    animation-duration: 20s;
  }

  .partner-card img {
    width: 110px;
    height: 70px;
  }
}

/* === 📱 Mobile View === */
@media (max-width: 768px) {
  .partners-section {
    padding: 40px 10px;
  }

  .partners-header h2 {
    font-size: 22px;
  }

  .partners-header p {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .partners-logos {
    gap: 40px;
    animation-duration: 15s;
    padding: 10px 0;
  }

  .partner-card img {
    width: 90px;
    height: 55px;
    opacity: 0.95;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .partners-logos {
    gap: 25px;
    animation-duration: 12s;
  }

  .partner-card img {
    width: 70px;
    height: 45px;
  }

  .partners-header h2 {
    font-size: 20px;
  }

  .partners-header p {
    font-size: 13px;
  }
}
.partners-logos:hover {
  animation-play-state: paused;
}

/* ================================================
   🚚 Infinite Scroll Directional Slideshow (Updated)
   ================================================ */
.infinite-scroll {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

/* container for slides */
.scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Each panel acts as one slide */
.scroll-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 180px;
  z-index: 0;
}

/* Optional dark overlay for better readability */
.scroll-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 0;
}

/* Text styling inside each slide */
.panel-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffcc33;
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.scroll-panel p {
  max-width: 520px;
  font-weight: 300;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #e5e5e59c;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.2px;
  text-align: start;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.scroll-panel p + p {
  margin-top: -10px !important; /* reduce gap between consecutive <p> tags */
}

.scroll-panel:nth-child(1) {
  animation: slideFromTop 20s infinite;
  animation-delay: 0s;
}

.scroll-panel:nth-child(2) {
  animation: slideFromLeft 20s infinite;
  animation-delay: 6.6s;
}

.scroll-panel:nth-child(3) {
  animation: slideFromBottom 20s infinite;
  animation-delay: 13.2s;
}



/* === Keyframes === */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  10%,
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35%,
  100% {
    opacity: 0;
    transform: translateY(20%);
  }
}
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  10%,
  25% {
    opacity: 1;
    transform: translateX(0);
  }
  35%,
  100% {
    opacity: 0;
    transform: translateX(20%);
  }
}
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10%,
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35%,
  100% {
    opacity: 0;
    transform: translateY(-20%);
  }
}

/* ==================================================
   📱 Responsive Backgrounds for Infinite Scroll
   ================================================== */

/* ==================================================
   💻 TABLET (Below 1024px)
   ================================================== */
@media (max-width: 1024px) {
  /* Delivery */
  .scroll-panel:nth-child(1),
  .scroll-panel:nth-child(4) {
    background-image: url("assets/images/mobile-truck.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Responsible */
  .scroll-panel:nth-child(2),
  .scroll-panel:nth-child(5) {
    background-image: url("assets/images/mobile-responsible.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Warranty */
  .scroll-panel:nth-child(3),
  .scroll-panel:nth-child(6) {
    background-image: url("assets/images/mobile-warranty.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Layout adjustments */
  .scroll-panel {
    padding: 70px 30px !important;
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: center !important;
  }

  .panel-text {
    font-size: 16px !important;
    letter-spacing: 3px !important;
  }
  .scroll-panel p {
    max-width: 85% !important;
    font-size: 13px !important;
    line-height: 1.2 !important; /* ✅ Slightly tighter on tablets */
  }
  .scroll-panel p {
    max-width: 85% !important;
    font-size: 13px !important;
  }

}

/* ==================================================
   📱 MOBILE (Below 768px) – Consistent Left Alignment
   ================================================== */
@media (max-width: 768px) {
  /* Backgrounds */
  .scroll-panel:nth-child(1),
  .scroll-panel:nth-child(4) {
    background-image: url("assets/images/truck mobile.jpg") !important;
  }

  .scroll-panel:nth-child(2),
  .scroll-panel:nth-child(5) {
    background-image: url("assets/images/Responcible mobile.jpg") !important;
  }

  .scroll-panel:nth-child(3),
  .scroll-panel:nth-child(6) {
    background-image: url("assets/images/Lifetime mobile.jpg") !important;
  }

  /* Layout and positioning */
  .scroll-panel {
    margin-top: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Center vertically */
    align-items: flex-start !important; /* Left-align text */
    text-align: left !important;
    padding: 0 30px !important; /* Left/right spacing */
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Heading (gold text) */
  .panel-text {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 3.5px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    color: #ffcc33 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  /* Paragraph text */
  .scroll-panel p {
    font-family: "Montserrat", sans-serif !important;
    color: rgba(229, 229, 229, 0.88) !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 300 !important;
    max-width: 90% !important;
    margin: 0 0 6px !important; /* reduced bottom gap */
    text-align: left !important;
  }
  /* Wrap the text with a pseudo “bottom area” effect */
  .scroll-panel .panel-text,
  .scroll-panel p {
    position: relative !important;
    top: 35vh !important; /* ⬅️ shifts whole text block down (adjust value) */
  }

  /* Tighten paragraph spacing */
  .scroll-panel p + p {
    margin-top: 2px !important;
  }

  /* Remove <br> for smooth wrapping */
  .scroll-panel p br {
    display: none !important;
  }
}

/* ==================================================
   📱 VERY SMALL PHONES (Below 480px)
   ================================================== */
@media (max-width: 480px) {
  .scroll-panel {
    padding: 0 20px 80px !important;
  }

  .panel-text {
    font-size: 13px !important;
    letter-spacing: 3px !important;
  }

  .scroll-panel p {
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    max-width: 85% !important;
  }
}

/* estimation section*/
.estimate-section {
  text-align: center;
  padding: 60px 20px;
  margin-top: 20px !important;
}

.estimate-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.estimate-section p {
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #545252;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.estimate-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.estimate-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.estimate-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.estimate-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  font-family: "Montserrat", sans-serif !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.estimate-card p {
  font-size: 14px;
  color: #374151;
  flex-grow: 1;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.2px;
}

.estimate-card .btn {
  padding: 0.5rem 1rem;
}

/* === 📱 Mobile View === */
@media (max-width: 768px) {
  .estimate-section {
    padding: 40px 15px;
  }

  .estimate-section h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .estimate-section p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .estimate-card h3 {
    font-size: 16px;
    letter-spacing: 0.3px;
  }

  .estimate-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* === Enable Manual Horizontal Scroll === */
  .estimate-container {
    flex-wrap: nowrap; /* prevent wrapping */
    overflow-x: auto; /* enable horizontal scroll */
    scroll-behavior: smooth; /* smooth scrolling */
    -webkit-overflow-scrolling: touch; /* iOS support */
    gap: 20px;
    justify-content: flex-start; /* align from start */
    padding-bottom: 10px;
  }

  .estimate-card {
    flex: 0 0 80%; /* show one card at a time with part of next visible */
    margin-right: 10px;
  }

  .estimate-container::-webkit-scrollbar {
    display: none; /* hide scrollbar for cleaner look */
  }
}

/* === 📱 Very Small Phones === */
@media (max-width: 480px) {
  .estimate-section h2 {
    font-size: 20px;
  }

  .estimate-section p {
    font-size: 13px;
  }

  .estimate-card h3 {
    font-size: 15px;
  }

  .estimate-card p {
    font-size: 12px;
  }

  .estimate-card {
    flex: 0 0 85%; /* slightly more visible area */
  }
}




/* ================================
   HOW IT WORKS SECTION
================================ */
.how-it-works {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
  margin-top: -3px !important;
}

.how-it-works h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  border-bottom: none;
  padding-bottom: 0;
  font-family: "Montserrat", sans-serif !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Default desktop CTA button */
.how-it-works .quote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 0;
}

/* Default: hide the mobile button on big screens */
.how-it-works .quote-btn-mobile {
  display: none !important;
}

/* ================================
   STEPS SECTION
================================ */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step .icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  z-index: 1;
}

.step .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.step p {
  font-size: 15px;
  font-family: "Montserrat", sans-serif !important;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* ================================
   💻 Tablet (below 1024px)
================================ */
@media (max-width: 1024px) {
  .how-it-works h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .steps {
    gap: 15px;
  }

  .step .icon {
    width: 80px;
    height: 80px;
  }

  .step .icon img {
    width: 50px;
    height: 50px;
  }

  .step p {
    font-size: 14px;
  }

  /* Hide desktop button */
  .how-it-works .quote-btn {
    display: none !important;
  }

  /* Show mobile button */
  .how-it-works .quote-btn-mobile {
    display: block !important;
  }
}

/* ================================
   📱 Mobile (below 768px)
================================ */
@media (max-width: 768px) {
  .how-it-works {
    padding: 15px 10px;
  }

  .how-it-works h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .steps {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
  }

  .steps::before {
    display: none;
  }

  .step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    width: 100%;
  }

  .step .icon {
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .step .icon img {
    width: 40px;
    height: 40px;
  }

  .step p {
    font-size: 13px;
    line-height: 1.4;
  }

  .how-it-works .quote-btn-mobile {
    margin-top: 40px !important;
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* ================================
   📱 Very Small Phones (below 480px)
================================ */
@media (max-width: 480px) {
  .how-it-works h2 {
    font-size: 20px;
  }

  .step .icon {
    width: 50px;
    height: 50px;
  }

  .step .icon img {
    width: 35px;
    height: 35px;
  }

  .step p {
    font-size: 12px;
  }

  .how-it-works .quote-btn-mobile {
    margin-top: 30px;
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* ================================
   ✨ Button Animation (Slide Effect)
================================ */
.how-it-works .quote-btn-mobile {
  margin: 50px auto 0;
  text-align: center;
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  font-weight: 400;
  color: rgb(53, 53, 53) !important;
  border: 1.6px solid rgb(53, 53, 53);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease, transform 0.1s ease;
  border-radius: 0 !important;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* Left-to-right slide */
.how-it-works .quote-btn-mobile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.how-it-works .quote-btn-mobile:hover::before {
  transform: translateX(0);
}

.how-it-works .quote-btn-mobile:hover {
  color: #fff !important;
}

.how-it-works .quote-btn-mobile:active {
  transform: scale(0.96);
  color: #e5e5e5;
}

.icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 100px;
  height: 100px;
}

.step p {
  font-size: 14px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #323131; /* Adjust to your site’s color theme */
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f05454;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d94343;
}

/* ================================
   CONNECT SECTION (UPDATED)
================================ */
.connect-section {
  background-color: #f6f6f6; /* light gray background */
  text-align: center;
  padding: 120px 20px;
}

.connect-section h2 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.connect-section p {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #323131;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 650px;
}

/* === Button Group === */
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* === Consistent Button Design (Same as How It Works / Offer Section) === */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem !important;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border: 1.6px solid rgb(53, 53, 53);
  color: rgb(0, 0, 0);
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  border-radius: 0;
}

.btn:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
}

/* WhatsApp & Call buttons with icons */
.btn i {
  margin-right: 8px;
  font-size: 18px;
}

.btn.whatsapp i {
  color: #25d366; /* WhatsApp green */
}

.btn.call i {
  color: #000000; /* Subtle blue for call icon */
}

/* === Modal (No Change, Just Cleaned Up) === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease;
}

.modal-close {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 24px;
  color: #333;
  transition: color 0.2s, transform 0.2s;
}

.modal-close:hover {
  color: #f59e0b;
  transform: scale(1.2);
}

.modal-content h2 {
  font-size: 24px;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif !important;
}

.modal-check {
  width: 60px;
  height: 60px;
  border: 2px solid #4caf50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  color: #4caf50;
  font-size: 30px;
  background-color: transparent;
  position: relative;
}

.modal-check i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ================================
   📱 RESPONSIVE STYLING
================================ */

/* === Tablet === */
@media (max-width: 1024px) {
  .connect-section {
    padding: 90px 15px;
  }

  .connect-section h2 {
    font-size: 25px;
  }

  .connect-section p {
    font-size: 14.5px;
    margin-bottom: 35px;
  }

  .btn {
    font-size: 14.5px;
    padding: 0.75rem 1.8rem;
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  .connect-section {
    padding: 70px 15px;
  }

  .connect-section h2 {
    font-size: 22px;
  }

  .connect-section p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: fit-content;
    padding: 12px 26px;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .connect-section {
    padding: 60px 12px;
  }

  .connect-section h2 {
    font-size: 20px;
  }

  .connect-section p {
    font-size: 13px;
  }

  .btn {
    font-size: 13.5px;
    padding: 10px 24px;
  }
}

/* ===== SECTION STYLING ===== */
.scroll-gallery-section {
  background: #fff;
  padding: 60px 40px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px !important;
}

.gallery-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* ===== Updated Font Styles (same as connect-section) ===== */
.gallery-header h2 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-header p {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #323131;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 650px;
}

/* ===== HORIZONTAL SCROLL AREA ===== */
.scroll-gallery {
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Hide scrollbars completely */
.scroll-gallery::-webkit-scrollbar {
  display: none;
}
.scroll-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Track containing all media */
.media-track {
  display: flex;
  gap: 25px;
  padding: 10px 0;
}

/* Media item styling */
.media-item {
  flex: 0 0 auto;
  width: 320px;
  height: 430px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f8f8;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

/* Hover effect */
.media-item:hover img,
.media-item:hover video {
  transform: scale(1.05);
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ================================
   📱 RESPONSIVE STYLING – GALLERY
================================ */

/* === Tablet (below 1024px) === */
@media (max-width: 1024px) {
  .scroll-gallery-section {
    padding: 80px 30px;
  }

  .gallery-header h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .media-item {
    width: 260px;
    height: 360px;
  }

  .gallery-header p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}

/* === Mobile (below 768px) === */
@media (max-width: 768px) {
  .scroll-gallery-section {
    padding: 60px 20px;
  }

  .gallery-header h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .gallery-header p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 500px;
  }

  .media-item {
    width: 200px;
    height: 280px;
  }

  .scroll-gallery {
    gap: 15px;
  }
}

/* === Very Small Phones (below 480px) === */
@media (max-width: 480px) {
  .scroll-gallery-section {
    padding: 50px 12px;
  }

  .gallery-header h2 {
    font-size: 20px;
  }

  .gallery-header p {
    font-size: 13px;
  }

  .media-item {
    width: 160px;
    height: 220px;
  }

  .scroll-gallery {
    gap: 12px;
  }
}

/* ✅ Hide all video controls completely */
.media-item video::-webkit-media-controls {
  display: none !important;
}
.media-item video::-webkit-media-controls-enclosure {
  display: none !important;
}
.media-item video::-webkit-media-controls-panel {
  display: none !important;
}
.media-item video {
  pointer-events: none; /* prevents accidental tap/hover play pause */
}
/* Removed the duplicate .modal-check block and ::before fallback to avoid double checkmark */
/* If Font Awesome not loading, ensure CDN is added; no Unicode fallback to prevent duplicates */

/* ================================
   FAQ SECTION (CONSISTENT STYLE)
================================ */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #fff;
}

.faq-container h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: left;
  font-family: "Montserrat", sans-serif !important;
  color: black !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === FAQ ITEM === */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background-color: #f9fafb;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === QUESTION HEADER === */
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  color: #000;
  line-height: 1.6;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fff;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* === ANSWER CONTENT === */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  background-color: #f9fafb;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000;
  transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 16px 24px;
}

/* === ADD A CTA BUTTON AT THE END (OPTIONAL) === */
.faq-container .faq-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border: 1.6px solid rgb(53, 53, 53);
  color: rgb(0, 0, 0);
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  border-radius: 0;
  margin: 50px auto 0;
  text-transform: uppercase;
}

.faq-container .faq-cta:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
}

/* ================================
   📱 RESPONSIVE DESIGN
================================ */

/* === Tablet === */
@media (max-width: 1024px) {
  .faq-container {
    padding: 60px 15px;
  }

  .faq-container h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 17px;
    padding: 16px 20px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 14px 20px;
  }

  .faq-container .faq-cta {
    font-size: 14.5px;
    padding: 0.7rem 1.8rem;
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  .faq-container {
    padding: 50px 15px;
  }

  .faq-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px 18px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-container .faq-cta {
    display: block;
    margin: 40px auto 0;
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .faq-container {
    padding: 40px 12px;
  }

  .faq-container h2 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-container .faq-cta {
    padding: 10px 24px;
    font-size: 13.5px;
  }
}

/* ================================
   🖥️ Concept Section (Parallax inside section)
================================ */
.concept-section {
  position: relative;
  width: 100vw; /* full width */
  height: 100vh; /* full height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  overflow: hidden;
}

.concept-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/images/wirful.jpg") center center / cover no-repeat;
  background-attachment: fixed; /* 👈 this makes it stay only for this section */
  opacity: 0.9;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.concept-image:hover {
  opacity: 1;
}

/* Text content layer */
.concept-text {
  position: relative;
  z-index: 2;
  width: 40%;
  padding-right: 15%;
  margin-right: -50%;
  text-align: left;
  margin-top: 10%;
}

.concept-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffcc33;
  font-weight: 400;
  margin-bottom: 10px;
}

.concept-text p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #e5e5e59c;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.1px;
}

/* ================================
   💻 Tablet (Below 1024px)
================================ */
@media (max-width: 1024px) {
  .concept-image {
    background: url("./assets/images/Core\ mobile.jpg") center center / cover
      no-repeat !important;
    background-attachment: scroll !important; /* disables fixed for mobile browsers */
  }

  .concept-section {
    height: 85vh !important;
    justify-content: center !important;
  }

  .concept-text {
    width: 80% !important;
    padding: 40px 25px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .concept-text h2 {
    font-size: 16px !important;
    letter-spacing: 3px !important;
  }

  .concept-text p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}

/* ================================
   📱 Mobile (Below 768px)
================================ */
@media (max-width: 768px) {
  .concept-image {
    background: url("./assets/images/Core\ mobile.jpg") center center / cover
      no-repeat !important;
    background-attachment: scroll !important;
  }

  .concept-section {
    height: 80vh !important;
    justify-content: center !important;
  }

  .concept-text {
    margin-top: 615px !important;
    width: 90% !important;
    padding: 30px 20px !important;
    text-align: center !important;
  }

  .concept-text h2 {
    font-size: 14px !important;
    letter-spacing: 3px !important;
  }

  .concept-text p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}

/* ================================
   📱 Very Small Phones (Below 480px)
================================ */
@media (max-width: 480px) {
  .concept-section {
    height: 70vh;
  }

  .concept-text {
    padding: 20px 15px !important;
  }

  .concept-text h2 {
    font-size: 13px !important;
    letter-spacing: 2px !important;
  }

  .concept-text p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
}

/* ================================
   HERO SECTION (Updated & Unified)
================================ */
.hero-banner {
  background-color: #000 !important;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-banner::before {
  width: 300px;
  height: 300px;
  background: #fff;
  top: -100px;
  left: -100px;
}

.hero-banner::after {
  width: 400px;
  height: 400px;
  background: #000;
  bottom: -150px;
  right: -150px;
}

/* === HERO TEXT === */
.hero-content h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif !important;
  color: #fff !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: #ffcc33; /* Golden highlight */
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  color: #f0f0f0;
  line-height: 1.6;
  letter-spacing: 0.3px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* === HERO BUTTON (Your Slide-Grey Animation) === */
.hero-content .btn {
  display: inline-block;
  width: 100% !important;
  padding: 0.6rem 2rem; /* smaller padding */
  font-size: 14px;
  font-weight: 400;
  color: whitesmoke !important; /* default text color */
  border: 1.6px solid grey;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  transition: color 0.3s ease, transform 0.1s ease; /* smooth color + click animation */
  border-radius: 0 !important;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif !important;
}

.hero-content .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e7e5e5; /* slide background */
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

/* Hover effect */
.hero-content .btn:hover::before {
  transform: translateX(0);
}

/* Text color changes on hover */
.hero-content .btn:hover {
  color: black !important; /* text becomes black */
}

/* Active (pressed) state */
.hero-content .btn:active {
  transform: scale(0.96); /* pressed down feel */
  color: #e5e5e5; /* slightly lighter white when pressed */
}

/* ================================
   📱 RESPONSIVE DESIGN
================================ */

/* === Tablet === */
@media (max-width: 1024px) {
  .hero-banner {
    padding: 100px 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 580px;
  }

  .hero-content .btn {
    padding: 0.75rem 1.8rem;
    font-size: 14.5px;
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  .hero-banner {
    padding: 90px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-content .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* === Very Small Phones === */
@media (max-width: 480px) {
  .hero-banner {
    padding: 80px 12px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13.5px;
  }

  .hero-content .btn {
    padding: 10px 24px;
    font-size: 13.5px;
  }
}

/* Shared CTA btn (overridden if needed) */

.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: "Montserrat", sans-serif !important;
  margin-left: -10px !important;
}

/* ================================
   FOOTER CONTENT
================================ */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  margin-left: 60px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.footer-left .studio {
  font-weight: 100 !important;
  letter-spacing: 0.5px;
}

.footer-left .patron {
  font-weight: 500 !important;
  letter-spacing: 0.5px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: -110px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  color: #fff;
}

.location {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  color: #ccc;
}

.footer-socials {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.footer-socials a {
  color: #f9d260;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #f9d260;
  transform: scale(1.2);
}

/* ================================
   FOOTER LINKS
================================ */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-right: -50px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f9d260;
}

/* ================================
   FOOTER DROPDOWN (DESIGN IDEAS)
================================ */
.footer-dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 14px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #f9d260;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 25px; /* 🔥 replaced 'bottom' with 'top' */
  left: 0;
  background-color: #111;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  z-index: 50;
}

.dropdown-content a {
  display: block;
  color: #ddd;
  font-size: 13.5px;
  padding: 8px 14px;
  text-align: left;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #222;
  color: #f9d260;
}

/* Show dropdown when active */
.footer-dropdown.active .dropdown-content {
  display: block;
}
.location {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.location:hover {
  color: #f9d260; /* same gold tone as other hover links */
}


/* ================================
   FOOTER BOTTOM TEXT
================================ */
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: grey;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ================================
   📱 RESPONSIVE STYLES
================================ */

/* === Tablet View (below 1024px) === */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 20px 20px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-socials {
    margin-left: -18px !important;
  }

  .location {
    font-size: 12px;
  }

  .footer-links a,
  .dropbtn {
    font-size: 13.5px;
    margin-left: -8px !important;
  }

  .footer-text {
    font-size: 13px;
  }

  .dropdown-content {
    bottom: 20px;
    min-width: 160px;
  }
}

/* === Mobile View (below 768px) === */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-left: -10px !important;
  }

  .footer-left {
    padding-left: 20px;
    width: 100%;
  }

  .footer-socials {
    margin-left: 3px !important;
  }

  .footer-right {
    justify-content: flex-start;
    width: 100%;
    padding-left: 20px;
    margin-right: 0;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
  }

  .footer-links a,
  .dropbtn {
    font-size: 13px;
    color: #a0a0a0;
    flex: 1 1 45%;
    min-width: 120px;
    text-align: left;
    margin-left: -8px !important;
  }

  .footer-links a:hover,
  .dropbtn:hover {
    color: #f9d260;
  }

  .dropdown-content {
    position: static;
    background-color: #111;
    box-shadow: none;
    padding: 6px 10px;
    border-radius: 4px;
    display: none;
    margin-top: 4px;
  }

  .footer-dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 6px 0;
    font-size: 12.5px;
  }

  .location {
    font-size: 12px !important;
  }

  .footer-text {
    font-size: 12.5px;
    text-align: center;
    width: 100%;
  }
}

/* === Very Small Phones (below 480px) === */
@media (max-width: 480px) {
  .footer {
    padding: 35px 15px 15px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 10px;
  }

  .footer-links a,
  .dropbtn {
    font-size: 12.5px;
    flex: unset;
    width: 100%;
    text-align: left;
    margin-left: -8px !important;
  }

  .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-content a {
    font-size: 12.5px;
    color: #ccc;
  }

  .footer-text {
    font-size: 12px;
  }
}
.modal-content {
  padding: 30px 15px;
}

/* Prevent hero text movement on hover */
.hero-slideshow,
.animate-text,
.hero-slideshow * {
  pointer-events: none; /* stops hover effects from interfering */
}

.hero-slideshow a,
.hero-slideshow button {
  pointer-events: auto; /* keep links & buttons clickable */
}

/* Optional: Disable background fixed on mobile (performance + stability) */
@media (max-width: 1024px) {
  .slide {
    background-attachment: scroll !important;
  }
}
@font-face {
  font-family: "PowerPulse";
  src: url("/public/avenir-font/AvenirNextLTPro-Regular.otf") format("truetype");
  src: url("/public/avenir-font/AvenirNextLTPro-Bold.otf") format("truetype");
  font-weight: normal;
  font-size: normal;
}
/* Default — hide mobile button on desktop/laptop */
.quote-btn-mobile,
.quote-btn-bottom {
  display: none !important;
}

/* Show only on tablets and mobile */
@media (max-width: 1024px) {
  .quote-btn-mobile,
  .quote-btn-bottom {
    display: block !important;
    margin: 40px auto 0;
    padding: 0.8rem 2rem !important;
    font-size: 15px;
    font-weight: 400;
    color: #000 !important;
    border: 1.5px solid #333;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    border-radius: 0;
    width: fit-content;
  }

  .quote-btn-mobile:hover,
  .quote-btn-bottom:hover {
    background-color: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
  }
}

/* Slightly smaller padding for phones */
@media (max-width: 768px) {
  .quote-btn-mobile,
  .quote-btn-bottom {
    margin-top: 35px;
    padding: 12px 28px;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .quote-btn-mobile,
  .quote-btn-bottom {
    margin-top: 30px;
    padding: 10px 24px;
    font-size: 14px;
  }
}

