/* ===================================
   Mehar Film - Main Stylesheet
   =================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* Colors - Luxury Wedding Palette (Champagne & Charcoal) */
  --color-white: #FFFFFF;
  --color-off-white: #FBF8F3;
  /* Light Beige / Cream */
  --color-silver-50: #F5F0E6;
  /* Warm Beige-Grey */
  --color-silver-100: #EBE5DB;
  /* Darker Beige */
  --color-silver-200: #DCD6CC;
  /* Deep Beige */

  --color-dark: #2D2A26;
  /* Deep Charcoal */
  --color-dark-light: #66605B;
  /* Warm Grey Text */
  --color-text-secondary: #99948F;
  /* Muted Warm Grey */

  --color-gold: #C5A059;
  /* Muted Gold / Champagne Accent */
  --color-gold-hover: #B08D48;
  /* Darker Gold for Hover */
  --color-gold-light: #F0E6D2;
  /* Light Gold Background */

  /* Spacing - More generous */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;

  /* Border Radius - Soft & Elegant */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Warm & Soft */
  --shadow-minimal: 0 1px 3px rgba(45, 42, 38, 0.05), 0 1px 2px rgba(45, 42, 38, 0.03);
  --shadow-soft: 0 4px 12px rgba(45, 42, 38, 0.06), 0 1px 4px rgba(45, 42, 38, 0.04);
  --shadow-medium: 0 8px 24px rgba(45, 42, 38, 0.08), 0 2px 8px rgba(45, 42, 38, 0.04);
  --shadow-hover: 0 12px 32px rgba(45, 42, 38, 0.10), 0 4px 12px rgba(45, 42, 38, 0.05);
  --shadow-lg: 0 16px 48px rgba(45, 42, 38, 0.12), 0 6px 16px rgba(45, 42, 38, 0.06);
  --shadow-2xl: 0 24px 64px rgba(45, 42, 38, 0.14), 0 8px 24px rgba(45, 42, 38, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
  background: var(--color-off-white);
  color: var(--color-dark);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography - Luxury Editorial Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
}

h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

h5 {
  font-size: 1rem;
  font-weight: 500;
}

h6 {
  font-size: 0.875rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--color-dark-light);
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Buttons - Luxury Style */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  color: var(--color-dark);
  border: 1px solid var(--color-silver-100);
}

.btn-secondary:hover {
  background: var(--color-white);
  transform: translateY(-1px);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  transform: translateZ(0);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-silver-200);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .nav {
    padding: 0.875rem 1.25rem;
  }

  .logo {
    font-size: 1.25rem;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-dark-light);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-dark);
}

.nav-links .btn {
  padding: 0.5rem 1.5rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--color-dark);
}

/* New Hero Section */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-off-white);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

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

.hero-new-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-new-badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-new-badge span {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-hover);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-new-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-new-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-dark-light);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-new-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-large svg {
  transition: transform 0.3s ease;
}

.btn-large:hover svg {
  transform: translateX(4px);
}

.hero-new-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-silver-100);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--color-dark-light);
  font-weight: 400;
}

/* Hero Visual Grid */
.hero-new-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1rem;
  height: 600px;
}

.hero-grid-item {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--color-silver-100);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-grid-item:hover {
  transform: scale(1.02);
}

.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.hero-grid-medium {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.hero-grid-small-1 {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
}

.hero-grid-small-2 {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease-out 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-dark-light));
  animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--color-dark-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Card Components - Apple-like Minimal Design */
.card {
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateZ(0);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.06);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-silver-50);
  border-radius: 1.5rem 1.5rem 0 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.card-location {
  display: flex;
  align-items: flex-start;
  color: var(--color-dark-light);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}

.card-location svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0.6;
}

/* Badge - Apple-like Minimal */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 2rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Sections - More Spacious */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1rem;
  color: var(--color-dark-light);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Background Colors */
.bg-white {
  background: var(--color-off-white);
}

.bg-silver {
  background: var(--color-silver-50);
}

.bg-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Footer - Dark Luxury */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 5rem 0 3rem;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero Responsive - Tablet */
  .hero-new-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .hero-new-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-new-buttons {
    justify-content: center;
  }

  .hero-new-stats {
    max-width: 500px;
  }

  .hero-grid {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--color-white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--color-silver-200);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-dark);
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .mobile-menu-btn.active svg path:nth-child(1) {
    d: path("M6 6l12 12");
  }

  .mobile-menu-btn.active svg path:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active svg path:nth-child(3) {
    d: path("M6 18L18 6");
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.125rem;
  }

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-credit {
    margin-left: 0;
    justify-content: center;
  }

  /* Hero Responsive - Mobile */
  .hero-new {
    min-height: auto;
    padding: 6rem 0 2rem;
  }

  .hero-new-container {
    gap: 2.5rem;
    padding: 0 1.25rem;
  }

  .hero-new-badge {
    margin-bottom: 1.25rem;
  }

  .hero-new-badge span {
    font-size: 0.6875rem;
    padding: 0.375rem 0.875rem;
    letter-spacing: 0.03em;
  }

  .hero-new-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
  }

  .hero-new-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-new-buttons {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    gap: 0.75rem;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-new-stats {
    display: flex;
    justify-content: space-around;
    gap: 0;
    text-align: center;
    padding-top: 1.5rem;
    max-width: 100%;
    border-top: 1px solid var(--color-silver-200);
  }

  .hero-stat {
    align-items: center;
    padding: 0;
    flex: 1;
  }

  .hero-stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero-grid {
    height: 450px;
    gap: 0.75rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Container Mobile */
  .container {
    padding: 0 1.25rem;
  }

  /* Cards Mobile */
  .card-content {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-location {
    font-size: 0.75rem;
  }

  /* Story Cards Mobile */
  .story-card h3 {
    font-size: 1.125rem;
  }

  .story-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .story-link {
    font-size: 0.8125rem;
  }

  /* Buttons Mobile */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* FAQ / SEO Content Styles */
/* FAQ / SEO Content Styles - Premium Apple Style */
.seo-content {
  padding: 6rem 0;
  background: var(--color-off-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.faq-details[open] .faq-item {
  box-shadow: var(--shadow-soft);
}

.faq-summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: #000000;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-dark-light);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-details[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-dark);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-dark-light);
  line-height: 1.6;
  font-size: 1rem;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About / Luxury Section Styles */
.about-section {
  padding: 6rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-gold-light);
  color: var(--color-gold-hover);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text {
  color: var(--color-dark-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px;
  height: 14px;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-glass-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

.glass-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.glass-label {
  font-size: 0.875rem;
  color: var(--color-dark-light);
  font-weight: 500;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    order: -1;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 1rem;
}

.gap-4 {
  gap: 2rem;
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}