/* ========================================
   LOS OLIVOS - ELEGANT REAL ESTATE DESIGN
   Premium aesthetic for modern homes
   ======================================== */

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Elegant Color Palette */
  --primary-black: #1a1a1a;
  --primary-white: #ffffff;
  --cream: #faf8f5;
  --warm-gray: #8b8680;
  --charcoal: #2d2d2d;
  --gold: #b8976a;
  --light-gold: #d4c5a9;
  --text-dark: #2d2d2d;
  --text-light: #6b6b6b;
  --border-light: #e5e5e5;
  
  /* Layout */
  --max-width: 1400px;
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --spacing-xl: 10rem;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Timing */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--primary-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* === ELEGANT TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--primary-black);
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 300; }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); letter-spacing: 0.05em; }
h5 { font-size: 1.125rem; letter-spacing: 0.05em; }
h6 { font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === SOPHISTICATED HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4vw;
  background: rgba(26, 26, 26, 0.98);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Fancy header effects only on index.html (homepage) */
body.homepage .header {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.78) 50%,
    rgba(26, 26, 26, 0.45) 85%,
    rgba(26, 26, 26, 0) 100%
  );
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
              0 -1px 20px rgba(0, 0, 0, 0.1);
}

body.homepage .header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 151, 106, 0.3) 20%,
    rgba(184, 151, 106, 0.5) 50%,
    rgba(184, 151, 106, 0.3) 80%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
}

body.homepage .header.scrolled::before {
  opacity: 1;
}

.header.scrolled {
  padding: 1.25rem 4vw;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12),
              0 1px 0 rgba(255, 255, 255, 0.06) inset,
              0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.homepage .header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  flex-wrap: nowrap;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--primary-white);
  letter-spacing: 0.12em;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
  transition: width 0.4s var(--transition-smooth);
}

.header-logo:hover {
  color: var(--light-gold);
  transform: translateY(-2px);
  letter-spacing: 0.15em;
}

.header-logo:hover::after {
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.5rem 0;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.4s var(--transition-smooth);
  text-decoration: none;
}

.header-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s var(--transition-smooth);
  border-radius: 2px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 151, 106, 0.08);
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s var(--transition-smooth);
  z-index: -1;
}

.header-nav a:hover {
  color: var(--primary-white);
  transform: translateY(-1px);
}

.header-nav a:hover::before {
  width: calc(100% + 8px);
}

.header-nav a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  flex-shrink: 0;
}

.header-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions a[aria-label] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--transition-smooth);
  flex-shrink: 0;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: all 0.4s var(--transition-smooth);
  opacity: 0.85;
}

.header-actions a[aria-label]:hover {
  background: rgba(184, 151, 106, 0.15);
  transform: translateY(-2px);
}

.header-actions a[aria-label]:hover .social-icon {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(184, 151, 106, 0.6));
}

/* Elegant Pre-Purchase Button */
.btn-cta {
  background: linear-gradient(135deg, rgba(184, 151, 106, 0.15), rgba(212, 197, 169, 0.1)) !important;
  color: var(--primary-white) !important;
  padding: 12px 32px !important;
  border: 1px solid rgba(184, 151, 106, 0.4) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: all 0.4s var(--transition-smooth) !important;
  text-shadow: none !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  transform: translateX(-100%);
  transition: transform 0.5s var(--transition-smooth);
  z-index: -1;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.btn-cta:hover::before {
  transform: translateX(0);
}

.btn-cta:hover::after {
  opacity: 1;
}

.btn-cta:hover {
  color: var(--primary-black) !important;
  border-color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 151, 106, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s var(--transition-smooth);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 151, 106, 0.3);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-white);
  margin: 5px 0;
  transition: all 0.3s var(--transition-smooth);
  border-radius: 2px;
}

.mobile-menu-toggle:hover span {
  background: var(--light-gold);
}

/* === LUXURIOUS HERO === */
.hero {
  position: relative;
  height: auto;
  min-height: 70vh;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(100px + 3rem) 4vw 4rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.65) saturate(1.1);
  transform: scale(1.02);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
  z-index: 0;
}

.hero-content {
  text-align: center;
  color: var(--primary-white);
  z-index: 1;
  padding: 0;
  max-width: 1000px;
  width: 100%;
}

