:root {
  --color-gold: #D4AF37;
  --color-sapphire: #0F1C3F;
  --color-burgundy: #6C1B3F;
  --color-platinum: #B0B0B0;
  --color-emerald: #046307;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-sapphire);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-sapphire);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-burgundy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-platinum);
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.header-container.hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-sapphire);
  letter-spacing: 0.05em;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--color-sapphire);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-platinum);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.nav-menu.active {
  max-height: 500px;
}

.nav-list {
  list-style: none;
  padding: var(--space-md);
}

.nav-item {
  margin-bottom: var(--space-sm);
}

.nav-link {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--color-sapphire);
  font-size: 0.9rem;
  transition: padding-left var(--transition-fast);
}

.nav-link:hover {
  padding-left: var(--space-sm);
  color: var(--color-burgundy);
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--space-lg);
}

.hero-title {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-gold);
  color: var(--color-sapphire);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: var(--space-xl) var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-lg);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-1deg);
  margin-left: var(--space-lg);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
  margin-right: var(--space-lg);
}

.asymmetric-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
  opacity: 0.1;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.contact-section {
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  color: white;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) auto;
  max-width: 800px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-input,
.form-textarea {
  padding: var(--space-sm);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.checkbox-input {
  margin-top: 0.25rem;
}

.checkbox-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.form-button {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-gold);
  color: var(--color-sapphire);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  align-self: flex-start;
  margin-top: var(--space-sm);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  margin-bottom: var(--space-sm);
  color: var(--color-burgundy);
}

.product-price {
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: var(--space-md);
}

.footer {
  background: var(--color-sapphire);
  color: white;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  margin-top: var(--space-xl);
}

.footer-link {
  color: var(--color-gold);
}

