/* ===== CSS Variables - Premium Palette ===== */
:root {
  /* Refined luxury color palette - Inverted Dark Theme */
  --primary: #ffffff;
  --accent: #c9a96e;
  --accent-light: #e2d1a8;
  --accent-dark: #a68b4e;
  --background: #1a1816;
  --background-alt: #2d2b28;
  --white: #1a1a1a;
  --cream: #1a1816;
  --gray-light: #2d2b28;
  --gray: #8a8580;
  --gray-dark: #c4c1be;
  --text: #1a1918;
  --charcoal: #fdfbf7;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--background);
  font-weight: 400;
  letter-spacing: 0.03em;
  /* Added for smooth parallax */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary);
  /* Editorial letter-spacing */
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Parallax & Animation Classes ===== */
/* New parallax system */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-image {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 42px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: solid 1px;
  position: relative;
  overflow: hidden;
}

/* Button hover effect with pseudo-element */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn-large {
  padding: 20px 56px;
  font-size: 12px;
}

.btn-primary {
  background-color: var(--charcoal);
  color: var(--background);
  border-color: #110f0d;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.25);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--charcoal);
  color: var(--background);
  transform: translateY(-3px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--charcoal);
  color: var(--background);
  transform: translateY(-3px);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background-color: var(--accent-dark);
  color: var(--background);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.btn-light:hover,
.btn-light:focus-visible {
  background-color: transparent;
  color: var(--primary);
}

/* Remove default focus outline for buttons when using custom styles */
.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--charcoal);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.btn-light {
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--white);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--white);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-image {
  width: 90px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1816;
  letter-spacing: 0.08em;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  gap: 55px;
}

.nav-menu a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #4a4745;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

