/* ==========================================================
   GLOBAL RESET & BASE STYLES
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 70px 0;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announcement-bar {
  width: 100%;
  background: #1e4db7;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  height: 0;
  padding: 0;
  transition: height 0.35s ease, padding 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-bar.show {
  height: 34px;
  padding: 6px 0;
}

.announcement-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.announcement-close:hover {
  opacity: 1;
}

/* ==========================================================
   HEADER STYLES - BOTH VERSIONS (for main site + policy pages)
   ========================================================== */
/* Premium Header (main site) */
.premium-header {
  background: #ffffff;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: static;
  z-index: 1000;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  width: 150px;
  height: auto;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-contact .divider {
  opacity: 0.4;
}

.quote-btn {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.quote-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}

/* Policy Page Header (your current HTML structure) */
.header-top {
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111;
  padding: 12px 0;
  position: static; /* <<< FIX: remove fixed */
  border-bottom: 1px solid rgba(0,0,0,0.06);
}


.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.quote-button {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.quote-button:hover {
  background: #f5c32e;
  transform: translateY(-2px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.header-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.call-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-info span {
  color: #d0d0d0;
}

.call-info a {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================
   NAVIGATION - BOTH VERSIONS
   ========================================================== */
/* SUPER SLIM LUXURY NAVBAR */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 999;

  background: rgba(60, 60, 60, 0.35); /* slightly lighter glass */
  backdrop-filter: blur(18px) saturate(200%);
  -webkit-backdrop-filter: blur(18px) saturate(200%);
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  padding: 4px 0;  /* ⭐ SUPER SLIM */
  display: flex;
  justify-content: center;

  transition: backdrop-filter .3s ease, background .3s ease, padding .25s ease;
}

/* Nav links – also slim */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 32px; /* slight tighten */
  padding: 4px 20px; /* much slimmer */
}

.header-nav a {
  color: #ffffff;
  font-size: 12px;       /* ⭐ smaller text = slim */
  letter-spacing: 0.14em;
  padding: 4px 2px;       /* ⭐ slimmer vertical padding */
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease;
}

.header-nav a:hover {
  color: #f4d03f;
  opacity: 1;
}

/* When navbar becomes sticky (top=0), add a fade */
.header-nav {
  opacity: 0.85;
  transition: opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.header-nav.is-sticky {
  opacity: 1;
  background: rgba(60, 60, 60, 0.55);
  backdrop-filter: blur(22px) saturate(250%);
}

/* Policy Page Navigation */
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 34px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0; /* RESET: Remove the top positioning */
  z-index: 999;
  padding: 12px 0;
  margin-top: 0; /* RESET: Remove the margin */
}

.nav-menu a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 12px 0;
  transition: 0.25s;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f4d03f, #d4af37);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: #f4d03f;
}

.nav-menu a:hover::after {
  width: 100%;
}
/* ===== ROTATING HERO ===== */

.rotating-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}

.rotating-hero-images {
  position: absolute;
  inset: 0;
}

.rotating-hero-images .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.rotating-hero-images .hero-bg.active {
  opacity: 1;
}

.rotating-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  z-index: 2;
}

.rotating-hero-content {
  z-index: 3;
  text-align: center;
  margin-bottom: 80px;
}

.rotating-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.rotating-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.rotating-hero-content .hero-btn {
  background: #d4af37;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.25s ease;
}

.rotating-hero-content .hero-btn:hover {
  background: #f5c32e;
  transform: translateY(-3px);
}

.rotating-hero {
  margin-top: 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .rotating-hero-content h1 {
    font-size: 2.2rem;
  }
  .rotating-hero-content p {
    font-size: 1rem;
  }
}

/* ==========================================================
   PROCESS SECTION
   ========================================================== */
.our-process {
  padding: 70px 0;
  background: #f8f9fa;
}

