/* ============================================
   GRANDEUR EVENTS – Rentals Page Styles
   ============================================ */

   :root {
  --white: #FFFFFF;
  --cream: #F6F0E8;
  --gold: #CCAF7D;
  --gold-dark: #B89A6A;
  --dark: #37312B;
  --dark-soft: #4A433C;
  --text: #5A534C;
  --light-gray: #F9F7F4;
  --shadow: 0 10px 40px rgba(55, 49, 43, 0.08);
  --shadow-lg: 0 20px 60px rgba(55, 49, 43, 0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Proxima Nova', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(204, 175, 125, 0.18);
  padding: 14px 0 28px;          /* extra bottom padding so logo can overlap */
  position: relative;
  z-index: 1001;
  font-size: 0.85rem;
  color: var(--dark-soft);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;   /* end-to-end spread */
  align-items: center;
  position: relative;
  min-height: 48px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.top-bar-left {
  justify-content: flex-start;
  padding-right: 20px;

}

.top-bar-right {
  justify-content: flex-end;
  padding-left: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.top-bar-item a {
  color: var(--dark-soft);
  font-weight: 500;
}

.top-bar-item a:hover {
  color: var(--gold);
}

/* Circular logo that overlaps into the nav */
.logo-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -20%);   /* sits lower so it enters the nav */
  z-index: 1002;
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(55, 49, 43, 0.12);
  border: 3px solid var(--cream);
  transition: var(--transition);
}

.logo-badge:hover {
  transform: translate(-50%, -22%) scale(1.04);
  box-shadow: 0 10px 30px rgba(204, 175, 125, 0.25);
}

.logo-badge .logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
}

/* Quote button */
.btn-quote {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--gold);
  color: var(--white);
}

/* ========== MAIN NAV ========== */
.main-nav {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(55, 49, 43, 0.06);
  border-top: 1px solid rgba(204, 175, 125, 0.12);
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  min-height: 58px;
  position: relative;
}

/* The menu itself becomes a full-width flex row */
.nav-menu {
  display: flex;
  width: 100%;
  max-width: 1100px;
  justify-content: space-between;   /* pushes left & right groups to the ends */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Left and right groups */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;        /* items sit close to the logo from the left */
  padding-right: 20px;
}

.nav-right {
  justify-content: flex-start;      /* items sit close to the logo from the right */
  padding-left: 20px;
}

/* The empty space that the circular logo sits in */
.nav-logo-space {
  width: 180px;                     /* must be slightly wider than the logo badge */
  flex-shrink: 0;
}

/* Individual links */
.nav-menu a {
  display: block;
  padding: 18px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-dark);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--dark);
  cursor: pointer;
  padding: 12px;
  margin-left: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-logo-space {
    width: 110px;
  }
  .nav-menu a {
    padding: 16px 10px;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    justify-content: flex-end;
    padding: 0 12px;
    min-height: 52px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 12px 0 20px;
    box-shadow: 0 12px 30px rgba(55, 49, 43, 0.1);
    z-index: 999;
    max-width: none;
  }

  .nav-menu.open {
    display: flex;
  }

  /* On mobile stack everything normally */
  .nav-left,
  .nav-right {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .nav-left {
    justify-content: center;
  }

  .nav-right {
    justify-content: center;
  }

  .nav-logo-space {
    display: none;                  /* logo is already shown in the top bar */
  }

  .nav-menu a {
    padding: 14px 24px;
    font-size: 0.85rem;
    text-align: center;
  }

  .nav-menu a::after {
    display: none;
  }
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--dark);
  cursor: pointer;
  padding: 12px;
  margin-left: auto;
}

/* ========== RESPONSIVE – TOP BAR & NAV ========== */
@media (max-width: 1024px) {
  .logo-badge {
    width: 96px;
    height: 96px;
  }
  .logo-badge .logo-img {
    width: 68px;
    height: 68px;
  }
  .nav-menu a {
    padding: 16px 12px;
    font-size: 0.72rem;
  }
}

