/* DRA. CAROLINA VILLA - DESIGN SYSTEM & GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette from Manual */
  --color-gold-base: #c8a276;
  --color-gold-light: #f5f4b4;
  --color-gold-medium: #d7ab57;
  --color-gold-dark: #ba8847;
  --color-taupe: #8d7a5d;
  --color-beige: #dcc099;
  --color-offwhite: #efe7da;
  
  /* UI Helper Colors */
  --color-dark: #1f1c19;
  --color-dark-light: #2c2824;
  --color-white: #ffffff;
  --color-muted: #6e6357;
  --color-border: rgba(141, 122, 93, 0.2);
  --color-border-hover: rgba(141, 122, 93, 0.4);
  --color-overlay: rgba(31, 28, 25, 0.6);
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-medium) 50%, var(--color-gold-light) 100%);
  --gold-text-gradient: linear-gradient(135deg, #ba8847 0%, #d7ab57 40%, #c8a276 80%, #ba8847 100%);
  --dark-gradient: linear-gradient(180deg, #2c2824 0%, #1f1c19 100%);
  --shimmer-gradient: linear-gradient(90deg, rgba(239, 231, 218, 0) 0%, rgba(245, 244, 180, 0.3) 50%, rgba(239, 231, 218, 0) 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(141, 122, 93, 0.05), 0 2px 4px -1px rgba(141, 122, 93, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(141, 122, 93, 0.08), 0 4px 6px -2px rgba(141, 122, 93, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(31, 28, 25, 0.1), 0 10px 10px -5px rgba(31, 28, 25, 0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-offwhite);
  color: var(--color-dark);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Shimmer & Golden Accents */
.gold-text {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-taupe);
  font-weight: 600;
  margin-bottom: 8px;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-base) 50%, transparent);
  width: 100%;
  margin: 20px 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(239, 231, 218, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

header.scrolled {
  height: 70px;
  background: rgba(239, 231, 218, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo-cv {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--color-taupe);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 10px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--color-muted);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-taupe);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold-dark);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-icon-btn:hover {
  border-color: var(--color-gold-base);
  background-color: rgba(200, 162, 118, 0.05);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--color-dark);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-taupe);
  transition: all 0.3s ease;
}

/* Mobile Menu State */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-offwhite);
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    gap: 40px;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-top: 1px solid var(--color-border);
  }
  
  .nav-menu.open {
    left: 0;
  }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--color-dark);
  box-shadow: 0 4px 15px rgba(186, 136, 71, 0.2);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--shimmer-gradient);
  transition: all 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 136, 71, 0.3);
}

.btn-gold:hover::after {
  left: 100%;
}

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

.btn-outline:hover {
  background-color: var(--color-taupe);
  color: var(--color-offwhite);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 9px;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-dark);
}

.carousel-track {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.carousel-bg img, .carousel-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(31, 28, 25, 0.95) 0%, rgba(31, 28, 25, 0.5) 50%, rgba(31, 28, 25, 0.3) 100%);
}

.carousel-content {
  color: var(--color-offwhite);
  max-width: 650px;
  margin-top: 80px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

.carousel-slide.active .carousel-content {
  transform: translateY(0);
  opacity: 1;
}

.carousel-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 24px;
}

.carousel-title italic {
  font-style: italic;
  color: var(--color-gold-base);
}

.carousel-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(239, 231, 218, 0.8);
  margin-bottom: 36px;
}

/* Carousel Navigations */
.carousel-arrows {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(239, 231, 218, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-offwhite);
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: var(--color-offwhite);
  color: var(--color-dark);
  border-color: var(--color-offwhite);
}

.carousel-indicators {
  position: absolute;
  bottom: 50px;
  left: 80px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-indicator {
  width: 30px;
  height: 2px;
  background-color: rgba(239, 231, 218, 0.3);
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background-color: var(--color-gold-base);
  width: 50px;
}

@media (max-width: 767px) {
  .carousel-arrows {
    right: 24px;
    bottom: 24px;
  }
  .carousel-indicators {
    left: 24px;
    bottom: 35px;
  }
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-offwhite);
}

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 10px;
}

.section-title italic {
  font-style: italic;
  color: var(--color-taupe);
}

.section-dark .section-title italic {
  color: var(--color-gold-base);
}

/* About / Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 231, 218, 0.2);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.intro-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(239, 231, 218, 0.9);
  backdrop-filter: blur(8px);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold-base);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.intro-badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gold-dark);
  line-height: 1;
}

.intro-badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-taupe);
  margin-top: 4px;
}

.intro-content p {
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
}

@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-base);
  box-shadow: var(--shadow-md);
}

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

.value-icon {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-gold-base);
  margin-bottom: 24px;
  line-height: 1;
}

.value-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.value-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.section-dark .value-card {
  background: var(--color-dark-light);
  border-color: rgba(141, 122, 93, 0.1);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-gradient);
  top: 38px;
  z-index: 2;
  border: 2px solid var(--color-offwhite);
}

.timeline-item:nth-child(odd)::after {
  right: -6px;
}

.timeline-item:nth-child(even)::after {
  left: -6px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item::after {
    left: 14px !important;
  }
}

/* Card Bento Grid for Treatments/Skincare */
.grid-bento {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card, .treatment-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover, .treatment-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold-base);
  box-shadow: var(--shadow-md);
}

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .card-img, .treatment-card:hover .card-img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--color-dark);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-taupe);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.card-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.card-volume {
  font-size: 11px;
  color: var(--color-muted);
}

/* Category Filters */
.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-taupe);
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: var(--color-dark);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(186, 136, 71, 0.15);
}

/* E-Commerce Drawer / Side Cart */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-offwhite);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close-btn {
  font-size: 20px;
  color: var(--color-taupe);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-muted);
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 500;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.qty-btn:hover {
  background-color: var(--color-beige);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background: rgba(141, 122, 93, 0.05);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-overlay);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-size: 18px;
}

.modal-image {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.modal-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 30px;
}

.modal-section-title {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-taupe);
  margin-bottom: 16px;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.modal-list li {
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-list li::before {
  content: '✦';
  color: var(--color-gold-base);
}

/* Forms & Checkout Setup */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-taupe);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-gold-base);
  box-shadow: 0 0 0 3px rgba(200, 162, 118, 0.1);
}

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

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-offwhite);
  border: 2px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.step-dot.active {
  border-color: var(--color-gold-base);
  background-color: var(--color-gold-base);
  color: var(--color-dark);
}

.step-dot.completed {
  border-color: var(--color-gold-base);
  background-color: var(--color-gold-base);
  color: var(--color-dark);
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

/* Testimonials */
.testimonials-slider {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.4;
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.testimonial-author span {
  font-weight: 400;
  color: var(--color-muted);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gold-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-info-content p {
  font-size: 14px;
  color: var(--color-muted);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-offwhite);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(141, 122, 93, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(239, 231, 218, 0.6);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-gold-base);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(239, 231, 218, 0.7);
}

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(239, 231, 218, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--color-gold-base);
  color: var(--color-gold-base);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(239, 231, 218, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(239, 231, 218, 0.4);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeIn 0.8s ease forwards;
}