.hero-text-container {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3rem 3.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 24px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.hero-description {
  text-align: left;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description p:last-child {
  margin-bottom: 0;
}

/* Homepage-specific optimizations */
body.homepage .section {
  padding: var(--spacing-md) 4vw;
}


body.homepage .plans-grid {
  margin-top: 1.5rem;
  gap: 1.5rem;
}

body.homepage .plan-card {
  margin-bottom: 0;
}

body.homepage .plan-info {
  padding: 1.5rem;
}

body.homepage .plan-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

body.homepage .plan-details {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

body.homepage .plan-image {
  aspect-ratio: 4/3;
}

body.homepage .team-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

body.homepage .team-content {
  gap: var(--spacing-md);
}

body.homepage .team-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

body.homepage .team-info p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

body.homepage .team-contact {
  margin-top: 1rem;
}

body.homepage .team-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

body.homepage .homepage-cta {
  background: var(--cream);
  padding: 2.5rem 4vw;
  margin-top: 0;
}

body.homepage .homepage-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

body.homepage .homepage-cta-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

body.homepage .homepage-cta-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

body.homepage .section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
}

body.homepage .section:has(.section-intro) {
  padding-bottom: 1.5rem;
}

body.homepage .section-intro h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

body.homepage .section-intro p {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

body.homepage .homepage-financing {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.financing-logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: 180px;
  width: auto;
  height: auto;
}

@media (max-width: 480px) {
  .financing-logo {
    max-width: 140px;
    margin-bottom: 0.75rem;
  }
}

/* === REFINED BUTTONS === */
.btn {
  display: inline-block;
  padding: 15px 45px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--primary-black);
  background: var(--primary-black);
  color: var(--primary-white);
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-white);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  color: var(--primary-black);
  border-color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-black);
  border: 1px solid var(--primary-black);
}

.btn-secondary::before {
  background: var(--primary-black);
}

.btn-secondary:hover {
  color: var(--primary-white);
}

/* === ELEGANT SECTIONS === */
.section {
  padding: var(--spacing-lg) 4vw;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Consistent page hero spacing */
.page-hero {
  padding-top: calc(100px + 2rem);
  padding-bottom: 0;
}

.page-hero .section-intro {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.page-hero .section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
}

/* Consistent section spacing */
.page-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.page-section-alt {
  background: var(--cream);
  padding: 2.5rem 4vw;
  margin-top: 0;
}

.page-section-alt .section-title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.plan-hero {
  padding-top: calc(100px + 2rem);
  padding-bottom: 0;
}

.plan-hero .section-intro {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.plan-hero .section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
}

/* Finishes page spacing */
.finishes-hero {
  padding-top: calc(100px + 2rem);
  padding-bottom: 0;
}

.finishes-hero .section-intro {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.finishes-hero .section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
}

.finishes-grid-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.finishes-grid-section .finishes-grid {
  margin-top: 1rem;
  gap: 1.5rem;
}

.finishes-cta-section {
  background: var(--cream);
  padding: 2.5rem 4vw;
  margin-top: 0;
}

.finishes-cta-section.page-section-alt {
  padding: 2.5rem 4vw;
}

.finishes-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.finishes-cta-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.finishes-cta-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Map Section */
.map-section {
  padding: 2.5rem 4vw;
  background: var(--cream);
}

.map-container {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  position: relative;
  background: var(--primary-white);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  z-index: 3;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.map-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  z-index: 2;
  touch-action: pan-x pan-y;
}

.map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 90%,
    rgba(250, 248, 245, 0.3) 100%
  );
  border-radius: 8px;
}

/* Video Section */
.video-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.video-container {
  max-width: 1000px;
  margin: 2rem auto 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  background: var(--primary-black);
  z-index: 1;
}

.walkthrough-video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  background: var(--primary-black);
}

@media (max-width: 768px) {
  .video-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .video-container {
    margin-top: 1.5rem;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 2rem 4vw;
  }
  
  .map-container {
    margin-top: 1.5rem;
    border-radius: 4px;
  }
  
  .map-wrapper {
    height: 350px;
  }
  
  .map-container::after {
    border-radius: 4px;
  }
}

/* Pre-purchase page spacing */
.pre-purchase-hero {
  padding-top: calc(100px + 2rem);
  padding-bottom: 0;
}

.pre-purchase-hero .section-intro {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.pre-purchase-hero .section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
}

.pre-purchase-process-section {
  background: var(--cream);
  padding: 2rem 4vw;
  margin-top: 0;
}

.pre-purchase-process-section .section-title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.pre-purchase-timeline-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pre-purchase-timeline-section .section-title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.pre-purchase-faq-section {
  background: var(--cream);
  padding: 2.5rem 4vw;
  margin-top: 0;
}

.pre-purchase-faq-section .section-title {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.pre-purchase-form-section {
  padding: 2.5rem 4vw;
  margin-top: 0;
}

.pre-purchase-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .pre-purchase-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.plan-details-section {
  padding-top: 2rem;
  padding-bottom: var(--spacing-md);
}

.pricing-section {
  background: var(--cream);
  padding: var(--spacing-md) 4vw;
  margin: 2rem auto;
}

.pricing-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.finishes-section {
  padding-top: 2rem;
  padding-bottom: var(--spacing-md);
}

.finishes-cta {
  text-align: center;
  margin-top: 2rem;
}

.features-container {
  max-width: 800px;
  margin: 0 auto;
}

.features-container ul {
  list-style: none;
  padding: 0;
}

.features-container li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 1.5rem;
  position: relative;
  transition: padding-left 0.3s var(--transition-smooth);
}

