@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --luxury-navy: #0A0E27;
  --luxury-gold: #C9A961;
  --luxury-ivory: #F5F3F0;
  --luxury-charcoal: #1A1F35;
  --luxury-cream: #E8E5DF;
  --luxury-accent: #B8956A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--luxury-ivory);
  color: var(--luxury-navy);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 243, 240, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 14, 39, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--luxury-navy);
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-gold), transparent);
}

.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--luxury-navy);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--luxury-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav a:hover::before {
  width: 100%;
}

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

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--luxury-navy);
  transition: all 0.3s ease;
}

/* New Luxury Hero Section - Home */
.hero-luxury {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 3rem 4rem;
  overflow: hidden;
  background: var(--luxury-navy);
}

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

.hero-luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 53, 0.9) 100%);
}

.hero-luxury-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
  background-size: 100% 100%;
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.05); }
}

.hero-luxury-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luxury-gold);
}

.hero-badge-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--luxury-gold), transparent);
}

.hero-luxury-title {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-title-line {
  display: block;
  font-size: clamp(3.5rem, 6vw, 8rem);
  font-weight: 700;
  color: var(--luxury-ivory);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-title-accent {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--luxury-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.hero-luxury-subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: rgba(245, 243, 240, 0.85);
  max-width: 750px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-luxury-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-luxury-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(245, 243, 240, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--luxury-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Legacy hero styles for backward compatibility */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--luxury-ivory) 0%, var(--luxury-cream) 100%);
  padding: 120px 3rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--luxury-navy);
  margin-bottom: 2rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--luxury-charcoal);
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

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

/* New Luxury Page Hero Sections */
.page-hero-luxury {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 160px 3rem 6rem;
  overflow: hidden;
  background: var(--luxury-navy);
}

.page-hero-luxury-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-luxury-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 53, 0.95) 50%, rgba(10, 14, 39, 0.98) 100%);
}

.page-hero-luxury-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 15s ease-in-out infinite;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--luxury-gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--luxury-accent);
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--luxury-gold);
  top: 50%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.page-hero-luxury-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-luxury-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50px;
  margin-bottom: 2.5rem;
  color: var(--luxury-gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.page-hero-luxury-label i {
  font-size: 1rem;
}

.page-hero-luxury-title {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.page-hero-title-main {
  display: block;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--luxury-ivory);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-hero-title-underline {
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury-gold), transparent);
  margin: 0 auto;
}

.page-hero-luxury-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(245, 243, 240, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.page-hero-luxury-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 243, 240, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 97, 0.2);
}

/* About Page Hero Specific Styles */
.about-hero {
  min-height: 75vh;
}

.about-hero-bg {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
}

.about-hero-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(201, 169, 97, 0.03) 2px, rgba(201, 169, 97, 0.03) 4px);
  opacity: 0.5;
}

.about-hero-quote {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: rgba(201, 169, 97, 0.08);
  border-left: 3px solid var(--luxury-gold);
  border-radius: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.about-hero-quote i {
  font-size: 2rem;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  display: block;
}

.about-hero-quote-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(245, 243, 240, 0.9);
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.about-hero-title {
  margin-bottom: 2rem;
}

.about-hero-title-main {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--luxury-ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-hero-title-brand {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1.1;
}

.about-hero-subtitle {
  margin-bottom: 3rem;
}

.about-hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.about-hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.about-hero-feature:hover {
  background: rgba(201, 169, 97, 0.15);
  transform: translateY(-5px);
}

.about-hero-feature i {
  font-size: 2rem;
  color: var(--luxury-gold);
}

.about-hero-feature span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 243, 240, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Contact Page Hero Specific Styles */
.contact-hero {
  min-height: 65vh;
}

.contact-hero-bg {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 149, 106, 0.08) 0%, transparent 50%);
}

.contact-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.contact-hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.15);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.contact-hero-icon i {
  font-size: 2.5rem;
  color: var(--luxury-gold);
}

.contact-hero-title {
  margin-bottom: 2rem;
}