/* Navbar Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.nav-link-with-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link-with-arrow svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link-with-arrow svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a4745;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--accent);
  padding-left: 24px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: #1a1816;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1a1816;
  transition: all 0.4s ease;
}

/* ===== Hero Section - Luxury Editorial ===== */
/* Complete hero redesign for luxury editorial feel */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("public/images/Hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Tint overlay - adjustable for client image */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 22, 0.85) 0%,
    rgba(45, 43, 40, 0.80) 50%,
    rgba(26, 24, 22, 0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero h1 {
  font-size: 82px;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.05;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  color: var(--accent);
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-divider span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero p {
  font-size: 17px;
  color: var(--gray-dark);
  margin-bottom: 60px;
  line-height: 2;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

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

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== Section Headers - Editorial Style ===== */
/* Enhanced editorial typography */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.light {
  color: var(--white);
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light .section-label {
  color: var(--accent-light);
}

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 54px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
}

.text-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 30px 0;
}

/* ===== About Snapshot - Luxury ===== */
.about-snapshot {
  padding: 80px 24px;
  text-align: center;
  background-color: #ffffff;
  position: relative;
}

.about-snapshot::before {
  content: '"';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
}

.about-snapshot h2 {
  color: #2d2b28;
}

.about-snapshot p {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #4a4745;
  line-height: 2.1;
  font-size: 17px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

/* ===== Services Preview - Editorial Cards ===== */
.services-preview {
  padding: 80px 24px;
  text-align: center;
  background-color: var(--background);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 70px;
}

.service-card {
  background-color: #2d2b28;
  padding: 60px 40px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #3a3735;
  position: relative;
  overflow: hidden;
}

/* Luxury hover effect */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Signature experience line */
.service-card p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.service-card .signature-line {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
}

/* ===== Gallery Preview - Luxury Editorial Carousel ===== */
/* Complete carousel redesign for fashion lookbook style */
.gallery-preview {
  padding: 80px 24px;
  text-align: center;
  background-color: #ffffff;
  overflow: hidden;
}

.gallery-preview h2 {
  color: #2d2b28;
}

.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center slide emphasis - lookbook style */
.carousel-slide.center {
  transform: scale(1.05);
  z-index: 2;
}

.carousel-slide:not(.center) {
  opacity: 0.6;
  transform: scale(0.95);
}

.carousel-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.5 / 3;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #2d2b28 0%, #3a3735 100%);
}

@media (max-width: 1024px) {
  .carousel-slide {
    min-width: 50%;
    padding: 0 10px;
  }

  .carousel-slide.center {
    transform: scale(1.03);
  }

  .carousel-slide:not(.center) {
    transform: scale(0.93);
    opacity: 0.65;
  }

  .carousel-image-wrapper {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 768px) {
  .gallery-carousel {
    gap: 20px;
  }

  .carousel-slide {
    min-width: 100%;
    padding: 0;
  }

  .carousel-slide.center,
  .carousel-slide:not(.center) {
    transform: scale(1);
    opacity: 1;
  }

  .carousel-image-wrapper {
    aspect-ratio: 3 / 4;
    min-height: auto;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .carousel-overlay {
    padding: 40px 20px 25px;
  }

  .carousel-overlay span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-carousel {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    position: absolute;
  }

  .carousel-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-image-wrapper {
    aspect-ratio: 9 / 12;
  }

  .carousel-overlay {
    padding: 35px 15px 20px;
  }

  .carousel-overlay span {
    font-size: 9px;
  }
}

.carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.carousel-image-wrapper:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 25px 35px;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-image-wrapper:hover .carousel-overlay {
  opacity: 1;
  transform: translateY(0);
}

.carousel-overlay span {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Minimal elegant carousel controls */
.carousel-btn,
.carousel-control {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 169, 110, 0.9);
  border: 2px solid var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.carousel-btn:hover,
.carousel-control:hover {
  background-color: var(--accent-dark);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.5);
  border-color: var(--accent-dark);
}

/* Capsule-style dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}

.carousel-dot.active {
  background-color: var(--accent);
  width: 40px;
}

/* ===== Why Choose Us - Exclusive Focus ===== */
/* Simplified to focus on exclusivity */
.why-choose {
  padding: 80px 24px;
  text-align: center;
  background-color: var(--background-alt);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.feature-card {
  padding: 50px 35px;
  text-align: center;
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gray-light), transparent);
}

.feature-card:last-child::after {
  display: none;
}

.feature-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 25px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 500;
}

.feature-card p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.9;
}

/* ===== Testimonials - Editorial Slider ===== */
.testimonials {
  padding: 80px 24px;
  text-align: center;
  background-color: #ffffff;
}

.testimonials h2 {
  color: #2d2b28;
}

.testimonial-slider {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 450px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-content {
  background: #f9f7f4;
  padding: 80px 100px;
  text-align: center;
  position: relative;
}

.quote-icon {
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 40px;
}

.testimonial-content > p {
  font-size: 24px;
  line-height: 1.9;
  color: #2d2b28;
  font-style: italic;
  margin-bottom: 50px;
  font-family: "Cormorant Garamond", serif;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.client-avatar {
  width: 75px;
  height: 75px;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.client-details .client-name {
  display: block;
  font-weight: 600;
  color: #2d2b28;
  margin-bottom: 5px;
  font-size: 16px;
}

.client-service {
  display: block;
  font-size: 11px;
  color: #8a8580;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.client-details .stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}

.testimonial-dot.active {
  background-color: var(--accent);
  width: 40px;
}

/* ===== Contact CTA ===== */
.contact-cta {
  padding: 80px 24px;
  background-color: var(--charcoal);
}

.contact-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info-cta {
  color: #2d2b28;
}

.cta-info-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.cta-info-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.cta-info-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--accent);
}

.cta-info-item p {
  color: rgba(26, 24, 22, 0.75);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.map-container iframe {
  border-radius: 0;
  filter: grayscale(0%);
  transition: filter 0.6s ease;
}

/* ===== Footer - Dark Elegant ===== */
/* Heavier, more elegant footer */
.footer {
  background-color: #1a1816;
  color: rgba(255, 255, 255, 0.7);
  padding: 120px 24px 50px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 400;
}

.footer-tagline {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-desc {
  color: #8a8580;
  font-size: 14px;
  line-height: 1.9;
}

.footer h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #8a8580;
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: var(--gray);
  transition: all 0.4s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.4);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* ===== Page Header - Editorial ===== */
/* More editorial page headers */
.page-header {
  padding: 200px 24px 120px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: 64px;
  margin-bottom: 20px;
  font-weight: 400;
}

.page-header p {
  color: var(--gray);
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* ===== About Page - Brand Manifesto ===== */
/* Storytelling-focused about page */
.about-content {
  padding: 150px 24px;
  background-color: var(--white);
}

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

.about-text .section-label {
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: 46px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.15;
}

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 25px;
  line-height: 2;
  font-size: 15px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Vision values as philosophy */
.vision-values {
  padding: 150px 24px;
  text-align: center;
  background-color: var(--background);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.value-card {
  background-color: var(--white);
  padding: 60px 35px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
  width: 60%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.value-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 25px;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

.value-card p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.9;
}

.experience-section {
  padding: 150px 24px;
  background-color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.experience-image {
  position: relative;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-image:hover img {
  transform: scale(1.05);
}

.experience-text .section-label {
  margin-bottom: 18px;
}

.experience-text h2 {
  font-size: 46px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.15;
}

.experience-text p {
  color: var(--gray-dark);
  margin-bottom: 25px;
  line-height: 2;
  font-size: 15px;
}

.experience-stats {
  display: flex;
  gap: 60px;
  margin-top: 50px;
}

.stat {
  text-align: left;
}

.stat-number {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-suffix {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 10px;
}

.page-cta {
  padding: 120px 24px;
  text-align: center;
  background-color: var(--charcoal);
  color: var(--white);
}

.page-cta h2 {
  font-size: 46px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 400;
}

.page-cta p {
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* ===== Services Page - Curated Experiences ===== */
/* Services as experiences, not list */
.services-page {
  padding: 100px 24px 150px;
  background-color: var(--white);
}

.service-category {
  margin-bottom: 100px;
}

/* Dropdown Service Category Styles */
.service-category-dropdown {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray-light);
}

.category-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 40px 0;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-toggle:hover {
  background-color: rgba(201, 169, 110, 0.05);
}

.category-header-toggle {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.toggle-icon {
  margin-left: auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.services-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-dropdown-content.open {
  max-height: 2000px;
  overflow: visible;
}

.services-dropdown-content .services-grid-full {
  padding-bottom: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--gray-light);
}

.category-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
}

.category-header h2 {
  font-size: 36px;
  font-weight: 400;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card-full {
  background-color: var(--background);
  padding: 55px 40px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
}

.service-card-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-full:hover::before {
  height: 100%;
}

.service-card-full:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.service-icon-large {
  color: var(--accent);
  margin-bottom: 30px;
}

.service-details h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

.service-details p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.9;
}

/* ===== Gallery Page - Fashion Lookbook ===== */
/* Lookbook-style gallery */
.gallery-page {
  padding: 80px 24px 150px;
  background-color: var(--white);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 80px;
}

.gallery-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background-color: transparent;
  border: 1px solid var(--gray-light);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.5s ease;
}

.gallery-tab:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.gallery-tab.active {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-tab svg {
  transition: color 0.5s ease;
}

.gallery-tab-content {
  display: none;
}

.gallery-tab-content.active {
  display: block;
  animation: fadeInGallery 0.7s ease;
}

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

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gallery-item,
.gallery-item-full {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

/* ===== Video Gallery Section ===== */
.video-gallery-section {
  padding: 100px 24px;
  background-color: #ffffff;
}

.video-gallery-section .section-header {
  margin-bottom: 60px;
}

.video-gallery-section h2 {
  color: #2d2b28;
}

.video-gallery-section p {
  color: #4a4745;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item {
  background-color: #faf8f5;
  overflow: hidden;
  border: 1px solid #e8e4de;
  transition: all 0.4s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.video-wrapper.instagram-reel {
  padding-bottom: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instagram-cta {
  text-align: center;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.instagram-cta p {
  font-size: 18px;
  color: rgb(27, 26, 26);
  max-width: 600px;
}

.video-info {
  padding: 28px;
}

.video-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: #2d2b28;
  margin-bottom: 8px;
}

.video-info p {
  font-size: 14px;
  color: #8a8580;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .category-toggle {
    padding: 30px 0;
  }

  .category-header-toggle {
    gap: 20px;
  }

  .category-number {
    font-size: 32px;
  }

  .category-header-toggle h2 {
    font-size: 22px;
  }

  .services-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-card-full {
    padding: 40px 25px;
  }
  
  .gallery-full-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item-full {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(15%);
}

.gallery-item-full:hover img {
  transform: scale(1.12);
  filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 25px 30px;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-full:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== Contact Page Premium - Luxury Invitation ===== */
/* Contact as luxury invitation */
.contact-page {
  padding: 80px 24px 150px;
  background-color: var(--white);
}

.contact-premium {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro-section {
  margin-bottom: 80px;
}

.contact-intro-section h2 {
  font-size: 46px;
  margin-bottom: 25px;
  font-weight: 400;
}

.contact-intro-section p {
  color: var(--gray-dark);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.contact-card-premium {
  background: var(--background-alt);
  padding: 55px 30px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-align: center;
}

.contact-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.contact-card-icon-premium {
  color: var(--accent);
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.contact-card-premium h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}

.contact-card-premium p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.9;
}

.contact-cta-premium {
  background: var(--charcoal);
  padding: 80px 60px;
  color: var(--white);
}

.contact-cta-premium h3 {
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 400;
}

.contact-cta-premium p {
  color: #4a4745;
  margin-bottom: 45px;
  font-size: 16px;
}

.contact-buttons-premium {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-cta-premium .btn-secondary {
  background-color: transparent;
  color: black;
  border-color: black;
}

.contact-cta-premium .btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--background);
}

.map-section-premium {
  padding: 0 24px 150px;
  background-color: var(--white);
}

.map-wrapper-premium {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.map-wrapper-premium iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0%);
}

.map-wrapper-premium:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ===== Animation Classes ===== */
.animate-in {
  animation: animateIn 0.7s ease forwards;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-card::after {
    display: none;
  }

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

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

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

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

  .carousel-slide {
    min-width: 50%;
  }

  .contact-cards-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .contact-card-premium {
    padding: 45px 24px;
  }

  .contact-card-premium h3 {
    font-size: 18px;
  }

  .contact-card-premium p {
    font-size: 13px;
  }

  .contact-cta-premium {
    padding: 60px 40px;
  }

  .contact-cta-premium h3 {
    font-size: 28px;
  }

  .contact-buttons-premium {
    gap: 20px;
  }

  .map-wrapper-premium {
    aspect-ratio: 16 / 10;
  }

  .section-header h2 {
    font-size: 44px;
  }

  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  /* Reduced parallax on mobile */
  .parallax-image {
    transform: none !important;
  }

  .nav-container {
    padding: 0 24px;
    height: 85px;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 50px 24px;
    gap: 30px;
    transform: translateY(-150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    padding: 140px 24px 100px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    padding: 20px 32px;
  }

  .hero-scroll {
    display: none;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-cta-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .about-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid-full {
    grid-template-columns: 1fr;
  }

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

  .experience-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-buttons,
  .contact-buttons-premium {
    flex-direction: column;
    align-items: center;
  }

  .page-header {
    padding: 160px 24px 80px;
  }

  .page-header h1 {
    font-size: 42px;
  }

  .carousel-slide {
    min-width: 100%;
  }

  .carousel-slide.center,
  .carousel-slide:not(.center) {
    transform: none;
    opacity: 1;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .testimonial-content {
    padding: 60px 40px;
  }

  .testimonial-content > p {
    font-size: 20px;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-card-premium {
    padding: 35px 20px;
  }

  .contact-card-icon-premium {
    margin-bottom: 20px;
  }

  .contact-card-premium h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .contact-card-premium p {
    font-size: 12px;
  }

  .gallery-tabs {
    flex-direction: column;
    align-items: stretch;
  }

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

  .contact-cta-premium {
    padding: 60px 20px;
    text-align: center;
    background-color: #fdfbf7;
    color: #2d2b28;
  }

  .contact-cta-premium h2,
  .contact-cta-premium h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #2d2b28;
  }

  .contact-cta-premium p {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #4a4745;
  }

  .contact-buttons-premium {
    flex-direction: column;
    gap: 12px;
  }

  .contact-buttons-premium .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 11px;
  }

  .map-wrapper-premium {
    aspect-ratio: 4 / 5;
  }

  .map-section-premium {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 480px) {
  .contact-intro-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .contact-intro-section p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .contact-card-premium {
    padding: 28px 16px;
  }

  .contact-card-icon-premium {
    margin-bottom: 16px;
  }

  .contact-card-icon-premium svg {
    width: 24px;
    height: 24px;
  }

  .contact-card-premium h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .contact-card-premium p {
    font-size: 11px;
    line-height: 1.7;
  }

  .contact-cta-premium {
    padding: 40px 16px;
  }

  .contact-cta-premium h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-cta-premium p {
    font-size: 13px;
    margin: 0 auto 20px;
  }

  .contact-buttons-premium {
    flex-direction: column;
    gap: 10px;
  }

  .contact-buttons-premium .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 10px;
    gap: 8px;
  }

  .contact-buttons-premium .btn svg {
    width: 16px;
    height: 16px;
  }

  .map-wrapper-premium {
    aspect-ratio: 1 / 1.2;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-snapshot,
  .services-preview,
  .gallery-preview,
  .why-choose,
  .testimonials {
    padding: 100px 24px;
  }
}

/* ===== Booking Form Section ===== */
.booking-form-section {
  padding: 100px 24px;
  background-color: #ffffff;
}

.booking-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.booking-form-header {
  text-align: center;
  margin-bottom: 60px;
}

.booking-form-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: #2d2b28;
  margin-bottom: 16px;
}

.booking-form-header p {
  font-size: 17px;
  color: #4a4745;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form {
  background-color: #faf8f5;
  padding: 50px;
  border: 1px solid #e8e4de;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 30px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d2b28;
  margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 1px solid #e8e4de;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #2d2b28;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a8580;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  text-align: center;
  margin-top: 40px;
}

  .form-actions {
    margin-top: 30px;
  }

  .form-actions .btn {
    min-width: 280px;
    padding: 18px 50px;
  }

  .form-note {
    margin-top: 16px;
    font-size: 13px;
    color: #8a8580;
    font-style: italic;
  }

  @media (max-width: 480px) {
    .form-actions .btn {
      min-width: 100%;
      padding: 16px 30px;
      font-size: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 16px;
      font-size: 14px;
    }

    .form-group label {
      font-size: 11px;
    }

    .form-group textarea {
      min-height: 100px;
    }

    .form-note {
      font-size: 11px;
    }
  }

@media (max-width: 1024px) {
  .booking-form-section {
    padding: 80px 24px;
  }

  .booking-form-header {
    margin-bottom: 50px;
  }

  .booking-form-header h2 {
    font-size: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .booking-form-section {
    padding: 60px 20px;
  }

  .booking-form-header {
    margin-bottom: 40px;
  }

  .booking-form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .booking-form-header p {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-form {
    padding: 30px 20px;
  }

  .form-actions .btn {
    width: 100%;
  }
}

/* ===== FAQs Section ===== */
.faqs-section {
  padding: 80px 24px;
  background-color: var(--background);
}

.faqs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-alt);
  border: 1px solid var(--gray-light);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 35px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 35px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 28px;
}

.faq-answer p {
  color: var(--gray-dark);
  line-height: 1.9;
  font-size: 15px;
}

/* ===== Testimonial Arrows ===== */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #e8e4de;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  color: #4a4745;
  z-index: 10;
}

.testimonial-arrow:hover {
  background-color: #1a1816;
  color: #ffffff;
  border-color: #1a1816;
}

.testimonial-prev {
  left: -70px;
}

.testimonial-next {
  right: -70px;
}

@media (max-width: 1200px) {
  .testimonial-prev {
    left: 20px;
  }
  
  .testimonial-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-arrow {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-prev {
    left: 10px;
  }
  
  .testimonial-next {
    right: 10px;
  }
  
  .faq-question {
    padding: 22px 25px;
    font-size: 18px;
  }
  
  .faq-answer {
    padding: 0 25px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 25px 22px;
  }
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 12px;
  bottom: 30px;
  z-index: 900;
}

.floating-buttons.left {
  left: 20px;
}

.floating-buttons.right {
  right: 20px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 20px;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.back-to-top {
  background-color: var(--accent);
  color: var(--background);
}

.back-to-top:hover {
  background-color: var(--accent-dark);
}

.back-to-top.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
}

.call-btn {
  background-color: #0066cc;
  color: white;
}

.call-btn:hover {
  background-color: #0052a3;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .floating-buttons.left {
    left: 15px;
  }

  .floating-buttons.right {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 15px;
    gap: 8px;
  }

  .floating-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .floating-buttons.left {
    left: 10px;
  }

  .floating-buttons.right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 80px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 8px;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    display: none;
    padding: 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 16px 24px;
    font-size: 11px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.active,
  .nav-menu a:hover {
    background-color: rgba(201, 169, 110, 0.08);
    color: #1a1816;
  }

  /* Mobile Dropdown Menu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding: 12px 24px 12px 40px;
    background-color: rgba(201, 169, 110, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .dropdown-menu a:hover {
    background-color: rgba(201, 169, 110, 0.12);
    padding-left: 44px;
  }

  .nav-link-with-arrow svg {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active .nav-link-with-arrow svg {
    transform: rotate(180deg);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
  }
}

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

  .video-wrapper {
    padding-bottom: 125%;
  }

  .video-wrapper.instagram-reel {
    padding-bottom: 140%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
    padding: 0 15px;
  }

  .hero p {
    font-size: 14px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 10px;
    width: 100%;
  }

  .gallery-full-grid {
    grid-template-columns: 1fr;
  }

  .experience-stats {
    flex-direction: column;
    gap: 35px;
  }

  .testimonial-content {
    padding: 45px 25px;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .client-details {
    text-align: center;
  }

  .client-details .stars {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .feature-card {
    text-align: center;
  }

  .value-card {
    text-align: center;
  }

  .about-text,
  .experience-text {
    text-align: center;
  }

  .text-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .video-wrapper {
    padding-bottom: 150%;
  }

  .video-wrapper.instagram-reel {
    padding-bottom: 165%;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card-premium {
    padding: 40px 25px;
  }

  .page-header {
    padding: 80px 24px 50px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .container {
    padding: 0 16px;
  }
}