.process-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  flex: 1 1 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  min-height: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.process-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.step-header h3 {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.step-content {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-content li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

.step-content li:last-child {
  border-bottom: none;
}

.step-content li::before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-section {
  padding: 80px 0;
  background: #f3f3f3;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.about-heading {
  font-size: 36px;
  margin-bottom: 14px;
}

.about-subheading {
  font-size: 16px;
  margin: 18px 0 8px;
  font-weight: 600;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
  font-size: 14px;
}

.about-list li {
  position: relative;
  padding-left: 14px;
  color: #333;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
}

.about-images.about-single {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  align-self: flex-start;
}

.about-images.about-single .about-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: block;
}

.about-card {
  position: absolute;
  width: 55%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,  0, 0, 0.6);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card-1 {
  top: 4%;
  left: -8%;
  transform: translateY(24px) translateX(-18px) rotate(-7deg);
  z-index: 2;
}

.about-card-2 {
  top: 30%;
  right: -6%;
  transform: translateY(24px) translateX(14px) rotate(5deg);
  transition-delay: 0.12s;
  z-index: 3;
}

.about-card-3 {
  bottom: -10%;
  left: 10%;
  transform: translateY(24px) rotate(3deg);
  transition-delay: 0.24s;
  z-index: 4;
}

.about-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================
   REVIEWS SECTION
   ========================================================== */
.reviews-section {
  padding: 70px 0 60px;
  background: #070707;
  color: #f5f5f5;
}

.reviews-section .container {
  max-width: 1200px;
}

.reviews-section h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.review-subtitle {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 26px;
}

.reviews-content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.rating-summary {
  background: radial-gradient(circle at top, #181818 0%, #101010 60%, #050505 100%);
  border-radius: 16px;
  border: 1px solid #262626;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  padding: 18px 22px;
}

.average-rating {
  text-align: left;
  margin-bottom: 12px;
}

.stars-large .star {
  color: #f5c32e;
  font-size: 18px;
  margin-right: 2px;
}

.rating-number {
  font-size: 32px;
  font-weight: 700;
  margin-top: 6px;
}

.total-reviews {
  color: #9a9a9a;
  font-size: 13px;
}

.rating-bars {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 64px 1fr 60px;
  align-items: center;
  column-gap: 6px;
  font-size: 13px;
  color: #dedede;
}

.bar-container {
  height: 8px;
  background: #232323;
  border-radius: 999px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background: linear-gradient(90deg, #f5c32e, #f4d03f);
  border-radius: 999px;
}

.individual-reviews {
  background: radial-gradient(circle at top, #191919 0%, #101010 55%, #050505 100%);
  border-radius: 16px;
  border: 1px solid #262626;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  padding: 20px 24px 18px;
  display: flex;
  flex-direction: column;
}

.review-carousel {
  position: relative;
  min-height: 210px;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: none;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.reviewer-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5c32e;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info {
  font-size: 13px;
  color: #d0d0d0;
}

.reviewer-name {
  font-weight: 600;
  color: #ffffff;
}

.review-date {
  font-size: 12px;
  color: #9a9a9a;
}

.google-verified {
  color: #4fd08a;
  font-size: 12px;
}

.review-stars .star {
  color: #f5c32e;
  font-size: 16px;
}

.review-product {
  font-size: 13px;
  color: #b5b5b5;
  margin-bottom: 6px;
}

.review-title {
  font-size: 17px;
  margin-bottom: 8px;
  color: #ffffff;
}

.review-text {
  font-size: 13px;
  line-height: 1.55;
  color: #e0e0e0;
  max-height: 130px;
  overflow-y: auto;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.carousel-prev,
.carousel-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #202020;
  color: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #f5c32e;
  color: #111;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: 0.2s ease;
}

.dot.active {
  background: #f5c32e;
  transform: scale(1.25);
}

/* ==========================================================
   CONTACT FORM / QUOTE WIZARD
   ========================================================== */
#contact-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 900px;
  max-height: 88vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 38px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  border: 1px solid #f1f1f1;
  transition: 0.35s ease;
  z-index: 10000;
  color: #111;
}

#contact-form::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}

#contact-form.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.form-close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  border: none;
  background: none;
  color: #222;
  font-size: 32px;
  cursor: pointer;
  transition: 0.25s ease;
}

.form-close-btn:hover {
  color: #d4af37;
  transform: scale(1.1);
}

.wizard-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 38px;
}

.wizard-sidebar h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.wizard-sidebar p {
  font-size: 14px;
  color: #444;
  margin-bottom: 22px;
}

.wizard-progress {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.wizard-dot {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.wizard-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
}

.wizard-dot.active {
  color: #d4af37;
  font-weight: 600;
}

.wizard-dot.active::before {
  background: #d4af37;
  border-color: #d4af37;
}

.wizard-step {
  display: none;
  animation: fadeWizard 0.35s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeWizard {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.wizard-helper {
  font-size: 13px;
  color: #777;
  margin-bottom: 16px;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-form label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.05em;
}

.project-form input,
.project-form select,
.project-form textarea {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: 0.25s ease;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  background: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

.upload-box {
  padding: 24px 18px;
  border: 2px dashed #ccc;
  border-radius: 14px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: 0.3s ease;
  color: #333;
}

.upload-box:hover {
  border-color: #d4af37;
  background: #fff7d9;
}

.upload-hint {
  color: #666;
  font-size: 12px;
}

.review-list {
  padding-left: 18px;
  font-size: 14px;
  color: #111;
}

.review-list li {
  margin-bottom: 8px;
}

.wizard-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.wizard-prev,
.wizard-next,
.wizard-submit {
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  transition: 0.25s ease;
}

.wizard-prev {
  background: #eee;
  color: #333;
}

.wizard-prev:hover:not(:disabled) {
  background: #ddd;
}

.wizard-next {
  background: #000;
  color: #fff;
}

.wizard-next:hover {
  background: #222;
}

.wizard-submit {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.wizard-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.wizard-success {
  display: none;
  text-align: left;
  animation: fadeWizard 0.35s ease;
}

.wizard-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.wizard-success p {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.call-now-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 24px;
  background: #d4af37;
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: 0.25s ease;
}

.call-now-btn:hover {
  background: #c29a2c;
}

/* ==========================
   GALLERY PREVIEW ALIGN FIX
========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;  /* FORCE SAME HEIGHT */
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* makes all images fill evenly */
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-placeholder:hover img {
  transform: scale(1.06);
}
/* =======================================
   SLIM DARK FOOTER (Clean + Premium)
======================================= */

.slim-footer {
  background: #222;              /* dark grey */
  color: #ddd;
  padding: 30px 0 25px;          /* THIN FOOTER */
  font-family: 'Montserrat', sans-serif;
}

.slim-footer .footer-columns {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.slim-footer .footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.5px;
}

.slim-footer .footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #ccc;
  margin: 4px 0;
  text-decoration: none;
  transition: 0.2s ease;
}

.slim-footer .footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

/* bottom area */
.slim-footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.slim-footer .footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* payment icons */
.slim-footer .payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slim-footer .payment-icons img {
  height: 22px;
  opacity: 0.85;
  transition: 0.2s;
}

.slim-footer .payment-icons img:hover {
  opacity: 1;
}

/* ==========================================================
   POLICY PAGE STYLES
   ========================================================== */
.policy-wrapper {
  max-width: 950px;
  margin: 60px auto 100px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.policy-wrapper h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.policy-wrapper h2 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 8px;
  color: #222;
}

.policy-wrapper p,
.policy-wrapper li {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}

.policy-wrapper ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-wrapper li {
  margin-bottom: 6px;
}

.policy-wrapper h2:not(:first-of-type) {
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* ==========================================================
   RESPONSIVE STYLES
   ========================================================== */
@media (max-width: 900px) {
  .vertical-slider-hero {
    flex-direction: column;
    padding: 40px 20px;
    height: auto;
    gap: 30px;
  }

  .vertical-slider {
    width: 100%;
    max-width: 420px;
    height: 60vh;
    min-height: 420px;
  }

  .vertical-hero-content {
    text-align: center;
  }

  .reviews-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rating-summary {
    order: 2;
  }

  .individual-reviews {
    order: 1;
  }

  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #contact-form {
    padding: 26px 22px;
    max-height: 92vh;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-images.about-single {
    margin: 0 auto;
  }

  .nav-menu {
    gap: 20px;
    padding: 10px 0;
  }

  .nav-menu a {
    font-size: 12px;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .header-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-nav ul {
    gap: 20px;
    padding: 10px 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ===========================
   APPLE-STYLE PROCESS CARDS
   =========================== */
.our-process {
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
  padding: 110px 0;
}

.process-step {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);

  transition: all 0.35s ease;
  transform: translateY(0);
}

/* Hover effect = Apple clean pop */
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
  border-color: rgba(212,175,55,0.35); /* subtle gold tint */
}

/* Icons bigger and cleaner */
.process-icon {
  width: 95px;
  height: 95px;
  margin-bottom: 18px;
}

/* Titles Apple-style */
.process-step h3 {
  font-size: 26px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

/* Bullet list cleaner */
.step-content li {
  border-bottom: 1px solid #eee;
  font-size: 15px;
  padding: 12px 0 12px 20px;
  color: #555;
}

.step-content li::before {
  font-size: 18px;
  color: #d4af37; /* gold dot */
}

/* Fade-up animation */
.process-step {
  opacity: 0;
  transform: translateY(25px);
}

.process-step.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

/* ==========================
   HOME GALLERY GRID FINAL
========================== */

.home-gallery {
  padding: 50px 0 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 5; /* ALL images consistent */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Button */
.gallery-btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

.gallery-btn {
  padding: 12px 28px;
  background: #000;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s ease;
}

.gallery-btn:hover {
  background: #333;
}

/* ================================
   FIX: QUOTE MODAL TEXT COLORS
================================ */
#quoteModal,
#projectQuoteModal {
  color: #111 !important;            /* default text */
}

#quoteModal label,
#projectQuoteModal label {
  color: #111 !important;
}

#quoteModal input,
#quoteModal textarea,
#projectQuoteModal input,
#projectQuoteModal textarea {
  color: #111 !important;
  background: #fff !important;
}

#quoteModal h1,
#quoteModal h2,
#projectQuoteModal h1,
#projectQuoteModal h2 {
  color: #111 !important;
}

#quoteModal p,
#projectQuoteModal p {
  color: #222 !important;
}

/* ============================================================
   MOBILE OPTIMIZATION
   ============================================================ */
@media (max-width: 768px) {

  /* Fix rotating hero for mobile */
  .rotating-hero {
    height: 70vh;
  }
  
  .rotating-hero-content h1 {
    font-size: 2rem;
  }
  
  .rotating-hero-content p {
    font-size: 1rem;
  }
  
  /* Stack process steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Improve form layout */
  .field-row {
    flex-direction: column;
    gap: 0;
  }
  
  /* Fix navigation for mobile */
  .header-nav ul {
    flex-wrap: wrap;
    gap: 15px;
    padding: 8px 15px;
  }
  
  .header-nav a {
    font-size: 11px;
  }
  
  /* Stack footer columns */
  .slim-footer .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  /* KEEP LOGO AND QUOTE BUTTON SIDE-BY-SIDE ON MOBILE */
  .premium-header .header-inner {
    display: flex;
    flex-direction: row !important; /* Keep row layout */
    align-items: center !important;
    justify-content: space-between; /* Logo left, button right */
    gap: 15px;
    padding: 8px 15px;
    text-align: left;
  }

  /* Logo sizing for mobile */
  .header-logo {
    width: auto;
    display: block;
  }

  .header-logo img {
    width: 120px; /* Slightly smaller for mobile */
    height: auto;
  }

  /* Hide contact info on mobile */
  .header-contact {
    display: none !important;
  }

  /* Quote button adjustments for mobile */
  .quote-btn {
    width: auto; /* Don't force full width */
    margin: 0;
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* For main site navigation (.header-nav) */
  .header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 12px 15px;
  }

  .header-nav a {
    flex: 0 1 auto;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 0;
  }

  /* For policy page navigation (.nav-menu) */
  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 12px 0;
  }

  .nav-menu a {
    flex: 0 1 auto;
    font-size: 12px;
    letter-spacing: 1px;
  }

}

@media (max-width: 480px) {
  /* Extra small devices */
  .rotating-hero-content h1 {
    font-size: 1.8rem;
  }
  
  /* Even smaller adjustments for very small screens */
  .premium-header .header-inner {
    padding: 6px 12px;
  }
  
  .header-logo img {
    width: 110px;
  }
  
  .quote-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
  
  .header-nav a {
    font-size: 11px;
  }
}

/* ==========================================================
   PROCESS SECTION MOBILE FIX
   ========================================================== */
@media (max-width: 768px) {
  .our-process {
    padding: 60px 0; /* Reduce padding on mobile */
    min-height: auto; /* Remove any fixed height */
    overflow: visible; /* Ensure content isn't clipped */
  }

  .process-steps {
    gap: 30px; /* More space between stacked steps */
  }

  .process-step {
    min-height: auto; /* Remove fixed height */
    padding: 30px 20px; /* Adjust padding for mobile */
    margin-bottom: 0; /* Remove any bottom margin */
  }

  .process-step:last-child {
    margin-bottom: 0; /* Ensure last item isn't cut off */
  }

  /* Ensure process steps are fully visible */
  .process-step.reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .our-process {
    padding: 50px 0; /* Even less padding on very small screens */
  }

  .process-step {
    padding: 25px 15px;
  }

  .process-step h3 {
    font-size: 22px; /* Slightly smaller heading on mobile */
  }

  .step-content li {
    font-size: 14px; /* Slightly smaller text */
    padding: 10px 0 10px 18px;
  }
}

/* ==========================================================
   TRUE MOBILE FIX FOR SHOP PRODUCT GRID
   ========================================================== */
@media (max-width: 768px) {

  /* Force product grid to expand fully */
  .product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Product cards scale normally */
  .product-card {
    height: auto !important;
  }

  /* Make sure the whole right side scrolls fully */
  .shop-products {
    height: auto !important;
    overflow: visible !important;
  }

  /* Fix the container if it had hidden overflow */
  .shop-layout {
    height: auto !important;
    overflow: visible !important;
  }
}

/* ==========================================================
   FULL PAGE HEIGHT FIX FOR SHOP (MOBILE + DESKTOP)
   ========================================================== */

.shop-layout,
#shop-products,
.product-grid,
.shop-section {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Make sure the entire page expands normally */
body, html {
  height: auto !important;
  overflow-x: hidden;
}

/* Ensure footer sits at the bottom of the FULL content */
footer {
  position: relative !important;
  margin-top: 40px;
}


