:root {
  /* Color Palette: Deep Ocean Elegance */
  --color-primary: #08101F;
  --color-secondary: #0B162A;
  --color-tertiary: #0E1C33;
  --color-accent: #10223D;
  --color-shadow: #142947;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  --color-gold: #D4AF37;
  --color-text: #E8EBF0;
  --color-text-dark: #0E1C33;
  
  /* Typography Scale */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3rem;
  
  /* Spacing Rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Design Elements */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 50rem;
  
  /* Shadows: Depth Perception */
  --shadow-sm: 0 1px 2px rgba(8, 16, 31, 0.05);
  --shadow-md: 0 4px 6px rgba(8, 16, 31, 0.1);
  --shadow-lg: 0 10px 25px rgba(8, 16, 31, 0.15);
  --shadow-xl: 0 20px 40px rgba(8, 16, 31, 0.2);
  
  /* Transitions: Fluid Motion */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ═══ FOUNDATION: Universal Reset ═══ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══ TYPOGRAPHY: The Voice of Design ═══ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-light);
}

h1 {
  font-size: clamp(var(--fs-xl), 5vw, var(--fs-3xl));
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(var(--fs-lg), 4vw, var(--fs-2xl));
}

h3 {
  font-size: clamp(var(--fs-md), 3vw, var(--fs-xl));
}

h4 {
  font-size: var(--fs-lg);
}

h5, h6 {
  font-size: var(--fs-md);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-size: var(--fs-sm);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--color-light);
  opacity: 0.8;
}

/* ═══ HEADER: Floating Elegance ═══ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 16, 31, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.site-logo:hover {
  color: var(--color-gold);
}

/* ═══ NAVIGATION: Adaptive Intelligence ═══ */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* ═══ BURGER MENU: Mobile Wisdom ═══ */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger-line {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-light);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* ═══ CONTAINERS: Spatial Harmony ═══ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-compact {
  padding: var(--space-lg) 0;
}

/* ═══ HERO: First Impressions ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease;
}

/* ═══ BUTTONS: Call to Action ═══ */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.thankyou-page .thankyou-content{
  padding: 90px 10px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border-color: var(--color-light);
}

.btn-secondary:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ═══ CARDS: Content Vessels ═══ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold);
}

.card-icon {
  font-size: var(--fs-2xl);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.card-text {
  font-size: var(--fs-sm);
  color: var(--color-text);
}

/* ═══ PRODUCT CARDS: Commerce Beauty ═══ */
.product-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
  color: var(--color-light);
}

.product-description {
  font-size: var(--fs-sm);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: var(--fs-lg);
  color: var(--color-gold);
  font-weight: 700;
  font-family: var(--font-display);
}

/* ═══ FORMS: User Dialogue ═══ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-light);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(232, 235, 240, 0.5);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.form-checkbox label {
  font-size: var(--fs-xs);
  color: var(--color-text);
  cursor: pointer;
}

/* ═══ CONTACT SECTION: Unique Design ═══ */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-icon {
  font-size: var(--fs-lg);
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.contact-details h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--color-light);
}

.contact-details p,
.contact-details a {
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══ FOOTER: Gentle Closure ═══ */
.site-footer {
  background: rgba(8, 16, 31, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
}

.footer-nav a {
  font-size: var(--fs-xs);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: var(--color-text);
}

/* ═══ PRIVACY POPUP: Consent Interface ═══ */
.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: rgba(8, 16, 31, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.privacy-popup p {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-sm);
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.privacy-actions .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
}

/* ═══ 404 PAGE: Lost in Style ═══ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-family: var(--font-display);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-message {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

/* ═══ THANK YOU PAGE: Gratitude ═══ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thankyou-content {
  max-width: 700px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

/* ═══ ANIMATIONS: Motion Poetry ═══ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ═══ RESPONSIVE: Adaptive Wisdom ═══ */
@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 16, 31, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2xl) var(--space-md);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .nav-list a {
    width: 100%;
    text-align: left;
  }
  
  .hero {
    min-height: 80vh;
    padding: var(--space-xl) var(--space-md);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-xs: 0.7rem;
    --fs-sm: 0.8rem;
    --fs-base: 0.9rem;
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .header-container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup {
    bottom: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

@media (max-width: 320px) {
  :root {
    --fs-xs: 0.65rem;
    --fs-sm: 0.75rem;
    --fs-base: 0.85rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.75rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
  }

  body {
    font-size: var(--fs-base);
  }

  .header-container {
    padding: 0 var(--space-xs);
  }

  .site-logo {
    font-size: var(--fs-md);
  }

  .burger-toggle {
    gap: 0.25rem;
  }

  .main-nav {
    width: 100%;
    padding: var(--space-xl) var(--space-sm);
  }

  .nav-list a {
    font-size: var(--fs-sm);
    padding: var(--space-xs) var(--space-sm);
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-title {
    font-size: var(--fs-xl);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: var(--fs-md);
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .card,
  .product-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .product-image {
    height: 180px;
  }

  .product-title {
    font-size: var(--fs-sm);
  }

  .product-description {
    font-size: var(--fs-xs);
  }

  .product-price {
    font-size: var(--fs-md);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .map-container {
    height: 200px;
  }

  .privacy-popup {
    padding: var(--space-sm);
    font-size: var(--fs-xs);
  }

  .btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-xs);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: var(--space-xs);
  }

  .thankyou-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .error-content {
    padding: var(--space-sm);
  }

  .error-code {
    font-size: clamp(3rem, 12vw, 6rem);
  }
}


/* ═══ UTILITY CLASSES ═══ */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.6s ease;
}