.features-container li:hover {
  padding-left: 2rem;
}

.features-container li:last-child {
  border-bottom: none;
}

.features-container li span {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
  margin-top: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.9;
}

.finishes-hero .section-intro {
  margin-bottom: 0;
}

/* === SOPHISTICATED PLAN CARDS === */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.plan-card {
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--transition-smooth);
  overflow: hidden;
  background: var(--primary-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.plan-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.75), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
  pointer-events: none;
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.plan-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}

.plan-card:hover .plan-image {
  transform: scale(1.06);
}

.plan-info {
  padding: var(--spacing-sm);
  background: var(--primary-white);
  position: relative;
  z-index: 1;
}

.plan-title {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}

.plan-details {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

/* === REFINED TEAM SECTION === */
.team-section {
  background: var(--cream);
}

.team-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.team-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.team-info h3 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.team-info p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.team-contact a {
  color: var(--primary-black);
  border-bottom: 1px solid var(--gold);
  transition: all 0.3s var(--transition-smooth);
  padding-bottom: 2px;
}

.team-contact a:hover {
  color: var(--gold);
  border-bottom-color: transparent;
}

/* === LUXURY FINISHES === */
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.finish-card {
  background: var(--primary-white);
  padding: var(--spacing-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--transition-smooth);
}

.finish-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.finish-card h4 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}

.finish-card h5 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  font-weight: 600;
}

.finish-card ul {
  list-style: none;
}

.finish-card li {
  padding: 0.75rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
}

.finish-card li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* === COMMUNITY SECTION === */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.community-card {
  text-align: center;
  padding: var(--spacing-sm);
  background: var(--cream);
  transition: all 0.4s var(--transition-smooth);
  border: 1px solid transparent;
}

.community-card:hover {
  background: var(--primary-white);
  border-color: var(--border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.community-card h4 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.community-list {
  list-style: none;
  text-align: left;
}

.community-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.community-list li:last-child {
  border-bottom: none;
}

/* === REFINED FORMS === */
.form-section {
  background: var(--cream);
  padding: var(--spacing-md) 4vw 2rem;
  margin-bottom: 0;
}

.form-section.page-section-alt {
  padding: 2.5rem 4vw 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--primary-white);
  padding: var(--spacing-md);
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-gray);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  background: var(--primary-white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--transition-smooth);
  color: var(--text-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--primary-black);
  color: var(--primary-white);
  border: none;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-smooth);
  z-index: -1;
}

.form-submit:hover::before {
  transform: translateX(0);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* === FAQ SECTION === */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2.25rem;
}

.faq-question {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
  cursor: pointer;
  transition: color 0.3s var(--transition-smooth);
  letter-spacing: -0.01em;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.0625rem;
}

/* === ELEGANT FOOTER === */
.footer {
  background: var(--primary-black);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-lg) 4vw var(--spacing-sm);
  margin-top: 0;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gold);
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--light-gold);
  border-bottom-color: var(--light-gold);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.footer-compass-logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: 160px;
  width: auto;
  height: auto;
}

