/* =========================================================
   福岡ラグジュアリープレイス Vibrant Energetic Style CSS
   Brand: 洗練された上質感と信頼感＋vibrant_energetic
   ========================================================= */

/* --------------------
   Font Imports
--------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap');

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Yu Gothic', 'Noto Sans JP', Arial, sans-serif;
  background: #F5F6FA;
  color: #252A37;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* --------------------
   Brand Colors
--------------------- */
:root {
  --primary: #252A37;
  --secondary: #BDA26A;
  --accent: #F5F6FA;
  --electric-blue: #1DE9B6;
  --electric-pink: #FF3CAC;
  --electric-yellow: #FFD600;
  --electric-purple: #7C4DFF;
  --electric-orange: #FF9100;
  --white: #fff;
  --black: #111;
  --shadow: 0 4px 24px 0 rgba(61, 44, 111, 0.10);
}

/* --------------------
   Typography
--------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-weight: 900;
  margin: 0 0 18px 0;
  color: var(--primary);
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue), var(--electric-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  color: var(--electric-blue);
  font-weight: 900;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  color: var(--electric-pink);
  font-weight: 700;
  margin-bottom: 10px;
}
p, ul, li {
  font-family: 'Yu Gothic', 'Noto Sans JP', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* --------------------
   Layout Containers
--------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
  transform: translateY(-4px) scale(1.02);
}

/* --------------------
   Header & Navigation
--------------------- */
header {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  box-shadow: 0 2px 16px 0 rgba(61,44,111,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 70px;
  gap: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue));
  border-radius: 2px;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--electric-yellow);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue), var(--electric-yellow));
  color: var(--primary);
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(255,61,113,0.10);
  cursor: pointer;
  text-decoration: none;
  margin-left: 32px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.04em;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-pink), var(--electric-yellow));
  color: var(--white);
  transform: scale(1.04) rotate(-1deg);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--electric-yellow), var(--electric-orange));
  color: var(--primary);
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(255,213,0,0.10);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(90deg, var(--electric-orange), var(--electric-yellow));
  color: var(--white);
  transform: scale(1.04) rotate(1deg);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--electric-yellow);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.2s, transform 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:active {
  color: var(--electric-pink);
  transform: scale(1.1);
}

/* --------------------
   Mobile Menu Overlay
--------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--electric-blue) 0%, var(--electric-pink) 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:active {
  color: var(--electric-yellow);
  transform: scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 8px rgba(61,44,111,0.12);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-yellow);
  text-shadow: 0 4px 16px var(--electric-pink);
}

/* --------------------
   Hero Section
--------------------- */
.hero {
  background: linear-gradient(120deg, var(--electric-blue) 0%, var(--electric-pink) 100%);
  color: var(--white);
  padding: 60px 0 40px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.10);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--electric-yellow), var(--electric-pink), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 12px;
}

/* --------------------
   Features Section
--------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* --------------------
   Gallery & Cards
--------------------- */
.gallery {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.property-gallery, .property-list, .area-images, .customer-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.property-card, .captioned-photo {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.property-card:hover, .captioned-photo:hover {
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
  transform: translateY(-4px) scale(1.02);
}
.property-card img, .captioned-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px 0 rgba(61,44,111,0.10);
}
.property-card h3, .captioned-photo p {
  margin-bottom: 10px;
}
.property-card p {
  font-size: 1rem;
  margin-bottom: 14px;
}

/* --------------------
   Testimonial Section
--------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  font-size: 0.98rem;
  color: var(--electric-blue);
  font-weight: 700;
}
.testimonial-info span:last-child {
  color: var(--electric-yellow);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

/* --------------------
   CTA Section
--------------------- */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue), var(--electric-yellow));
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.cta .btn-primary {
  margin-top: 12px;
}