/* ========== RESPONSIVE – TOP BAR & NAV ========== */
@media (max-width: 768px) {
  .top-bar {
    padding: 16px 0 12px;
    position: relative;
    z-index: 100;
  }

  .top-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Logo first (top) */
  .logo-badge {
    order: 0;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 86px;
    height: 86px;
    margin: 0 auto;
    z-index: 110;
  }

  .logo-badge:hover {
    transform: scale(1.03);
  }

  .logo-badge .logo-img {
    width: 60px;
    height: 60px;
  }

  /* Right side second (phone + quote) */
  .top-bar-right {
    order: 1;
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 0.8rem;
    flex: none;
    padding: 0;
  }

  /* Left side third (location) */
  .top-bar-left {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 0.8rem;
    flex: none;
    padding: 0;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Nav below everything */
  .main-nav {
    position: relative;
    z-index: 90;
    margin-top: 10px;
  }

  .nav-inner {
    justify-content: flex-end;
    padding: 0 16px;
    min-height: 48px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(204, 175, 125, 0.35);
    border-radius: 6px;
    color: var(--dark);
    font-size: 1.15rem;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 12px 0 20px;
    box-shadow: 0 12px 30px rgba(55, 49, 43, 0.1);
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 24px;
    font-size: 0.88rem;
    text-align: center;
  }

  .nav-menu a::after {
    display: none;
  }

  /* Hero starts cleanly below header */
  .rentals-hero {
    padding-top: 36px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 14px 0 10px;
  }

  .top-bar-item span,
  .top-bar-item a {
    font-size: 0.74rem;
  }

  .btn-quote {
    padding: 8px 14px;
    font-size: 0.66rem;
  }

  .logo-badge {
    width: 76px;
    height: 76px;
  }

  .logo-badge .logo-img {
    width: 52px;
    height: 52px;
  }

  .main-nav {
    margin-top: 8px;
  }

  .rentals-hero {
    padding-top: 28px;
  }
}

/* ========== RENTALS HERO ========== */
.rentals-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a251f 100%);
  color: var(--white);
  text-align: center;
  padding: 130px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Soft decorative glow */
.rentals-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(204, 175, 125, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.rentals-hero .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.rentals-hero .subtitle {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rentals-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--white);
}

.rentals-hero .line {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.rentals-hero .hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  opacity: 0.92;
  margin: 0 auto 28px;
  max-width: 620px;
}

/* Quick trust points */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Buttons */
.rentals-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.rentals-hero .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.rentals-hero .btn-hero:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.rentals-hero .btn-hero-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.rentals-hero .btn-hero-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.rentals-hero .fa-whatsapp {
  color: #25D366;
  font-size: 1.15em;
}

.rentals-hero .btn-hero-outline:hover .fa-whatsapp {
  color: #128C7E;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  .rentals-hero {
    padding: 110px 20px 75px;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .rentals-hero .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .rentals-hero .btn-hero {
    width: 100%;
  }
}

/* ========== SECTION STYLES COMMON TO ALL SECTIONS==== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-header .line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
}

/* ========== HOW RENTALS WORK ========== */
.rental-process {
  background: var(--light-gray);
  padding: 100px 0;
}

.rental-process .section-header p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 20px;
}

/* Connecting line (desktop only) */
.process-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(204, 175, 125, 0.35);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 8px 12px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(55, 49, 43, 0.06);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 10px;
}

.process-step p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .process-row::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .rental-process {
    padding: 75px 0;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.35rem;
  }
}

/* Catalog section polish */
.catalog {
  background: var(--white);
  padding: 100px 0;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.catalog-filter .filter-btn {
  background: transparent;
  border: 1.5px solid rgba(204, 175, 125, 0.4);
  color: var(--dark-soft);
  padding: 10px 20px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.catalog-filter .filter-btn:hover,
.catalog-filter .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card refinements */
.rental-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(204, 175, 125, 0.15);
  box-shadow: 0 8px 28px rgba(55, 49, 43, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.rental-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(55, 49, 43, 0.12);
}

.rental-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(204, 175, 125, 0.35);
}

.rental-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rental-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.rental-body h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.rental-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 14px;
  flex-grow: 1;
}

.rental-meta {
  font-size: 0.88rem;
  color: var(--dark-soft);
  margin-bottom: 18px;
}

.rental-meta i {
  color: var(--gold);
  margin-right: 6px;
}

.btn-rental {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--dark);
  transition: var(--transition);
}

.btn-rental .fa-whatsapp {
  color: #25D366;
  font-size: 1.15em;
}

.btn-rental:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-rental:hover .fa-whatsapp {
  color: #fff;
}

