/* =========================
   ROOT + GLOBAL
========================= */

:root {
  --bg-dark: #231f20;
  --gold: #d4af37;
  --text: #f5f5f5;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("img/Vale_Self_Storage_Cardiff_Penarth_.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #222;
  line-height: 1.7;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   HEADER (STICKY + LAYOUT)
========================= */

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transform: translateZ(0);        /* ← add this */
  will-change: transform;          /* ← add this */
  background: linear-gradient(
    to left,
    #c8a84b 0%,
    #7d5a00 20%,
    #3d2e00 40%,
    #1a1400 60%,
    #0d0d0d 100%
  );
  border-bottom: 2px solid var(--gold);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(212, 175, 55, 0.3);
}

/* Subtle gold shimmer line at very top */
header::before {
  content: "";
  position: absolute;
    transform: translateZ(0);        /* ← add this */
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    #fff8dc 50%,
    var(--gold) 70%,
    transparent 100%
  );
}

/* Container */
.header-inner {
  width: 100%;
  padding: 0.8rem 2rem;
}

/* 3-column header layout */
.header-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-left img {
  height: 160px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
   will-change: filter, transform;  /* ← add this */
}

.header-left img:hover {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.8));
  transform: scale(1.03);
}

/* Center */
.header-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Phone */
.header-phone {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.header-phone:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* =========================
   HEADER BRAND NAME
========================= */

.header-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-right: 1rem;
  background: linear-gradient(
    90deg,
    #FFEB3B 0%,
    #FFD700 25%,
    #ffffff 50%,
    #FFD700 75%,
    #FFEB3B 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  position: relative;
  padding-bottom: 8px;
}

.header-brand-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #FFEB3B 25%,
    #FFD700 50%,
    #1a1a1a 100%
  );
  border-radius: 2px;
}

/* =========================
   IMAGE STYLING
========================= */

/* Base image container */
.image-container {
  margin: 3rem auto;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Image with border */
.image-bordered {
  border: 3px solid var(--gold);
  padding: 12px;
  background: #ffffff;
  border-radius: 20px;
  max-width: fit-content;
}

/* Image with gradient border */
.image-gradient-border {
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, var(--gold), #c8a84b) border-box;
  border-radius: 16px;
  padding: 8px;
  max-width: fit-content;
}

/* Full width image */
.image-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image with overlay text */
.image-overlay-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2rem auto;
}

.image-overlay-wrap img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 0 0 16px 16px;
  text-align: center;
}

.image-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.image-overlay p {
  margin: 0;
  font-size: 0.95rem;
}

/* Side-by-side images */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
  width: 100%;
  padding: 0 2rem;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  display: block;
}

.image-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Image with caption */
.image-with-caption {
  text-align: center;
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.image-with-caption img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto 1rem;
  display: block;
}

.image-caption {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 0.75rem;
  max-width: 600px;
}

/* Circular image */
.image-circular {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
  display: block;
  border: 4px solid var(--gold);
}

/* Image with gold accent */
.image-gold-accent {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2rem auto;
}

.image-gold-accent img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.image-gold-accent::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 16px);
  max-width: 516px;
  height: calc(100% + 16px);
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}

/* Responsive single image */
.image-responsive {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
}

.image-responsive img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-responsive img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* =========================
   DESKTOP NAV (HORIZONTAL)
========================= */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}

.desktop-nav a,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #e8e8e8;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff8dc);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.desktop-nav > a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.desktop-nav > a:hover::after {
  width: 100%;
}

/* Quote button */
.quote-btn {
  background: linear-gradient(135deg, #c8a84b, #f7d178, #c8a84b);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 15px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.quote-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* =========================
   CLICK DROPDOWN
========================= */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  color: #e8e8e8;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.dropdown-toggle:focus,
.dropdown-toggle:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.dropdown-toggle:hover {
  color: var(--gold);
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff8dc);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.dropdown.active .dropdown-toggle {
  color: var(--gold);
}

.dropdown.active .dropdown-toggle::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 240px;
  max-height: 500px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #1a1400, #2c2000);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 0;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  z-index: 999;
}

/* Districts menu */
.dropdown-menu.districts-menu {
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Scrollbar styling — webkit */
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

/* Scrollbar styling — Firefox */
.dropdown-menu {
  scrollbar-color: rgba(212, 175, 55, 0.4) rgba(212, 175, 55, 0.1);
  scrollbar-width: thin;
}

.dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: #e8e8e8;
  text-decoration: none;
  transition: background 0.25s ease, padding-left 0.25s ease, color 0.25s ease;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.15);
  padding-left: 25px;
  color: var(--gold);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

/* =========================
   GOOGLE REVIEWS BADGE
========================= */

.google-badge {
  display: flex;
  align-items: center;
}

.google-badge-link {
  text-decoration: none !important;
  display: block;
}

.google-badge-inner {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 160px;
}

.google-badge-link:hover .google-badge-inner {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.4);
}