.contact-hero-title-main {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--luxury-ivory);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.contact-hero-title-accent {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--luxury-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.contact-hero-subtitle {
  margin-bottom: 3.5rem;
}

.contact-hero-quick-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50px;
  color: var(--luxury-gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.contact-quick-link:hover {
  background: rgba(201, 169, 97, 0.2);
  border-color: var(--luxury-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.contact-quick-link i {
  font-size: 1.1rem;
}

/* Legacy page-hero styles for backward compatibility */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
  color: var(--luxury-ivory);
  padding: 140px 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  color: var(--luxury-ivory);
}

.page-hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(245, 243, 240, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--luxury-navy);
  color: var(--luxury-ivory);
  box-shadow: 0 10px 40px rgba(10, 14, 39, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--luxury-gold);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--luxury-navy);
  box-shadow: 0 15px 50px rgba(10, 14, 39, 0.3);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--luxury-navy);
  border: 2px solid var(--luxury-navy);
}

.btn-secondary:hover {
  background: var(--luxury-navy);
  color: var(--luxury-ivory);
  transform: translateY(-2px);
}

.section {
  padding: 8rem 3rem;
  position: relative;
}

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

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--luxury-navy);
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--luxury-charcoal);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(10, 14, 39, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-accent));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(10, 14, 39, 0.12);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--luxury-navy);
}

.feature-item p {
  color: var(--luxury-charcoal);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-item h4 {
  font-size: 1.25rem;
  color: var(--luxury-navy);
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 14, 39, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-accent));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(10, 14, 39, 0.15);
}

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

.card-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2.5rem;
}

.card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--luxury-navy);
}

.card-text {
  color: var(--luxury-charcoal);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.card-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.card-list li {
  padding: 0.75rem 0;
  color: var(--luxury-charcoal);
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
}

.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--luxury-gold);
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin: 6rem 0;
}

.asymmetric-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--luxury-navy);
}

.asymmetric-content p {
  font-size: 1.1rem;
  color: var(--luxury-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.asymmetric-image {
  position: relative;
}

.asymmetric-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(10, 14, 39, 0.2);
}

.overlap-section {
  background: var(--luxury-navy);
  color: var(--luxury-ivory);
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 6rem 0;
  border-radius: 20px;
}

.overlap-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.overlap-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.overlap-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--luxury-ivory);
}

.overlap-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: rgba(245, 243, 240, 0.9);
}

.overlap-content ul {
  list-style: none;
  margin-top: 2rem;
}

.overlap-content li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.1rem;
  color: rgba(245, 243, 240, 0.9);
}

.overlap-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: 600;
  font-size: 1.5rem;
}

.stats-section {
  background: linear-gradient(135deg, var(--luxury-cream) 0%, white 100%);
  padding: 8rem 3rem;
  border-radius: 20px;
  margin: 6rem 0;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--luxury-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--luxury-charcoal);
  font-size: 0.95rem;
}

.contact-section {
  padding: 8rem 3rem;
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--luxury-navy);
}

.contact-info > p {
  font-size: 1.15rem;
  color: var(--luxury-charcoal);
  margin-bottom: 3rem;
  line-height: 1.9;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(10, 14, 39, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(10, 14, 39, 0.1);
}

.contact-detail i {
  font-size: 2rem;
  color: var(--luxury-gold);
  margin-top: 0.25rem;
  min-width: 40px;
}

.contact-detail div {
  flex: 1;
}

.contact-detail strong {
  display: block;
  font-size: 1.1rem;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-detail span,
.contact-detail a {
  color: var(--luxury-charcoal);
  font-size: 1.05rem;
  text-decoration: none;
  display: block;
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--luxury-gold);
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0 10px 50px rgba(10, 14, 39, 0.1);
  max-width: 900px;
  margin: 4rem auto 0;
}

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 10px 50px rgba(10, 14, 39, 0.1);
}

.contact-form-wrapper h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--luxury-navy);
}

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

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--luxury-navy);
  background: var(--luxury-ivory);
  border: 2px solid rgba(10, 14, 39, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(26, 31, 53, 0.4);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.4rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
  color: var(--luxury-charcoal);
}

