/* ================================================================
   LORDS OF DETAILING — Premium Automotive Theme
   Brand Gold | Alternating Light & Dark Sections
================================================================ */

/* ---- CSS Variables ---- */
:root {
  /* Brand Gold */
  --gold:        #C9A84C;
  --gold-bright: #F0C040;
  --gold-dark:   #8B6914;
  --gold-shadow: rgba(201,168,76,0.3);
  --gold-soft:   rgba(201,168,76,0.12);

  /* Dark surfaces */
  --dark-bg:     #0a0a0a;
  --dark-card:   #111111;
  --dark-card-2: #161616;
  --dark-border: #252525;

  /* Light surfaces */
  --light-bg:    #ffffff;
  --light-alt:   #f8f5ef;
  --light-card:  #ffffff;
  --light-border:#e2dac8;

  /* Text on dark */
  --text-light:  #f0f0f0;
  --text-mid:    #aaaaaa;
  --text-dim:    #666666;

  /* Text on light */
  --text-dark:   #1a1801;
  --text-dark-2: #4a4530;
  --text-dark-3: #888878;

  --white: #ffffff;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --tr: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.28);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.1);
  --shadow-dark: 0 4px 28px rgba(0,0,0,0.5);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body  {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.65;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ================================================================
   SECTION UTILITIES
================================================================ */
section { padding: 90px 0; overflow-x: clip; }

/* Light section typography */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 8px;
}
.sec-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--gold);
}

.sec-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 14px;
}
.sec-title span { color: var(--gold); }

/* On dark sections */
.on-dark .sec-title  { color: var(--white); }
.on-dark .sec-desc   { color: var(--text-mid); }
.on-dark .sec-label  { color: var(--gold); }
.on-dark .sec-label::before { background: var(--gold); }

/* On light sections */
.sec-title      { color: var(--text-dark); }
.sec-desc       { color: var(--text-dark-2); font-size: .95rem; max-width: 580px; }

.sec-divider {
  width: 55px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px; margin: 12px 0;
}

/* ---- Buttons ---- */
.btn-gold {
  background: var(--gold);
  color: var(--dark-bg);
  border: 2px solid var(--gold);
  padding: 12px 30px; border-radius: 4px;
  font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  transition: var(--tr); position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transition: left .5s;
}
.btn-gold:hover::after { left: 100%; }
.btn-gold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  color: var(--dark-bg); transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-dark {
  background: transparent; color: var(--text-dark);
  border: 2px solid var(--light-border);
  padding: 12px 30px; border-radius: 4px;
  font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  transition: var(--tr);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-dark:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-wh {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 12px 30px; border-radius: 4px;
  font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  transition: var(--tr);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-wh:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
================================================================ */
#mainNav {
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 0; transition: var(--tr); z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(3,3,3,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.navbar-brand img { height: 52px; width: auto; transition: var(--tr); }
.navbar-brand:hover img { opacity: .85; }

.navbar-nav .nav-link {
  color: var(--text-mid) !important;
  font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 28px 14px !important;
  position: relative; transition: var(--tr);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

.navbar-toggler { border: 1px solid rgba(201,168,76,.3); padding: 6px 10px; outline: none; box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,.8%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media(max-width:991px){
  .navbar-collapse {
    background: rgba(8,8,8,.99); padding: 12px 20px 20px;
    border-top: 1px solid rgba(201,168,76,.1); margin-top: 1px;
  }
  .navbar-nav .nav-link { padding: 12px 4px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta-wrap { padding: 8px 0 4px; }
}

/* ================================================================
   HERO
================================================================ */
#hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; max-width: 100vw; padding: 0; margin: 0; }

.hero-carousel, .hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 100vh; min-height: 620px; max-width: 100%; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 7s linear;
}
.carousel-item.active .slide-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.5) 55%,rgba(201,168,76,.08) 100%);
}

.hero-body {
  position: relative; z-index: 5;
  height: 100%; display: flex; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: 5px 16px; border-radius: 50px;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-title .hl { color: var(--gold); }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  max-width: 520px; line-height: 1.75; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide-in animations */
.carousel-item .hero-tag,
.carousel-item .hero-title,
.carousel-item .hero-desc,
.carousel-item .hero-ctas { opacity: 0; transform: translateY(28px); }
.carousel-item.active .hero-tag   { animation: fadeUp .6s .2s forwards; }
.carousel-item.active .hero-title { animation: fadeUp .6s .4s forwards; }
.carousel-item.active .hero-desc  { animation: fadeUp .6s .6s forwards; }
.carousel-item.active .hero-ctas  { animation: fadeUp .6s .8s forwards; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 46px; height: 46px; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4);
  border-radius: 4px; opacity: .7; transition: var(--tr);
}
.hero-carousel .carousel-control-prev { left: 18px; }
.hero-carousel .carousel-control-next { right: 18px; }
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover { background: var(--gold); opacity: 1; }

.hero-carousel .carousel-indicators { bottom: 70px; }
.hero-carousel .carousel-indicators button {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.35); border: none; transition: var(--tr);
}
.hero-carousel .carousel-indicators button.active {
  background: var(--gold); width: 50px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .65rem; text-transform: uppercase; letter-spacing: 2px;
  animation: floatY 2.2s ease infinite;
}
.mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.35); border-radius: 11px; position: relative;
}
.mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot { 0%{opacity:1;top:5px} 100%{opacity:0;top:18px} }
@keyframes floatY   { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-7px)} }