/* --------------------
   Footer
--------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 0 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 24px 0 rgba(61,44,111,0.08);
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--electric-yellow);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--electric-pink);
}
.footer-info {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 18px;
}

/* --------------------
   Legal/Policy Section
--------------------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.legal h1, .legal h2 {
  color: var(--electric-blue);
}

/* --------------------
   Filters Bar (Properties)
--------------------- */
.filters {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}
.filter-bar span {
  font-weight: 700;
  color: var(--electric-blue);
}
.filter-bar select, .filter-bar input[type="text"] {
  border: 2px solid var(--electric-blue);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 1rem;
  font-family: 'Yu Gothic', 'Noto Sans JP', Arial, sans-serif;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.filter-bar select:focus, .filter-bar input[type="text"]:focus {
  border-color: var(--electric-pink);
  box-shadow: 0 2px 8px 0 rgba(255,61,113,0.10);
}

/* --------------------
   Area Guide Highlights
--------------------- */
.area-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.area-highlight {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 16px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.area-highlight:hover {
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
  transform: translateY(-4px) scale(1.02);
}
.lifestyle-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
.lifestyle-icons span {
  background: linear-gradient(90deg, var(--electric-yellow), var(--electric-blue));
  color: var(--primary);
  font-weight: 700;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(255,213,0,0.10);
}

/* --------------------
   Address Map (Contact)
--------------------- */
.address-map img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(61,44,111,0.10);
  margin-bottom: 18px;
}

/* --------------------
   Cookie Consent Banner
--------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue), var(--electric-yellow));
  color: var(--primary);
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 3000;
  box-shadow: 0 -4px 24px 0 rgba(61,44,111,0.12);
  border-radius: 18px 18px 0 0;
  animation: cookieBannerIn 0.6s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
  flex: 1 1 auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Noto Sans JP', 'Yu Gothic', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.cookie-banner .accept {
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--electric-pink);
  color: var(--white);
  transform: scale(1.05);
}
.cookie-banner .reject {
  background: var(--electric-pink);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--electric-yellow);
  color: var(--primary);
  transform: scale(1.05);
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--electric-blue);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--electric-blue);
  color: var(--white);
  transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,42,55,0.65);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(61,44,111,0.18);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  animation: cookieModalIn 0.5s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes cookieModalIn {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--electric-blue);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--electric-blue);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category .always-on {
  color: var(--electric-yellow);
  font-weight: 700;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  align-items: center;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--electric-pink);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--electric-blue);
  transform: scale(1.1);
}

/* --------------------
   Responsive Design
--------------------- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin-left: 18px;
  }
  .footer-nav {
    gap: 18px;
  }
  .property-gallery, .property-list, .area-images, .customer-stories, .area-highlights-grid, .features .feature-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .main-nav {
    gap: 12px;
    margin-left: 8px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 4vw;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 0 8px;
    min-height: 56px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    padding: 10px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 36px;
  }
  .section, .features, .gallery, .testimonials, .cta, .legal, .filters {
    padding: 24px 8px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
  .property-gallery, .property-list, .area-images, .customer-stories, .area-highlights-grid, .features .feature-list {
    flex-direction: column;
    gap: 12px;
  }
  .property-card, .captioned-photo, .area-highlight, .feature-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
  }
  .footer-info {
    margin-bottom: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 16px 8px;
    border-radius: 12px 12px 0 0;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cookie-modal {
    padding: 18px 8px 18px 8px;
    min-width: 0;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .logo img {
    height: 32px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.98rem;
    padding: 8px 12px;
  }
}

/* --------------------
   Utility Classes
--------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }

/* --------------------
   Hide Scrollbar for Mobile Menu
--------------------- */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* --------------------
   Prevent Overlapping
--------------------- */
.property-card, .captioned-photo, .area-highlight, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.section, .features, .gallery, .testimonials, .cta, .legal, .filters {
  margin-bottom: 60px;
}

/* --------------------
   Accessibility Focus
--------------------- */
a:focus, button:focus, select:focus, input:focus {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

/* --------------------
   Micro-interactions
--------------------- */
.btn-primary, .btn-secondary, .cookie-banner button {
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

/* --------------------
   End of CSS
--------------------- */
