/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  --white: #ffffff;
  --orange: #e84725;
  --light: #bcbcbc;
  --medium: #48484a;
  --dark: #171717;
  --black: #090a0a;
}

* {
  box-sizing: border-box;
  outline: none !important;
  scroll-behavior: smooth !important;
  scroll-padding-top: 115px;
}

body {
  background: var(--black);
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--dark);
  font-size: 14px;
  top: 0;
  margin: 0;
  padding: 0;
}

.preloader-wrapper {
  height: 100%;
  width: 100%;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}

/* ==========================================================================
   2. TYPOGRAPHY & REUSABLE COMPONENTS
   ========================================================================== */
.section1 .orange-title, .section1-about .orange-title {
  color: var(--orange);
  margin: 0 0 10px 0 !important;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.orange-title {
  color: var(--orange);
  margin: 0 0 10px 0 !important;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
}

.orange-subtitle {
  color: var(--orange);
  margin: 0 0 10px 0 !important;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

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

hr.style1 {
  width: 100%;
  border: 0;
  height: 8px;
  margin: 30px 0;
  background-color: var(--orange);
}

hr.style2 {
  width: 100%;
  border: 0;
  height: 2px;
  margin: 70px 0 20px 0;
  background-color: var(--medium);
}

.quiver {
  width: 100vw;
  height: 30px;
  z-index: 900;
  position: relative;
  margin-bottom: -30px;
  text-align: center;
}

.downArrow {
  opacity: 0;
  animation: slideDown2 0.5s ease-out forwards;
  animation-delay: 0.75s;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--white);
}

/* --- Buttons --- */
.btn-outline {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--orange);
  color: var(--white);
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--orange);
  color: var(--black);
}

.btn-outline-clear {
  background: rgba(255, 255, 255, 0);
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 12px 25px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-clear:hover {
  background-color: var(--orange);
  color: var(--black);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 25px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-white-outline:hover {
  background: var(--black);
}

.phone-link {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--white);
}

/* ==========================================================================
   3. NAVIGATION (NAVBAR & DROPDOWNS)
   ========================================================================== */
.navbar {
  position: fixed !important;
  top: 0;
  height: 115px;
  width: 100vw;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-top {
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: linear-gradient(#48484a, #090a0a);
  border-bottom: 1px solid #eee;
}

.brand-logo {
  height: 77px;
  width: auto;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--white);
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--orange);
}

#nav-menu-mobile {
  display: none;
  margin-left: auto;
}

#navContainer {
  transition: transform 0.3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-open-right #navContainer {
  transform: translate3d(-390px, 0, 0);
  transition: transform 0.3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  position: relative;
  z-index: 20000;
}

.dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--dark);
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.dropdown-trigger:hover .nav-arrow {
  border-top-color: var(--orange);
}

.dropdown-wrapper:hover .nav-arrow {
  transform: rotate(180deg);
  border-top-color: var(--orange);
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark);
  min-width: 290px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 2px solid var(--orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid var(--black);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 15px 25px;
  color: var(--white) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: var(--orange);
  color: var(--black) !important;
}

/* ==========================================================================
   4. SECTION-SPECIFIC PARALLAX & OVERLAYS
   ========================================================================== */

/* --- Hero --- */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  margin-top: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 5;
  pointer-events: none;
}

.hero-parallax-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.hero .layer-1 { background-image: url("../images/hero_bg_001.png"); z-index: 4; }
.hero .layer-2 { background-image: url("../images/hero_bg_002.png"); z-index: 3; }
.hero .layer-3 { background-image: url("../images/hero_bg_003.png"); z-index: 2; }
.hero .layer-4 { background-image: url("../images/hero_bg_004.png"); z-index: 1; }

.hero-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: -20px;
  color: white;
}

.hero h1 {
  font-weight: 700;
  font-size: 18.25vw;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.hero h1 span {
  font-weight: 700;
  font-size: 5vw;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  display: block;
}

.hero hr {
  width: 100%;
  border: 0;
  height: 8px;
  margin: 20px 0;
  background-color: var(--orange);
}

.hero p {
  font-weight: 400;
  font-size: 2vw;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
}

/* --- About --- */
.about {
  position: relative;
  height: calc(100vh - 100px);
  margin-top: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0 10%;
}

.about-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 5;
  pointer-events: none;
}

.about-parallax-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.about .layer-6 {
  background-image: url("../images/about_bg_001.png");
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 4;
}

.about .layer-5 {
  background-image: url("../images/about_bg_002.jpg");
  background-size: cover;
  background-position: center top;
  z-index: 3;
}