.checkbox-group label a {
  color: var(--luxury-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-group label a:hover {
  color: var(--luxury-accent);
}

.map-container {
  margin-top: 6rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(10, 14, 39, 0.1);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.faq-section {
  background: white;
  padding: 8rem 3rem;
  margin-top: 4rem;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer {
  background: var(--luxury-navy);
  color: var(--luxury-ivory);
  padding: 3rem;
  text-align: center;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(245, 243, 240, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--luxury-navy);
  color: var(--luxury-ivory);
  padding: 2rem 3rem;
  box-shadow: 0 -10px 40px rgba(10, 14, 39, 0.3);
  z-index: 2000;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--luxury-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .asymmetric-image {
    order: -1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-info {
    position: static;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1.25rem 2rem;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--luxury-ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(10, 14, 39, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
      .section {
        padding: 5rem 2rem;
      }
      
      .hero {
        padding: 100px 2rem 3rem;
      }
      
      .hero-luxury {
        padding: 120px 2rem 3rem;
        min-height: 90vh;
      }
      
      .hero-luxury-badge {
        margin-bottom: 2rem;
      }
      
      .hero-title-line {
        font-size: clamp(2.5rem, 6vw, 5rem);
      }
      
      .hero-title-accent {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      }
      
      .hero-luxury-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
      }
      
      .hero-luxury-cta .btn {
        width: 100%;
        max-width: 300px;
      }
      
      .page-hero {
        padding: 120px 2rem 4rem;
      }
      
      .page-hero-luxury {
        padding: 140px 2rem 4rem;
        min-height: 60vh;
      }
      
      .page-hero-luxury-label {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
      }
      
      .page-hero-title-main {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
      }
      
      .page-hero-luxury-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
      }
      
      .hero-stat-divider {
        display: none;
      }
      
      .about-hero-quote {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
      }
      
      .about-hero-quote-text {
        font-size: clamp(1rem, 2vw, 1.2rem);
      }
      
      .about-hero-title-main {
        font-size: clamp(2rem, 4vw, 3rem);
      }
      
      .about-hero-title-brand {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
      }
      
      .about-hero-features {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
      }
      
      .contact-hero-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
      }
      
      .contact-hero-icon i {
        font-size: 2rem;
      }
      
      .contact-hero-title-main {
        font-size: clamp(2.5rem, 5vw, 4rem);
      }
      
      .contact-hero-title-accent {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
      }
      
      .contact-hero-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
      }
      
      .contact-quick-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
      
      .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .grid-3 {
        grid-template-columns: 1fr;
      }
  
  .contact-form-wrapper {
    padding: 2.5rem;
  }
  
  .faq-section {
    padding: 5rem 2rem;
  }
  
  .contact-card {
    padding: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Policy Pages Styles */
.policy-hero {
  min-height: 50vh;
}

.policy-hero-bg {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
}

.policy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 35%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(184, 149, 106, 0.08) 0%, transparent 50%);
}

.policy-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(201, 169, 97, 0.02) 2px, rgba(201, 169, 97, 0.02) 4px);
  opacity: 0.6;
}

.policy-hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.15);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.policy-hero-icon i {
  font-size: 2.5rem;
  color: var(--luxury-gold);
}

.policy-hero-title {
  margin-bottom: 2rem;
}

.policy-hero-title-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--luxury-ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.policy-hero-title-accent {
  display: block;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1.1;
}

.policy-hero-subtitle {
  margin-bottom: 2rem;
}

.policy-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.policy-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 243, 240, 0.8);
  font-size: 0.9rem;
}

.policy-meta-item i {
  color: var(--luxury-gold);
  font-size: 1.1rem;
}

.policy-section {
  padding: 6rem 3rem;
  background: var(--luxury-ivory);
}

.policy-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.policy-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.policy-nav {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(10, 14, 39, 0.06);
}

.policy-nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.policy-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--luxury-charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2rem;
}