/* ================================================================
   ABOUT  — white section
================================================================ */
#about { background: var(--light-bg); }

.about-img-wrap { position: relative; }
.about-main-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
}
.about-yrs-badge {
  position: absolute; bottom: -20px; left: -16px;
  background: var(--gold); color: var(--dark-bg);
  padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-gold); z-index: 2;
}
.about-yrs-badge .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; line-height: 1; }
.about-yrs-badge .lbl { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }

.about-corner {
  position: absolute; top: -14px; right: -14px;
  width: 70px; height: 70px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 var(--radius) 0 0;
}

.about-text { padding-left: 20px; }

.about-feat { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.about-feat-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.about-feat h6 { font-family: var(--font-body); font-weight: 600; font-size: .88rem; color: var(--text-dark); margin-bottom: 2px; }
.about-feat p  { color: var(--text-dark-2); font-size: .78rem; margin: 0; }

@media(max-width:991px){
  .about-text { padding-left: 0; padding-top: 36px; }
  .about-yrs-badge { left: 10px; bottom: -10px; }
}
@media(max-width:575px){
  .about-main-img { height: 280px; }
  .about-yrs-badge { left: 8px; bottom: -8px; padding: 12px 16px; }
  .about-yrs-badge .num { font-size: 2rem; }
  .about-corner { display: none; }
}

/* ================================================================
   STATS — dark accent section
================================================================ */
#stats {
  background: var(--dark-card); padding: 64px 0;
  position: relative; overflow: hidden;
}
#stats::before,#stats::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--gold),var(--gold-bright),var(--gold),transparent);
}
#stats::before { top: 0; }
#stats::after  { bottom: 0; }

.stat-card {
  text-align: center; padding: 32px 20px;
  background: var(--dark-card-2); border: 1px solid var(--dark-border);
  border-radius: var(--radius); transition: var(--tr); height: 100%;
}
.stat-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(201,168,76,.12);
}
.stat-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold-soft); border: 2px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem; margin: 0 auto 16px; transition: var(--tr);
}
.stat-card:hover .stat-icon { background: var(--gold); color: var(--dark-bg); border-color: var(--gold); }
.stat-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-num sup { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; }
.stat-lbl { color: var(--text-mid); font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

/* ================================================================
   SERVICES — light alt section
================================================================ */
#services { background: var(--light-alt); }

.service-card {
  background: var(--light-card); border: 1px solid var(--light-border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--tr); height: 100%; display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
}
.service-card:hover {
  border-color: var(--gold); transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12), 0 0 0 1px rgba(201,168,76,.3);
}
.svc-img { position: relative; height: 190px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .svc-img img { transform: scale(1.1); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.65) 0%,transparent 60%); }
.svc-badge {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--dark-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--tr);
  box-shadow: 0 4px 12px rgba(201,168,76,.45);
}
.service-card:hover .svc-badge { background: var(--gold-bright); transform: scale(1.1); }

.svc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.svc-name { font-family: var(--font-head); font-size: 1.05rem; color: var(--text-dark); margin-bottom: 6px; transition: var(--tr); }
.service-card:hover .svc-name { color: var(--gold-dark); }
.svc-desc { color: var(--text-dark-2); font-size: .8rem; line-height: 1.6; flex: 1; margin-bottom: 14px; }

.svc-actions { display: flex; gap: 8px; }
.svc-btn-call {
  flex: 1; padding: 8px 10px; border-radius: 4px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  background: transparent; border: 1px solid var(--gold); color: var(--gold-dark);
  text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  transition: var(--tr);
}
.svc-btn-call:hover { background: var(--gold); color: var(--dark-bg); }
.svc-btn-enq {
  flex: 1; padding: 8px 10px; border-radius: 4px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  background: var(--gold); border: 1px solid var(--gold); color: var(--dark-bg);
  text-align: center; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  transition: var(--tr); font-family: var(--font-body);
}
.svc-btn-enq:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); }