.about-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: -20px;
  color: white;
}

.about h1 {
  font-weight: 700;
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.about h1 span {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  display: block;
}

.about hr {
  width: 100%;
  border: 0;
  height: 8px;
  margin: 20px 0;
  background-color: var(--orange);
}

.about p {
  letter-spacing: 0.5px;
  margin: 20px 0 15px 0;
  text-align: left;
}

/* --- Service Main --- */
.service-main {
  position: relative;
  height: calc(100vh - 100px);
  margin-top: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0 10%;
}

.service-main-parallax-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.service-main-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: -20px;
    color: white;
}

.service-main h1 {
  font-weight: 700;
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.service-main h1 span {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  display: block;
}

.service-main hr {
  width: 100%;
  border: 0;
  height: 8px;
  margin: 20px 0;
  background-color: var(--orange);
}

.service-main p {
  letter-spacing: 0.5px;
  margin: 20px 0 15px 0;
  text-align: left;
}

/* Parallax Background Variations for Services */
.maintenance .layer-5 { background-image: url("../images/service_bg_001.jpg"); background-size: cover; background-position: center top; z-index: 3; }
.suspension .layer-5 { background-image: url("../images/service_bg_002.jpg"); background-size: cover; background-position: center top; z-index: 3; }
.tires .layer-5 { background-image: url("../images/service_bg_003.jpg"); background-size: cover; background-position: center bottom; z-index: 3; }
.wheels .layer-5 { background-image: url("../images/service_bg_004.jpg"); background-size: cover; background-position: center bottom; z-index: 3; }
.accessories .layer-5 { background-image: url("../images/service_bg_005.jpg"); background-size: cover; background-position: center top; z-index: 3; }
.upgrades .layer-5 { background-image: url("../images/service_bg_006.jpg"); background-size: cover; background-position: center; z-index: 3; }

/* ==========================================================================
   5. LAYOUT BLOCKS & CONTENT SECTIONS
   ========================================================================== */
.section1 {
  background-image: url(../images/engine.png);
  background-size: auto 30vw;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: var(--white);
  padding: 100px 10% 32vw 10%;
  margin-bottom: -1px;
  text-align: left;
}

.section1-about { background-color: var(--white); padding: 100px 10%; text-align: left; }
.section1-contact { background-color: var(--white); padding: 215px 10% 100px 10%; text-align: left; }
.section2 { background-color: var(--dark); padding: 100px 10%; color: var(--white); text-align: left; }
.section3 { background-color: var(--white); padding: 100px 10% 0 10%; text-align: left; overflow: hidden; }
.section3-reviews { background-color: var(--white); padding: 0 0 100px 0; text-align: left; overflow: hidden; }
.section4 { background-color: var(--dark); padding: 100px 10%; color: var(--white); text-align: left; }
.section5 { background-color: var(--white); padding: 100px 0 50px 0; text-align: left; }
.section5 p { padding: 0 10%; text-align: left; }

#map_canvas { width: 100vw; height: 90vh; z-index: 4; }

/* --- Flex Containers --- */
.section-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  gap: 40px;
}