.policy-nav-link::before {
  content: '→';
  position: absolute;
  left: 0.75rem;
  color: var(--luxury-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.policy-nav-link:hover {
  background: rgba(201, 169, 97, 0.1);
  color: var(--luxury-navy);
  padding-left: 2.5rem;
}

.policy-nav-link:hover::before {
  opacity: 1;
}

.policy-main {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(10, 14, 39, 0.08);
}

.policy-main-full {
  grid-column: 1 / -1;
}

.policy-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--luxury-charcoal);
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: rgba(201, 169, 97, 0.05);
  border-left: 4px solid var(--luxury-gold);
  border-radius: 12px;
}

.policy-article {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(10, 14, 39, 0.1);
}

.policy-article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-article-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.policy-article-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
  opacity: 0.3;
  min-width: 80px;
}

.policy-article-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--luxury-navy);
  font-weight: 600;
  margin: 0;
}

.policy-article-content {
  padding-left: 6rem;
}

.policy-article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--luxury-charcoal);
  margin-bottom: 1.5rem;
}

.policy-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.policy-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--luxury-charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: 600;
  font-size: 1.2rem;
}

.policy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.policy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(201, 169, 97, 0.05);
  border-radius: 12px;
}

.policy-contact-item i {
  font-size: 1.5rem;
  color: var(--luxury-gold);
  margin-top: 0.25rem;
}

.policy-contact-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.policy-contact-item p {
  margin: 0;
  color: var(--luxury-charcoal);
}

.policy-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.policy-right-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(201, 169, 97, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--luxury-gold);
  transition: all 0.3s ease;
}

.policy-right-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(5px);
}

.policy-right-item i {
  font-size: 2rem;
  color: var(--luxury-gold);
  margin-top: 0.25rem;
  min-width: 40px;
}

.policy-right-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.policy-right-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--luxury-charcoal);
  line-height: 1.6;
}

.cookie-type {
  margin: 2.5rem 0;
  padding: 2.5rem;
  background: rgba(201, 169, 97, 0.05);
  border-radius: 16px;
  border-left: 4px solid var(--luxury-gold);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-type-header i {
  font-size: 2rem;
  color: var(--luxury-gold);
}

.cookie-type-header h3 {
  font-size: 1.5rem;
  color: var(--luxury-navy);
  margin: 0;
  font-weight: 600;
}

.cookie-type p {
  margin-bottom: 1.5rem;
}

.cookie-browsers {
  margin-top: 2.5rem;
}

.cookie-browsers h4 {
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cookie-browser-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-browser-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(201, 169, 97, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cookie-browser-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(5px);
}

.cookie-browser-item i {
  font-size: 2rem;
  color: var(--luxury-gold);
  margin-top: 0.25rem;
  min-width: 40px;
}

.cookie-browser-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-browser-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--luxury-charcoal);
  line-height: 1.6;
}

.policy-alert {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 53, 0.9) 100%);
  color: var(--luxury-ivory);
  border-radius: 16px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 40px rgba(10, 14, 39, 0.2);
}

.policy-alert i {
  font-size: 2.5rem;
  color: var(--luxury-gold);
  margin-top: 0.25rem;
  min-width: 50px;
}

.policy-alert h3 {
  font-size: 1.5rem;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-alert p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 243, 240, 0.9);
}

.return-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.return-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(10, 14, 39, 0.06);
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.return-timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 40px rgba(10, 14, 39, 0.1);
}

.return-timeline-success {
  border-left-color: #10b981;
}

.return-timeline-warning {
  border-left-color: #f59e0b;
}

.return-timeline-error {
  border-left-color: #ef4444;
}

.return-timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.return-timeline-success .return-timeline-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.return-timeline-warning .return-timeline-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.return-timeline-error .return-timeline-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.return-timeline-icon i {
  font-size: 1.5rem;
}

.return-timeline-content h4 {
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.return-timeline-content p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--luxury-charcoal);
  line-height: 1.7;
}