/* ================================================================
   WHY CHOOSE US — white section
================================================================ */
#why-us { background: var(--light-bg); position: relative; overflow: hidden; }
#why-us::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle,rgba(201,168,76,.07) 0%,transparent 70%);
  pointer-events: none; max-width: 100%;
}

.why-card {
  background: var(--light-card); border: 1px solid var(--light-border);
  border-radius: var(--radius); padding: 26px 22px;
  height: 100%; transition: var(--tr); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .4s ease;
}
.why-card:hover::after { width: 100%; }
.why-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }

.why-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.25rem; margin-bottom: 14px; transition: var(--tr);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--dark-bg); border-color: var(--gold); }
.why-title { font-family: var(--font-body); font-weight: 700; font-size: .9rem; color: var(--text-dark); margin-bottom: 6px; }
.why-desc  { color: var(--text-dark-2); font-size: .78rem; line-height: 1.65; margin: 0; }

/* ================================================================
   TESTIMONIALS — light alt section
================================================================ */
#testimonials { background: var(--light-alt); }

.testimonial-swiper { padding-bottom: 50px !important; }

.testi-card {
  background: var(--light-card); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden; transition: var(--tr); height: 100%;
  box-shadow: var(--shadow-md);
}
.testi-card::before {
  content: '\201C'; font-family: Georgia,serif; font-size: 110px;
  color: rgba(201,168,76,.12);
  position: absolute; top: -16px; left: 8px; line-height: 1; pointer-events: none;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }

.testi-stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { color: var(--text-dark-2); font-size: .84rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .88rem; color: var(--text-dark); margin-bottom: 2px; }
.testi-role { font-size: .7rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }

.swiper-pagination-bullet { background: var(--light-border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 22px !important; border-radius: 2px !important; }

/* ================================================================
   FAQ — white section
================================================================ */
#faq { background: var(--light-bg); }

.faq-accordion .accordion-item {
  background: var(--light-card); border: 1px solid var(--light-border) !important;
  border-radius: var(--radius) !important; margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.faq-accordion .accordion-button {
  background: var(--light-card); color: var(--text-dark);
  font-weight: 600; font-size: .88rem; padding: 18px 22px;
  border-radius: var(--radius) !important; transition: var(--tr);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gold-soft); color: var(--gold-dark); box-shadow: none;
}
.faq-accordion .accordion-button::after { /* default Bootstrap arrow stays */ }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
  background: var(--gold-soft); color: var(--text-dark-2);
  font-size: .84rem; line-height: 1.72; padding: 0 22px 18px;
  border-top: 1px solid rgba(201,168,76,.2);
}

/* ================================================================
   GALLERY — light alt section
================================================================ */
#gallery { background: var(--light-alt); }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gallery-grid .g-item:first-child { grid-column: span 2; }

.g-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.gallery-grid .g-item:first-child { aspect-ratio: 16/9; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--tr);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 1.8rem; color: var(--dark-bg); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.96);
  z-index: 9990; display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--dark-bg); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: var(--tr);
}
.lightbox-close:hover { background: var(--gold-bright); }

@media(max-width:767px){
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}
@media(max-width:480px){
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 1; }
}

/* ================================================================
   CONTACT — white section, map full width
================================================================ */
#contact { background: var(--light-bg); }

.cinfo-card {
  background: var(--light-card); border: 1px solid var(--light-border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: var(--tr); box-shadow: var(--shadow-md);
  height: 100%;
}
.cinfo-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.cinfo-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.05rem; flex-shrink: 0;
}
.cinfo-label { font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dark-3); margin-bottom: 3px; }
.cinfo-val { color: var(--text-dark); font-size: .87rem; font-weight: 500; line-height: 1.5; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--light-border); box-shadow: var(--shadow-md); }

/* ================================================================
   FOOTER — copyright only, dark
================================================================ */
#footer {
  background: var(--dark-bg);
  border-top: 2px solid rgba(201,168,76,.2);
  padding: 18px 0;
}
#footer p { color: var(--text-dim); font-size: .78rem; margin: 0; text-align: center; }
#footer a { color: var(--gold); }
#footer a:hover { color: var(--gold-bright); }