.section-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.section-title h2, .section5 h2 {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.section1-about h2 {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.section5 hr {
  width: 80%;
  border: 0;
  height: 8px;
  margin: 30px 0;
  background-color: var(--orange);
  text-align: center;
}

.section-divider {
  width: 8px;
  align-self: stretch;
  background-color: var(--orange);
  flex-shrink: 0;
}

.section-paragraph {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-paragraph p { text-align: left; }

/* --- Contact Detail Headers --- */
.section-title2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.section-title2 h2 {
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.section-divider2 {
  width: 8px;
  align-self: stretch;
  background-color: var(--orange);
  flex-shrink: 0;
}

.section-paragraph2 {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-paragraph2 p { text-align: center; font-weight: 900; margin: 0; }

/* --- Contact Page Blocks --- */
.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 50px;
}

.contact-info-block { flex: 1; }

.contact-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contact-icon-svg {
  width: 50px;
  height: 50px;
  fill: var(--orange);
  transition: transform 0.3s ease;
}

.contact-info-block:hover .contact-icon-svg { transform: scale(1.1); }
.contact-info-sep { width: 100% !important; height: 4px !important; align-self: center; }

.contact-info-container .section-title, 
.contact-info-container .section-paragraph { flex: none; text-align: center; }

.contact-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 900;
  transition: all 0.3s ease;
}

.contact-link:hover { color: var(--orange); }

.contact-header-grid { justify-content: center; padding-bottom: 20px; }

.contact-header-row {
  display: flex;
  flex: 0 1 auto;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.contact-header-row.full-width { margin-top: 10px; }
.contact-detail { font-size: 1rem !important; margin: 0 !important; }
.contact-sep { width: 8px; height: 30px; flex-shrink: 0; background-color: var(--orange); }

/* --- Banner & Forms --- */
.orange-banner { background: var(--orange); color: white; padding: 100px 10%; text-align: center; }
.orange-banner h2 { font-size: 3rem; margin: 0; text-transform: uppercase; line-height: 1.25; }
.orange-banner p { font-size: 1.25rem; margin: 10px 0 50px 0; text-transform: uppercase; }

.contact-form h2 { font-size: 2.5rem; margin: 0; text-transform: uppercase; line-height: 1.25; }
.contact-form p { font-size: 100%; margin: 10px 0 50px 0; text-transform: none; font-weight: 300; text-align: left; }

/* Honeypot Styling */
.hp-container {
    display: none !important;
    visibility: hidden !important;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: var(--black);
  padding: 40px;
  border: 2px solid var(--orange);
  text-align: center;
  color: var(--white);
  width: 50%;
}

.modal-content p {
  text-align: left;
  padding-bottom: 25px;
}

.hidden { display: none; }

/* ==========================================================================
   6. GRIDS (SERVICES & MAINTENANCE)
   ========================================================================== */

/* --- Main Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2px;
  background-color: var(--black);
  border-bottom: 3px solid var(--black);
  border-top: 3px solid var(--black);
}

.service-card {
  position: relative;
  height: 33vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
  cursor: pointer;
}

.service-parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.service-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  transition: all 0.4s ease-in-out;
}

.service-info h3 {
  text-transform: uppercase;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.4s ease;
}

.service-info p {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}

.service-info .btn-outline {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0 25px;
  border-width: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.service-card:hover .service-info p { max-height: 200px; opacity: 1; visibility: visible; padding: 10px 0; }
.service-card:hover .service-info .btn-outline { max-height: 60px; opacity: 1; visibility: visible; margin-top: 10px; padding: 12px 25px; border-width: 2px; }

/* --- Maintenance Detail Grid --- */
.maintenance-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    width: 100%;
	max-width: 1000px;
    margin-top: 40px;
}

.maintenance-item-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1.5px solid #eeeeee;
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.maintenance-item-card ul {
    text-align: left;
    padding: 0 30px;
}

.maintenance-icon-box { width: 70px; height: 60px; margin: 0 auto 20px auto; }
.maintenance-item-card h3 { color: var(--dark); font-size: 1rem; text-transform: uppercase; font-weight: 700; margin-bottom: 15px; }
.maintenance-item-card p { color: var(--medium); font-size: 14px; line-height: 1.6; text-align: left; margin: 0; }

.maintenance-item-card.is-visible { animation: iconDrop 0.5s ease-out forwards; }
.maintenance-item-card.is-visible:nth-child(1) { animation-delay: 0.1s; }
.maintenance-item-card.is-visible:nth-child(2) { animation-delay: 0.2s; }
.maintenance-item-card.is-visible:nth-child(3) { animation-delay: 0.3s; }
.maintenance-item-card.is-visible:nth-child(4) { animation-delay: 0.4s; }
.maintenance-item-card.is-visible:nth-child(5) { animation-delay: 0.5s; }
.maintenance-item-card.is-visible:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================================================
   7. REVIEWS & SLIDER (SWIPER)
   ========================================================================== */
.swiper-outer-wrapper { position: relative; width: 100%; max-width: 1200px; margin: 50px auto; padding: 0 70px; }
.swiper { width: 100%; background-color: var(--black); transition: height 0.3s ease; overflow: hidden; position: relative; z-index: 1; }
.swiper-border-frame { position: absolute; inset: 0; border: 8px solid var(--orange); z-index: 20; pointer-events: none; box-sizing: border-box; }

.quote-container::before, .quote-container::after { content: ""; position: absolute; width: 50px; height: 50px; background-size: contain; background-repeat: no-repeat; z-index: 25; pointer-events: none; }
.quote-container::before { background-image: url("../images/quote_top.svg"); top: 20px; left: 20px; }
.quote-container::after { background-image: url("../images/quote_bottom.svg"); bottom: 5px; right: 20px; }

.swiper-slide { height: auto; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; z-index: 2; }
.swiper-slide div { color: var(--white); padding: 0 100px; }
.swiper-slide p { color: var(--white); margin: 0; text-align: left; line-height: 1.6; }

.review-name { display: block; text-align: right; font-size: 110%; font-weight: 700; margin-top: 20px; color: var(--white); }

.swiper-button-next, .swiper-button-prev { color: var(--orange) !important; z-index: 100 !important; top: 50% !important; transform: translateY(-50%); position: absolute !important; width: 40px; height: 40px; margin: 0; opacity: 0.3; transition: all 0.4s ease; }
.swiper-button-next:hover, .swiper-button-prev:hover { opacity: 1; transition: all 0.4s ease; }
.swiper-button-prev { left: 10px !important; }
.swiper-button-next { right: 10px !important; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 32px !important; font-weight: bold; }
.swiper-pagination { z-index: 100 !important; bottom: 25px !important; }
.swiper-pagination-bullet { background: var(--orange); opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--orange); opacity: 1; }

/* Ensure the vendor section and swiper have a white background */
.vendor-section {
    background-color: var(--white);
    padding: 60px 0;
}

.vendor-swiper {
    background-color: var(--white) !important;
}

.vendor-swiper .swiper-slide {
    padding: 0;
}

.vendor-swiper .swiper-slide img {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Gallery Grid Layout */
.gallery-section {
  background-color: var(--black);
  padding: 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 2px;
  background-color: var(--black);
  border-bottom: 3px solid var(--black);
  border-top: 3px solid var(--black);
}

.gallery-card {
  position: relative;
  height: 20vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
  cursor: pointer;
}

.gallery-parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

/* --- Gallery Modal Styles --- */
.modal-gallery {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.modal-content-container {
    display: flex;
    flex-direction: row;
    height: 70vh;
    width: 100%;
    background: var(--dark);
    border-top: 4px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    position: relative;
    overflow: hidden;
}

#modalImg {
    width: 65%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.modal-caption {
    width: 35%;
    height: 100%;
    padding: 40px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

#modalTitle {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
}

.modal-divider {
    width: 100%;
    height: 8px;
    background: var(--orange);
    margin: 20px 0;
}

#modalDesc {
    color: var(--light);
    line-height: 1.6;
	margin: 0;
}

.modal-close {
    position: absolute;
    color: var(--orange);
    font-size: 50px;
	font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
	opacity: 0.3;
}

.modal-close:hover { opacity: 1; }

/* --- Modal Navigation --- */
.modal-top-bar {
    position: relative;
    height: 15vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    z-index: 10;
}

.modal-bottom-bar {
    position: relative;
    height: 15vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    z-index: 10;
}

.modal-controls {
    display: flex;
    justify-content: space-between; 
    width: 100%;
}

/* Styling the exact arrows (Matching Swiper) */
.modal-arrow {
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 0.3;
}

.modal-arrow:hover {
    opacity: 1;
}

.modal-arrow::after {
    content: '';
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
    display: block;
}

.next-arrow::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

.prev-arrow::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

/* Desktop view: side-by-side */
@media (max-width: 1023px) {
    .modal-content-container {
        flex-direction: column;
    }
    #modalImg {
        width: 100%;
        height: 50%;
    }
    .modal-caption {
        width: 100%;
        height: 50%;
        padding: 20px;
    }
}

@media only screen and (max-device-width: 932px) and (orientation: landscape) {
    .modal-content-container {
        flex-direction: row !important;
        height: 70vh !important;
        display: flex !important;
    }

    #modalImg {
        width: 60% !important;
        max-width: 70% !important;
        height: 100% !important;
    }

    .modal-caption {
        width: 40% !important;
        height: 100% !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow-y: auto !important;
    }

    #modalTitle {
        font-size: 1.1rem !important;
    }

    #modalDesc {
        font-size: 0.85rem !important;
    }

    .modal-divider {
        margin: 10px 0 !important;
        height: 4px !important;
    }
	
	.modal-top-bar {
        padding: 0 10px!important;
    }

    .modal-bottom-bar {
        padding: 0 10px!important;
    }
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer {
  background-image: url("../images/footer_logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--dark);
  color: #999;
  padding: 80px 10% 20px 10%;
}

.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 40px; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-contact { text-align: left; flex: 1; }
.footer-contact h4 { color: var(--orange); font-size: 0.9em; margin: 0; text-transform: uppercase; }
.footer-contact p { color: var(--white); font-size: 0.9em; margin: 0; }
.footer-brand { display: flex; justify-content: flex-end; flex: 1; }
.brand-logo_footer { height: 200px; display: block; }

.footer-link { font-size: 0.9em; text-decoration: none; color: var(--white); transition: all 0.3s ease; display: block; }
.footer-link:hover { color: var(--orange); }

.social-links { display: flex; gap: 20px; }
.social-icon { width: 30px; height: 30px; fill: var(--orange); transition: all 0.3s ease; }
.social-icon:hover { fill: var(--white); }

/* ==========================================================================
   9. ANIMATIONS
   ========================================================================== */
@keyframes slideDown { 0% { opacity: 0; transform: translateY(-50px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes slideDown2 { 0% { opacity: 1; transform: translateY(-50px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes iconDrop { 0% { opacity: 0; transform: translateY(-40px); } 100% { opacity: 1; transform: translateY(0); } }

.scroll {
  opacity: 0;
  animation: slideDown 0.5s ease-out forwards;
  animation-delay: 0.75s;
  position: absolute;
  pointer-events: none;
    bottom: 30px;
    width: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scrollTxt1 { font-size: 90%; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 0; margin: 0; color: var(--orange); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); }
.scrollArrow { width: 50px; height: auto; fill: var(--orange); }

/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* --- Tablet / Mid-size --- */
@media (max-width: 991px) {
  .contact-info-row { flex-direction: column; gap: 60px; }
}

@media (max-width: 800px) {
  .section1 { padding: 50px 10% 32vw 10%; }
  .section1-contact { padding: 165px 10% 50px 10%; }
  .section1-about, .section2, .section4, .orange-banner { padding: 50px 10%; }
  .section3 { padding: 50px 10% 0 10%; }
  .section3-reviews { padding: 0 0 50px 0; }
  .section5 { padding: 50px 0 0 0; }

  .orange-title { font-size: 2rem; text-align: center; }
  .orange-subtitle { font-size: 1.5rem; }
  .orange-banner h2, .contact-form h2 { font-size: 2rem; }
  .orange-banner p { font-size: 1rem; margin: 10px 0 40px 0; }
  .section-title h2, .section5 h2 { font-size: 1.75rem; }
  .section1-about h2 {font-size: 1.75rem; }
  .section5 p { margin-top: 0; }

  .section-container { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
  .section-title { text-align: center; }
  .section-divider { width: 100%; height: 8px; margin: 10px 0; align-self: auto; }
  .section-paragraph p { margin: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  .service-info p, .service-info .btn-outline { opacity: 1; visibility: visible; }
  .service-card:hover .service-info { transform: none; }
  .swiper-slide div { padding: 0px 50px; }
  .vendor-wrapper { margin: 0 0 25px 0!important; }
  .contact-sep { display: none; }
  .about h1, .service-main h1 { font-size: 2.75rem; }
  .drop-text { display: none; }
  .perk { padding: 0!important; }
}

/* --- Mobile Nav --- */
@media screen and (max-width: 600px) {
  #nav-menu, .social-links, .phone-link { display: none; }
  #nav-menu-mobile { display: block; }
  .navbar { height: 75px; }
  .brand-logo { height: 65px; left: 55px; }
  .brand-logo_footer { height: 240px; display: block; }
  .hero, .about, .service-main { height: calc(70vh - 75px); margin-top: 75px; }
}

@media (max-width: 768px) { .contact-header-row { gap: 10px; } }

/* --- Portrait (Phones) --- */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (orientation: portrait) {
  html, body { overflow-x: hidden; width: 100%; position: relative; }
  .hero p { font-size: 2.85vw; letter-spacing: 1px; }
  .site-footer { background-image: none; background-color: var(--dark); color: #999; padding: 80px 10% 20px 10%; }
  #map_canvas { height: 60vh; }
  .swiper-button-next, .swiper-button-prev { display: none; }
  .swiper-outer-wrapper { padding: 0; }
  .swiper-border-frame { border: none; border-top: 8px solid var(--orange); border-bottom: 8px solid var(--orange); }
  .quote-container::before { left: 10px; }
  .quote-container::after { right: 10px; }
  .quote-container::before, .quote-container::after { width: 35px; height: 35px; }
  .swiper-pagination { bottom: 15px !important; }
  .footer-grid { flex-direction: column; gap: 20px; }
  .pushy-open-right #navContainer { transform: translate3d(-280px, 0, 0); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card { height: 50vw; }
  .scroll { bottom: 0px; }
  .vendor-swiper { width: 80%; }
}

/* --- Landscape --- */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (orientation: landscape) {
  .hero { height: calc(100vh - 115px); margin-top: 115px; }
  .hero hr { margin: 10px 0; }
  .hero h1 { font-size: 12.25vw; }
  .hero h1 span { font-size: 3.25vw; }
  .hero p { font-size: 1.9vw; letter-spacing: 1px; }
  .site-footer { background-image: none; background-color: var(--dark); color: #999; padding: 80px 10% 20px 10%; }
  .scroll { bottom: 0px; }
}