.return-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem 0;
  position: relative;
  padding-left: 3rem;
}

.return-steps::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--luxury-gold), rgba(201, 169, 97, 0.3));
}

.return-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.return-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--luxury-gold);
  color: var(--luxury-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.return-step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.return-step-content h4 {
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.return-step-content p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--luxury-charcoal);
  line-height: 1.7;
}

.policy-cta {
  margin-top: 5rem;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.policy-cta-highlight {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-accent) 100%);
  border: none;
  color: var(--luxury-navy);
}

.policy-cta-highlight .policy-cta-content h3,
.policy-cta-highlight .policy-cta-content p {
  color: var(--luxury-navy);
}

.policy-cta-highlight .policy-cta-content i {
  color: var(--luxury-navy);
}

.policy-cta-content i {
  font-size: 3rem;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.policy-cta-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--luxury-navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-cta-content p {
  font-size: 1.15rem;
  color: var(--luxury-charcoal);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.policy-cta-content .btn {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .policy-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .policy-sidebar {
    position: static;
  }
  
  .policy-article-content {
    padding-left: 0;
  }
  
  .policy-article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .policy-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .policy-section {
    padding: 4rem 2rem;
  }
  
  .policy-main {
    padding: 3rem 2rem;
  }
  
  .policy-article-number {
    font-size: 3rem;
    min-width: 60px;
  }
  
  .return-steps {
    padding-left: 2.5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  body {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .header-inner {
    padding: 1rem 1rem;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .nav-toggle span {
    width: 22px;
    height: 2px;
  }
  
  .nav {
    width: 85%;
    max-width: 280px;
    padding: 2rem 1.5rem;
  }
  
  .nav a {
    font-size: 0.95rem;
    padding: 0.75rem 0;
  }
  
  /* Hero Luxury - Home */
  .hero-luxury {
    padding: 100px 1rem 2rem;
    min-height: 85vh;
  }
  
  .hero-luxury-badge {
    margin-bottom: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-badge-text {
    font-size: 0.75rem;
  }
  
  .hero-badge-line {
    width: 40px;
  }
  
  .hero-title-line {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 0.25rem;
  }
  
  .hero-title-accent {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 0.1em;
  }
  
  .hero-luxury-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-luxury-cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
    width: 100%;
  }
  
  .hero-luxury-cta .btn {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    font-size: 0.8rem;
  }
  
  .hero-luxury-scroll {
    font-size: 0.75rem;
    gap: 0.75rem;
  }
  
  .hero-scroll-line {
    height: 30px;
  }
  
  /* Page Hero Luxury */
  .page-hero-luxury {
    padding: 120px 1rem 3rem;
    min-height: 55vh;
  }
  
  .page-hero-luxury-label {
    font-size: 0.7rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }
  
  .page-hero-luxury-label i {
    font-size: 0.875rem;
  }
  
  .page-hero-title-main {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 0.5rem;
  }
  
  .page-hero-title-underline {
    width: 80px;
    height: 2px;
  }
  
  .page-hero-luxury-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .page-hero-luxury-stats {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero-stat-number {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .hero-stat-label {
    font-size: 0.75rem;
  }
  
  /* About Hero */
  .about-hero {
    min-height: 60vh;
    padding: 120px 1rem 3rem;
  }
  
  .about-hero-quote {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .about-hero-quote i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .about-hero-quote-text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
  }
  
  .about-hero-title-main {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .about-hero-title-brand {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .about-hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
  }
  
  .about-hero-features {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .about-hero-feature {
    padding: 1rem 1.5rem;
    width: 100%;
  }
  
  .about-hero-feature i {
    font-size: 1.5rem;
  }
  
  .about-hero-feature span {
    font-size: 0.8rem;
  }
  
  /* Contact Hero */
  .contact-hero {
    min-height: 55vh;
    padding: 120px 1rem 3rem;
  }
  
  .contact-hero-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .contact-hero-icon i {
    font-size: 1.75rem;
  }
  
  .contact-hero-title-main {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 0.5rem;
  }
  
  .contact-hero-title-accent {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }
  
  .contact-hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  
  .contact-hero-quick-links {
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
  }
  
  .contact-quick-link {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .contact-quick-link i {
    font-size: 1rem;
  }
  
  /* Sections */
  .section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  
  /* Buttons */
  .btn {
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
  
  /* Cards */
  .card {
    border-radius: 12px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 0.75rem;
  }
  
  .card-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .card-image {
    height: 200px;
  }
  
  .price {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
  }
  
  /* Feature Items */
  .feature-grid {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .feature-item {
    padding: 2rem 1.5rem;
    border-radius: 10px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.75rem;
  }
  
  .feature-item p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    line-height: 1.6;
  }
  
  /* Grids */
  .grid {
    gap: 1.5rem;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Asymmetric Sections */
  .asymmetric-section {
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .asymmetric-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .asymmetric-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    margin-bottom: 1rem;
    line-height: 1.7;
  }
  
  .asymmetric-image img {
    height: 300px;
    border-radius: 12px;
  }
  
  /* Overlap Sections */
  .overlap-section {
    padding: 4rem 1rem;
    margin: 3rem 0;
    border-radius: 12px;
  }
  
  .overlap-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .overlap-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    margin-bottom: 1rem;
    line-height: 1.7;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 3rem 1rem;
  }
  
  .contact-container {
    gap: 2.5rem;
  }
  
  .contact-info h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .contact-info > p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    margin-bottom: 2rem;
  }
  
  .contact-detail {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }
  
  .contact-detail i {
    font-size: 1.5rem;
    min-width: 30px;
  }
  
  .contact-detail strong {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-detail span,
  .contact-detail a {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .contact-form-wrapper h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .form-group textarea {
    min-height: 150px;
  }
  
  .checkbox-group {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-content p {
    font-size: 0.85rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    padding: 1.5rem 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cookie-text {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }
  
  /* Stats Section */
  .stats-section {
    padding: 4rem 1rem;
    margin: 3rem 0;
    border-radius: 12px;
  }
  
  .stats-grid {
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    margin-bottom: 0.75rem;
  }
  
  .stat-label {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 0.25rem;
  }
  
  .stat-description {
    font-size: 0.85rem;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 3rem 1rem;
  }
  
  .faq-container {
    max-width: 100%;
  }
  
  /* Map Container */
  .map-container {
    margin-top: 3rem;
    border-radius: 12px;
    height: 300px;
  }
  
  /* Container */
  .container {
    padding: 0 1rem;
  }
  
  /* Policy Pages */
  .policy-section {
    padding: 3rem 1rem;
  }
  
  .policy-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .policy-sidebar {
    position: static;
    order: 2;
  }
  
  .policy-nav {
    padding: 2rem 1.5rem;
  }
  
  .policy-main {
    padding: 2rem 1.5rem;
    order: 1;
  }
  
  .policy-article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .policy-article-number {
    font-size: 3rem;
    min-width: 60px;
  }
  
  .policy-article-content {
    padding-left: 0;
  }
  
  .policy-article-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .policy-hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
  }
  
  .policy-hero-icon i {
    font-size: 2rem;
  }
  
  .policy-hero-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .policy-hero-title-accent {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }
  
  .policy-hero-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .policy-intro {
    padding: 2rem 1.5rem;
    font-size: 1rem;
  }
  
  .policy-rights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .policy-right-item {
    padding: 1.5rem;
  }
  
  .cookie-type {
    padding: 2rem 1.5rem;
  }
  
  .cookie-browser-item {
    padding: 1.25rem;
  }
  
  .policy-alert {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  
  .policy-alert i {
    font-size: 2rem;
  }
  
  .return-timeline-item {
    padding: 1.5rem;
  }
  
  .return-steps {
    padding-left: 2rem;
  }
  
  .return-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .policy-cta {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }
  
  .policy-cta-content i {
    font-size: 2.5rem;
  }
  
  .policy-cta-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .policy-cta-content p {
    font-size: 1rem;
  }
}