/* ================================================================
   FLOATING: Enquire Side Tab
================================================================ */
.enq-tab { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 989; cursor: pointer; }
.enq-tab-btn {
  writing-mode: vertical-rl; text-orientation: mixed;
  background: var(--gold); color: var(--dark-bg);
  padding: 18px 12px; border-radius: 8px 0 0 8px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: -4px 0 20px rgba(201,168,76,.35);
  transition: var(--tr); border: none; font-family: var(--font-body);
}
.enq-tab-btn:hover { background: var(--gold-bright); padding-right: 16px; }
.enq-tab-btn i { font-size: .9rem; }

/* ================================================================
   FLOATING: Call FAB
================================================================ */
.call-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--dark-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(201,168,76,.5);
  animation: callPulse 2.4s ease infinite;
  transition: var(--tr); text-decoration: none;
}
.call-fab:hover { color: var(--dark-bg); transform: scale(1.1); box-shadow: 0 8px 30px rgba(201,168,76,.7); }
.call-tip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--dark-card); color: var(--white);
  padding: 5px 12px; border-radius: 4px; font-size: .74rem;
  font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--tr); border: 1px solid var(--dark-border);
}
.call-fab:hover .call-tip { opacity: 1; }
@keyframes callPulse {
  0%   { box-shadow: 0 6px 20px rgba(201,168,76,.5); }
  50%  { box-shadow: 0 6px 30px rgba(201,168,76,.75), 0 0 0 8px rgba(201,168,76,.12); }
  100% { box-shadow: 0 6px 20px rgba(201,168,76,.5); }
}

/* ================================================================
   SCROLL TO TOP
================================================================ */
.scrolltop {
  position: fixed; bottom: 94px; right: 28px; z-index: 988;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--light-card); border: 1px solid var(--light-border);
  color: var(--text-dark-2); display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--tr); box-shadow: var(--shadow-md);
}
.scrolltop.show { opacity: 1; visibility: visible; }
.scrolltop:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-bg); transform: translateY(-3px); }

/* ================================================================
   ENQUIRE MODAL
================================================================ */
.enq-modal .modal-content {
  background: var(--light-card); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.enq-modal .modal-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none; padding: 22px 28px;
}
.enq-modal .modal-header .modal-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--dark-bg); }
.enq-modal .modal-header .btn-close { filter: none; opacity: .7; }
.enq-modal .modal-body { background: var(--light-card); padding: 26px 28px; }
.enq-modal .modal-footer { background: var(--light-alt); border-top: 1px solid var(--light-border); padding: 14px 28px; }
.enq-modal .modal-subtitle { color: var(--text-dark-2); font-size: .82rem; margin-bottom: 18px; }

.enq-modal .form-label { color: var(--text-dark-2); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 5px; }
.enq-modal .form-control,
.enq-modal .form-select {
  background: var(--light-alt); border: 1px solid var(--light-border);
  color: var(--text-dark); border-radius: 6px; padding: 11px 15px; font-size: .85rem; transition: var(--tr);
}
.enq-modal .form-control:focus,
.enq-modal .form-select:focus {
  background: var(--light-alt); border-color: var(--gold); color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.enq-modal .form-control::placeholder { color: var(--text-dark-3); }
.enq-modal .form-select option { background: #fff; color: var(--text-dark); }

/* Contact form (same light style) */
.form-label { color: var(--text-dark-2); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 5px; }
.form-control, .form-select {
  background: var(--light-alt); border: 1px solid var(--light-border);
  color: var(--text-dark); border-radius: 6px; padding: 11px 15px; font-size: .85rem; transition: var(--tr);
}
.form-control:focus, .form-select:focus {
  background: var(--light-alt); border-color: var(--gold); color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-control::placeholder { color: var(--text-dark-3); }
.form-select option { background: #fff; color: var(--text-dark); }

/* AOS override */
[data-aos] { transition-duration: .7s !important; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width:767px){
  section { padding: 60px 0; }
  .svc-actions { flex-direction: column; }
  .call-fab, .scrolltop { right: 16px; }
  .call-fab { bottom: 18px; }
  .scrolltop { bottom: 82px; }
  /* prevent any child from creating horizontal scroll */
  .container, .row { max-width: 100%; }
  /* hide hero carousel arrow controls on mobile */
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next { display: none; }
}
@media(max-width:575px){
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline-wh { justify-content: center; text-align: center; }
  /* tighten inner padding so nothing bleeds out */
  .container { padding-left: 16px; padding-right: 16px; }
  .cform-wrap { padding: 18px; }
  .enq-modal .modal-body { padding: 18px; }
  .testi-card { padding: 20px; }
}