.footer-disclaimer {
  margin-top: 0;
  font-size: 0.7rem;
  line-height: 1.5;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .footer-compass-logo {
    max-width: 120px;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-compass-logo {
    max-width: 100px;
    margin-bottom: 0.5rem;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .team-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 4vw;
    min-height: 70px;
  }
  
  .header-inner {
    position: relative;
    gap: 0.5rem;
    overflow: visible;
  }
  
  .header {
    overflow: visible;
  }
  
  .header-logo {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    flex: 0 0 auto;
  }
  
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(26, 26, 26, 1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 2rem 3rem;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .header-nav.active {
    display: flex !important;
  }

  .header-nav a {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-white) !important;
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 2rem;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--transition-smooth);
    box-sizing: border-box;
    min-height: 60px;
    line-height: 1.5;
  }
  
  .header-nav a:first-child {
    margin-top: 2rem;
  }
  
  .header-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
  }
  
  .header-nav a::before,
  .header-nav a::after {
    display: none;
  }
  
  .header-nav a:hover {
    color: var(--light-gold) !important;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    padding-left: 2.5rem;
  }
  
  .header-actions {
    gap: 0.5rem;
    order: 2;
    flex: 0 0 auto;
  }
  
  .header-actions a[aria-label] {
    display: none;
  }
  
  .header-actions .social-icon {
    display: none;
  }
  
  .btn-cta {
    padding: 8px 14px !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    margin-left: 0.5rem;
    order: 3;
    z-index: 1002;
    position: relative;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--primary-white);
    display: block;
  }
  
  .mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
  }
  
  .mobile-menu-toggle.active {
    background: rgba(184, 151, 106, 0.2);
    border-color: rgba(184, 151, 106, 0.4);
  }
  
  .mobile-menu-toggle.active span {
    background: var(--light-gold);
  }
  
  .plan-hero,
  .page-hero {
    padding-top: calc(120px + 3.5rem);
    padding-bottom: 0;
  }
  
  .plan-hero .section-intro,
  .page-hero .section-intro {
    margin-bottom: 0;
    margin-top: 0.25rem;
  }
  
  .plan-hero .section-title,
  .page-hero .section-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    scroll-margin-top: 100px;
  }
  
  .page-section {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  
  .page-section-alt {
    padding: 2rem 4vw;
  }
  
  .section:first-of-type {
    padding-top: calc(100px + 2.5rem);
  }
  
  .finishes-hero {
    padding-top: calc(120px + 3.5rem);
    padding-bottom: 0;
  }
  
  .finishes-hero .section-intro {
    margin-bottom: 0;
    margin-top: 0.25rem;
  }
  
  .finishes-hero .section-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    scroll-margin-top: 100px;
  }
  
  .finishes-grid-section {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  
  .finishes-grid-section .finishes-grid {
    margin-top: 0.5rem;
  }
  
  .pre-purchase-hero {
    padding-top: calc(120px + 3.5rem);
    padding-bottom: 0;
  }
  
  .pre-purchase-hero .section-intro {
    margin-bottom: 0;
    margin-top: 0.25rem;
  }
  
  .pre-purchase-hero .section-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    scroll-margin-top: 100px;
  }
  
  .pre-purchase-process-section {
    padding: 1.5rem 4vw;
  }
  
  .pre-purchase-timeline-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .pre-purchase-faq-section {
    padding: 2rem 4vw;
  }
  
  .pre-purchase-form-section {
    padding: 2rem 4vw;
  }

  .hero {
    min-height: auto;
    padding: calc(100px + 2rem) 5vw 3rem;
  }
  
  .hero-text-container {
    padding: 2rem 1.5rem;
  }
  
  .hero-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .hero-description p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--spacing-md) 5vw;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.875rem 3vw;
    min-height: 65px;
  }
  
  .finishes-hero {
    padding-top: calc(110px + 3.5rem);
    padding-bottom: 0;
  }
  
  .pre-purchase-hero {
    padding-top: calc(110px + 3.5rem);
    padding-bottom: 0;
  }
  
  .section-title {
    scroll-margin-top: 100px;
  }
  
  .page-section {
    padding-bottom: 1.5rem;
  }
  
  .page-section-alt {
    padding: 1.5rem 4vw;
  }
  
  .header-logo {
    font-size: 1.1rem;
  }
  
  .header-actions {
    gap: 0.4rem;
  }
  
  .header-actions a[aria-label] {
    display: none;
  }
  
  .header-actions .social-icon {
    display: none;
  }
  
  .btn-cta {
    padding: 7px 12px !important;
    font-size: 0.6rem !important;
  }
  
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0.4rem;
    display: flex !important;
    visibility: visible !important;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 2.5px 0;
    background: var(--primary-white);
    display: block;
  }
  
  .plan-hero {
    padding-top: calc(90px + 3rem);
    padding-bottom: 1rem;
  }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.hidden { display: none; }
.anchor { scroll-margin-top: 100px; }

#pre-purchase-form.anchor {
  scroll-margin-top: 10px;
}

/* === ELEGANT SLIDESHOW === */
.slideshow-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.slideshow-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  background: var(--primary-white);
}

.slideshow-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s var(--transition-smooth);
}

.slideshow-slide.active {
  display: block;
  opacity: 1;
}

.slideshow-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s var(--transition-smooth);
}

.slideshow-slide img:hover {
  transform: scale(1.02);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--primary-white);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--primary-white);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  backdrop-filter: blur(10px);
  z-index: 10001;
  user-select: none;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-white);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-counter {
    bottom: 10px;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--primary-black);
  font-size: 2.5rem;
  font-weight: 300;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  z-index: 10;
  line-height: 1;
  padding: 0;
  user-select: none;
}

.slideshow-prev {
  left: 20px;
}

.slideshow-next {
  right: 20px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
  background: var(--primary-white);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.slideshow-prev:active,
.slideshow-next:active {
  transform: translateY(-50%) scale(0.98);
}

.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.dot.active {
  background: var(--primary-white);
  border-color: var(--gold);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .slideshow-prev,
  .slideshow-next {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .slideshow-prev {
    left: 10px;
  }
  
  .slideshow-next {
    right: 10px;
  }
  
  .slideshow-dots {
    bottom: 15px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
}