.footer-link:hover {
  color: white;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 28, 63, 0.98);
  color: white;
  padding: var(--space-md);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.cookie-text {
  font-size: 0.9rem;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-button {
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cookie-button:hover {
  background: var(--color-gold);
  color: var(--color-sapphire);
}

.cookie-button.accept {
  background: var(--color-gold);
  color: var(--color-sapphire);
}

.cookie-button.accept:hover {
  opacity: 0.9;
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  color: white;
}

.thank-you-title {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section {
    min-height: 60vh;
  }

  .section {
    padding: var(--space-lg) var(--space-md);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  body {
    font-size: 0.875rem;
  }

  .header-container {
    padding: var(--space-sm);
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .menu-toggle {
    font-size: 1.25rem;
    padding: var(--space-xs);
  }

  .nav-list {
    padding: var(--space-sm);
  }

  .nav-link {
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
  }

  .section {
    padding: var(--space-md) var(--space-sm);
  }

  .card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .hero-section,
  .creative-hero {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .hero-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: var(--space-md);
  }

  .hero-button {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
  }

  .section-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stagger-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-card {
    padding: var(--space-md);
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-info-section {
    padding: var(--space-md);
  }

  .contact-details {
    gap: var(--space-md);
  }

  .contact-detail-item {
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm);
  }

  .contact-detail-item i {
    font-size: 1.25rem;
    margin-top: 0;
  }

  .contact-detail-item h3 {
    font-size: 1rem;
  }

  .creative-contact-form {
    padding: var(--space-md);
  }

  .floating-input {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }

  .floating-label {
    font-size: 0.875rem;
    left: var(--space-sm);
  }

  .form-button {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    width: 100%;
  }

  .creative-product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .creative-product-image {
    height: 200px;
  }

  .product-info {
    padding: var(--space-md);
  }

  .product-title {
    font-size: 1.125rem;
  }

  .product-price {
    font-size: 1.25rem;
  }

  .masonry-layout {
    column-count: 1;
    column-gap: var(--space-md);
  }

  .masonry-item {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .overlap-card {
    margin: 0 0 var(--space-md) 0 !important;
    padding: var(--space-md);
  }

  .policy-section {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .policy-section h2 {
    font-size: 1.125rem;
    padding-bottom: var(--space-sm);
    flex-wrap: wrap;
  }

  .policy-section h2::before {
    width: 6px;
    height: 6px;
  }

  .policy-section p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .modern-policy-hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .modern-policy-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .modern-policy-hero p {
    font-size: 0.875rem;
  }

  .modern-error-page {
    padding: var(--space-md);
    min-height: 70vh;
  }

  .modern-error-code {
    font-size: clamp(4rem, 20vw, 6rem);
    margin-bottom: var(--space-sm);
  }

  .modern-error-page h1 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-md);
  }

  .modern-error-page p {
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
  }

  .modern-thank-you-page {
    padding: var(--space-md);
    min-height: 70vh;
  }

  .modern-thank-you-icon {
    font-size: clamp(3rem, 12vw, 4rem);
    margin-bottom: var(--space-md);
  }

  .modern-thank-you-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .modern-thank-you-page p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .animated-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-shape:nth-child(1) {
    width: 150px;
    height: 150px;
  }

  .hero-shape:nth-child(2) {
    width: 100px;
    height: 100px;
  }

  .hero-shape:nth-child(3) {
    width: 80px;
    height: 80px;
  }

  .timeline-policy {
    padding-left: var(--space-md);
  }

  .timeline-item::before {
    left: -18px;
    width: 12px;
    height: 12px;
  }

  .card-image {
    height: 150px;
    margin-bottom: var(--space-sm);
  }

  .hours-info p {
    font-size: 0.875rem;
    padding: var(--space-sm);
  }

  .footer {
    padding: var(--space-md) var(--space-sm);
    font-size: 0.75rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .map-wrapper {
    margin-top: var(--space-md);
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .hero-shapes {
    display: none;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .section-title::after {
    width: 40px;
    height: 2px;
  }

  .feature-card h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-xs);
  }

  .feature-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .floating-label-group {
    margin-bottom: var(--space-md);
  }

  .floating-input {
    border-width: 1.5px;
  }

  .floating-input:focus + .floating-label,
  .floating-input:not(:placeholder-shown) + .floating-label,
  .floating-input:valid + .floating-label {
    font-size: 0.6875rem;
    left: var(--space-xs);
    padding: 0 calc(var(--space-xs) * 0.5);
  }

  .checkbox-label {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .creative-product-image {
    height: 180px;
  }

  .split-image {
    margin-bottom: var(--space-md);
  }

  .policy-content {
    padding: 0;
  }

  .modern-error-code {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .modern-error-page p {
    padding: 0 var(--space-xs);
  }

  .modern-thank-you-icon {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .animated-number {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .parallax-section {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
    background-attachment: scroll;
  }

  .parallax-section .container {
    padding: 0;
  }

  .cookie-popup {
    padding: var(--space-sm);
  }

  .cookie-text {
    font-size: 0.8125rem;
    margin-bottom: var(--space-sm);
  }

  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }

  .cookie-button {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8125rem;
  }

  .hero-overlay {
    opacity: 0.7;
  }

  .asymmetric-layout {
    gap: var(--space-md);
  }

  .asymmetric-item {
    padding: var(--space-sm);
    margin: 0 !important;
    transform: none !important;
  }

  .asymmetric-item::before {
    display: none;
  }

  h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.125rem, 6vw, 1.5rem);
    line-height: 1.2;
  }

  h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
    line-height: 1.3;
  }

  p {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .error-page {
    padding: var(--space-lg) var(--space-sm);
    min-height: 70vh;
  }

  .error-code {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .thank-you-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 75vh;
  }

  .thank-you-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-title {
    line-height: 1.1;
  }

  .hero-subtitle {
    line-height: 1.4;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .header-container {
    flex-wrap: wrap;
    padding: var(--space-xs) var(--space-sm);
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  body {
    line-height: 1.5;
  }

  .hero-button {
    width: 100%;
    text-align: center;
  }

  .modern-thank-you-page p {
    padding: 0 var(--space-xs);
  }

  .checkbox-group {
    margin-top: var(--space-sm);
    gap: var(--space-xs);
  }

  .contact-detail-item i {
    margin-bottom: var(--space-xs);
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-info-section {
  padding: var(--space-lg);
}

.contact-details {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-item i {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-top: var(--space-xs);
}

.contact-detail-item h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.contact-detail-item p {
  margin: 0;
}

.contact-detail-item a {
  color: var(--color-sapphire);
  transition: color var(--transition-fast);
}

.contact-detail-item a:hover {
  color: var(--color-burgundy);
}

.contact-form-section {
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.contact-form-section .section-title {
  color: var(--color-gold);
}

.map-wrapper {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hours-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hours-info p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.modern-policy-hero {
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.modern-policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.modern-policy-hero > * {
  position: relative;
  z-index: 1;
}

.modern-policy-hero h1 {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.modern-policy-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.modern-error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 100%);
  position: relative;
  overflow: hidden;
}

.modern-error-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
  opacity: 0.3;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.modern-error-page > * {
  position: relative;
  z-index: 1;
  color: white;
}

.modern-error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-gold), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.modern-error-page h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.modern-error-page p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.modern-thank-you-page {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 50%, var(--color-emerald) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

.modern-thank-you-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.modern-thank-you-page > * {
  position: relative;
  z-index: 1;
}

.modern-thank-you-title {
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.5rem, 6vw, 4rem);
  animation: fadeInUp 1s ease;
}

.modern-thank-you-icon {
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.timeline-policy {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.timeline-policy::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-burgundy));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-gold);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.policy-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-burgundy));
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.policy-section:hover::before {
  transform: scaleY(1);
}

.policy-section:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.policy-section h2 {
  margin-bottom: var(--space-md);
  color: var(--color-burgundy);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gold);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.policy-section h2::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.policy-section p {
  line-height: 1.8;
  color: var(--color-sapphire);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.5s ease forwards;
}

.animate-rotate {
  animation: rotateIn 0.6s ease forwards;
}

.card:nth-child(odd) {
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
}

.card:nth-child(even) {
  animation: slideInRight 0.6s ease forwards;
  opacity: 0;
}

.product-card {
  animation: scaleIn 0.5s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: var(--space-lg);
  }

  .policy-section {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .contact-detail-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-detail-item i {
    margin-top: 0;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(108, 27, 63, 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.stagger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stagger-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.creative-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sapphire) 0%, var(--color-burgundy) 50%, var(--color-sapphire) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--color-gold);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--color-emerald);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: var(--color-burgundy);
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(50px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

.masonry-layout {
  column-gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--space-lg);
  break-inside: avoid;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: -50px;
  z-index: 2;
}

.overlap-card:nth-child(even) {
  margin-left: 5%;
  margin-right: -5%;
  background: linear-gradient(135deg, var(--color-sapphire), var(--color-burgundy));
  color: white;
  z-index: 1;
}

.overlap-card:nth-child(odd) {
  margin-right: 5%;
  margin-left: -5%;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--transition-base);
}

.tilt-card:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin: var(--space-xl) 0;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(108, 27, 63, 0.2));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.split-image:hover::after {
  opacity: 1;
}

.creative-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.creative-product-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.creative-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy), var(--color-emerald));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.creative-product-card:hover::before {
  transform: scaleX(1);
}

.creative-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--color-gold);
}

.creative-product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.creative-product-card:hover .creative-product-image {
  transform: scale(1.1);
}

.creative-contact-form {
  background: linear-gradient(135deg, rgba(15, 28, 63, 0.95), rgba(108, 27, 63, 0.95));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.creative-contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.creative-contact-form > * {
  position: relative;
  z-index: 1;
}

.floating-label-group {
  position: relative;
  margin-bottom: var(--space-lg);
}

.floating-input {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.floating-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.floating-label {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  pointer-events: none;
  transition: all var(--transition-base);
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-input:valid + .floating-label {
  top: 0;
  left: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-gold);
  background: linear-gradient(135deg, rgba(15, 28, 63, 0.95), rgba(108, 27, 63, 0.95));
  padding: 0 var(--space-xs);
  border-radius: var(--radius-sm);
}

.floating-input:focus + .floating-label {
  color: var(--color-gold);
}

.floating-label-group textarea + .floating-label {
  top: var(--space-md);
  transform: none;
}

.floating-label-group textarea:focus + .floating-label,
.floating-label-group textarea:not(:placeholder-shown) + .floating-label {
  top: 0;
  transform: translateY(-50%);
}

.animated-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .masonry-layout {
    column-count: 2;
  }

  .creative-product-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .overlap-card {
    margin: 0 0 var(--space-lg) 0 !important;
  }
}

@media (max-width: 480px) {
  .masonry-layout {
    column-count: 1;
  }

  .stagger-grid {
    grid-template-columns: 1fr;
  }

  .policy-section {
    padding: var(--space-md);
  }

  .modern-policy-hero {
    padding: var(--space-lg) var(--space-md);
  }

  .timeline-policy {
    padding-left: var(--space-lg);
  }
}