.google-badge-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-g-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.google-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-badge-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #444;
  line-height: 1;
  white-space: nowrap;
}

.google-badge-stars {
  display: flex;
  gap: 1px;
}

.google-badge-stars span {
  color: #FBBC05;
  font-size: 0.95rem;
  line-height: 1;
}

.google-badge-score {
  font-size: 0.65rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}

/* =========================
   HAMBURGER
========================= */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 10001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   MOBILE NAV (DEFAULT HIDDEN)
========================= */

.mobile-nav {
  display: none;
}

.mobile-header-contact {
  display: none;
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width: 768px) {

  .desktop-nav { display: none !important; }
  .header-right { display: none !important; }
  .header-brand-name { display: none; }

  .header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-left img { height: 70px; }

  /* Full screen overlay menu */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 120px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: rgba(26, 23, 24, 0.97);
    backdrop-filter: blur(12px);
    z-index: 9999;
    overflow-y: auto;
  }

  header.menu-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    width: 100%;
    max-width: 360px;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .mobile-nav a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-header-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    text-align: center;
  }

  .mobile-header-contact a {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    width: auto !important;
    max-width: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    background: none !important;
  }

  .mobile-header-contact a:hover {
    color: var(--gold);
    background: none !important;
  }

  /* Storage Types section */
  .mobile-dropdown {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-dropdown-title {
    width: 100%;
    padding: 1rem 1.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .mobile-dropdown a {
    border-bottom: none;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.7rem 1.5rem;
  }

  .mobile-dropdown a:last-child {
    margin-bottom: 0.5rem;
  }

  /* Phone + email at bottom of menu */
  .mobile-nav-contact {
    width: 100%;
    max-width: 360px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-nav-contact a {
    color: var(--gold) !important;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: none !important;
    padding: 0.5rem !important;
    text-decoration: none;
    width: auto !important;
    max-width: none !important;
  }

  .mobile-nav-contact a:hover {
    text-decoration: underline;
    background: none !important;
  }

  .image img,
  .modern-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .image-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .image-grid {
    gap: 1.5rem;
  }

  .image-overlay-wrap {
    max-width: 100%;
  }

  .image-with-caption img {
    max-width: 100%;
  }

  .image-container {
    margin: 2rem auto;
  }

  .image-container img {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  .image-circular {
    width: 180px;
    height: 180px;
  }

  /* Floating CTA */
  .floating-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #ffd84d, #f5b400);
    color: #111;
    font-weight: 800;
    border-radius: 999px;
    box-shadow:
      0 15px 35px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 1500;
    animation: ctaPop 0.6s ease-out;
  }

  header.menu-open ~ .floating-cta { display: none; }

  .hero-image { min-height: 60vh; }

  .hero-content {
    padding: 1.5rem;
    text-align: left;
  }

  .hero-content h1 { font-size: 1.9rem; }
  .hero-content p { font-size: 1rem; }
}

/* =========================
   FINAL OVERRIDES
========================= */

.mobile-nav { display: none; }
header.menu-open .mobile-nav { display: flex; }

@media (min-width: 769px) {
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* =========================
   HERO IMAGE WITH OVERLAY
========================= */

.hero-image {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("img/Vale_Self_Storage_Cardiff_Penarth_.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
  z-index: 1;
  animation: heroFloat 1s ease-out forwards;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  color: #ffffff;
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: #ffffff;
}

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

/* =========================
   CTA BUTTONS
========================= */
.cta { margin-top: 2rem; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 40px;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.secondary {
  background: transparent;
  color: #000;
  border: 2px solid var(--gold);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
}

.btn:hover::after {
  transform: translateX(100%);
  transition: transform 0.7s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* =========================
   MOBILE FLOATING CTA BAR
========================= */

@media (max-width: 768px) {

  .cta {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(
      to right,
      #0d0d0d 0%,
      #1a1400 50%,
      #0d0d0d 100%
    );
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(212, 175, 55, 0.2);
  }

  .mobile-cta-bar .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 999px;
    padding: 0.7rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c8a84b, #f7d178, #c8a84b);
    color: #111;
    border: none;
    box-shadow:
      0 4px 14px rgba(212, 175, 55, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-cta-bar .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .mobile-cta-bar .btn.secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    box-shadow: none;
  }

  .mobile-cta-bar .btn.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
  }

  .mobile-cta-bar .btn::after {
    display: none;
  }

  body {
    padding-top: 48px;
  }

}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none;
  }
}
/* =========================
   HERO (SECONDARY SECTION)
========================= */

.hero {
  padding: 3rem 1rem;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #595958;
}

.hero p {
  max-width: 750px;
  margin: auto;
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================
   SECTIONS
========================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

/* =========================
   GRID CONTAINER
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #f9fafb 0%, #eef1f4 50%, #f9fafb 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   FEATURE ITEMS (EMOJI)
========================= */

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.feature-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

/* =========================
   CARD STYLING
========================= */

.card {
  position: relative;
  background: #D6D0D0;
  color: #111;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 1;
  transform: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 150, 255, 0.35);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card h3 {
  color: #000;
  margin-top: 0;
}

/* =========================
   IMAGES (LEGACY)
========================= */

.image {
  text-align: center;
  margin: 2rem 0;
}

.image img {
  max-width: 50%;
  border-radius: 20px;
}

.modern-image {
  width: 50%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 22px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.modern-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* =========================
   PREMIUM HERO SPLIT + MAP
========================= */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
  color: #1a1400;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-map {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.map-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #111;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.directions-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.directions-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

/* =========================
   FLOATING CTA (MOBILE ONLY)
========================= */

.floating-cta { display: none; }

@keyframes ctaPop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* =========================
   STORAGE MODAL — FIXED
   Animations scoped to .active
   to prevent flash on open/close
========================= */

.storage-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Only show when active — no top-level animation */
.storage-modal.active {
  display: flex;
}

/* Overlay animates only when modal opens */
.storage-modal.active .storage-modal-overlay {
  animation: overlayFadeIn 0.3s ease-out;
}

/* Content animates only when modal opens */
.storage-modal.active .storage-modal-content {
  animation: slideUp 0.4s ease-out;
}

.storage-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.storage-modal-content {
  position: relative;
  z-index: 10000;
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.storage-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.storage-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
}

.storage-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.storage-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.storage-modal-body {
  padding: 1.5rem;
}

.storage-size-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.storage-size-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f9f9f9;
  border-left: 4px solid #3b00ff;
  border-radius: 6px;
  transition: background 0.3s ease, border-left-color 0.3s ease, transform 0.3s ease;
}

.storage-size-list li:hover {
  background: #f0f0ff;
  border-left-color: #2900cc;
  transform: translateX(5px);
}

.storage-size-list li strong {
  display: block;
  color: #3b00ff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.storage-size-list li span {
  display: block;
  color: #666;
  font-size: 0.9rem;
}

.storage-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.storage-modal-footer .btn {
  flex: 1;
  min-width: 120px;
}

.btn-secondary {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background: #e8e8e8;
}

@media (max-width: 768px) {
  .storage-modal-content {
    width: 95%;
    max-width: 450px;
  }

  .storage-modal-header { padding: 1.25rem; }
  .storage-modal-body   { padding: 1.25rem; }

  .storage-modal-footer {
    padding: 1.25rem;
    flex-direction: column;
  }

  .storage-modal-footer .btn {
    width: 100%;
  }

  .storage-size-list li {
    padding: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .storage-modal-content { width: 98%; }

  .storage-modal-header h3 { font-size: 1.25rem; }
  .storage-modal-header    { padding: 1rem; }
  .storage-modal-body      { padding: 1rem; }
  .storage-modal-footer    { padding: 1rem; }
}

/* =========================
   MODAL ANIMATIONS
========================= */

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* =========================
   FOOTER
========================= */

footer {
  background: #1a1718;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

footer strong { color: #fff; }

/* =========================
   RESPONSIVE (LAYOUT)
========================= */

@media (max-width: 992px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-map   { height: 350px; }
}