.catalog-note {
  margin-top: 48px;
  padding: 22px 28px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .catalog {
    padding: 75px 0;
  }

  .catalog-filter {
    gap: 8px;
    margin-bottom: 36px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-filter .filter-btn {
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 0.7rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 22px;
  }

  .rental-img {
    height: 200px;
  }
}

/* ========== RENTAL FAQ ========== */
.rental-faq {
  background: var(--light-gray);
  padding: 100px 0;
}

.rental-faq .section-header p {
  max-width: 480px;
  margin: 0 auto;
  color: var(--text);
}

.rental-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.rental-faq .faq-item {
  border-bottom: 1px solid rgba(204, 175, 125, 0.25);
}

.rental-faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.rental-faq .faq-question:hover {
  color: var(--gold-dark);
}

.rental-faq .faq-question i {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.rental-faq .faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.rental-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.rental-faq .faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 22px;
}

.rental-faq .faq-answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

@media (max-width: 640px) {
  .rental-faq {
    padding: 75px 0;
  }

  .rental-faq .faq-question {
    font-size: 1.02rem;
    padding: 18px 0;
  }
}

/* ========== TERMS SUMMARY ========== */
.rental-terms {
  background: var(--white);
  padding: 90px 0;
}

.terms-summary {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.summary-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.summary-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid rgba(204, 175, 125, 0.18);
}

.summary-points li:last-child {
  border-bottom: none;
}

.summary-points i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.terms-modal-trigger {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.terms-modal-trigger:hover {
  background: var(--gold);
  color: var(--white);
}

/* ========== TERMS MODAL ========== */
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.terms-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.terms-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(55, 49, 43, 0.65);
  backdrop-filter: blur(4px);
}

.terms-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.terms-modal.is-open .terms-modal-content {
  transform: translateY(0);
}

.terms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(204, 175, 125, 0.2);
  flex-shrink: 0;
}

.terms-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}

.terms-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
}

.terms-modal-close:hover {
  color: var(--dark);
}

.terms-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex-grow: 1;
}

.terms-intro {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 20px;
}

.terms-modal-body .terms-list {
  list-style: none;
  counter-reset: term;
  padding: 0;
  margin: 0;
}

.terms-modal-body .terms-list li {
  counter-increment: term;
  position: relative;
  padding: 16px 0 16px 44px;
  border-bottom: 1px solid rgba(204, 175, 125, 0.15);
}

.terms-modal-body .terms-list li:last-child {
  border-bottom: none;
}

.terms-modal-body .terms-list li::before {
  content: counter(term);
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.terms-modal-body .terms-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.terms-modal-body .terms-list li p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.terms-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(204, 175, 125, 0.2);
  text-align: right;
  flex-shrink: 0;
}

.terms-modal-footer .btn-outline {
  padding: 11px 26px;
  border: 1.5px solid var(--gold);
  color: var(--dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.terms-modal-footer .btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .terms-modal {
    padding: 12px;
  }

  .terms-modal-header,
  .terms-modal-body,
  .terms-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .terms-modal-body .terms-list li {
    padding-left: 40px;
  }
}

/* ========== FINAL CTA (Rentals) ========== */
.rental-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a251f 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}

.rental-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(204, 175, 125, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.rental-cta .container {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.rental-cta .cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.rental-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.25;
}

.rental-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0 auto 28px;
  max-width: 520px;
}

.rental-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.rental-cta .btn-cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.rental-cta .btn-cta .fa-whatsapp {
  color: #25D366;
  font-size: 1.2em;
}

.rental-cta .btn-cta:hover .fa-whatsapp {
  color: #25D366;
}

.rental-cta .cta-note {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .rental-cta {
    padding: 70px 20px;
  }

  .rental-cta .btn-cta {
    width: 100%;
    max-width: 300px;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  color: white;
}

/* CTA WhatsApp icon */
.btn-cta .fa-whatsapp {
  color: #25D366;
  margin-left: 8px;
}

.btn-cta:hover .fa-whatsapp {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .rentals-hero {
    padding: 100px 20px 70px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .catalog-filter {
    gap: 8px;
    margin-bottom: 36px;
  }

  .catalog-filter .filter-btn {
    padding: 8px 14px;
    font-size: 0.68rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* .footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
} */

 .footer-brand .footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.footer-brand .footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(204, 175, 125, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-credit {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 6px;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .why-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .process-steps::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo-top {
    order: -1;
  }

  .nav-inner {
    justify-content: space-between;
    padding: 0 16px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 0;
    box-shadow: var(--shadow);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 14px 24px;
  }

  .hero {
    height: 70vh;
    min-height: 420px;
  }
  .hero-nav {
    display: none;
  }

  .welcome-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .welcome-image img {
    height: 320px;
  }

  .why-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid .footer-brand {
    justify-content: center;
  }

  .footer-grid .footer-logo {
    margin: 0 auto 18px;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }
}