/* ============================================
   LINEA LUXE SPA - OPULENT LUXURY DESIGN
   Ultra-Premium Digital Sanctuary
   ============================================ */

/* CSS Variables - Natural Luxury Palette */
:root {
  /* Primary Brand Colors - Pure, Natural, Sustainable */
  --olive-green: #BAB86C;
  --luxury-gold: #8a6b0e;
  --khaki-brown: #C0AD8C;
  --cream-brown: #FAF5EF;
  
  /* Supporting Earth Tones */
  --deep-olive: #8A8650;
  --warm-gold: #C69B1A;
  --earthy-brown: #9A8B73;
  --soft-cream: #FFF9F0;
  
  /* Sophisticated Neutrals */
  --charcoal: #3D3D3D;
  --warm-beige: #F5F0E8;
  --natural-gray: #7A7A6B;
  --pure-white: #FFFFFF;
  
  /* Gradient Overlays - Natural Luxury */
  --gradient-gold: linear-gradient(135deg, #A57C00 0%, #8A6700 100%);
  --gradient-olive: linear-gradient(135deg, #BAB86C 0%, #8A8650 100%);
  --gradient-natural: linear-gradient(135deg, rgba(186, 184, 108, 0.15) 0%, rgba(192, 173, 140, 0.15) 100%);
  
  /* Typography - Ultra Premium */
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', 'Poppins', sans-serif;
  
  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4.5rem;
  --spacing-xxl: 7rem;
  
  /* Visual Effects */
  --border-radius-sm: 2px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Natural Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-dramatic: 0 16px 64px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 32px rgba(165, 124, 0, 0.2);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--cream-brown);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 90px;
}

main {
  min-height: calc(100vh - 90px);
}

/* Accessibility - Skip to Content */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--luxury-gold);
  color: var(--pure-white);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
  border-radius: 0 0 var(--border-radius-md) 0;
}

.skip-to-content:focus {
  top: 0;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-olive);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--cream-brown);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--olive-green);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
}

p {
  margin-bottom: 1.5rem;
  color: var(--natural-gray);
  font-weight: 300;
  letter-spacing: 0.3px;
}

a {
  color: var(--luxury-gold);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}

a:hover, a:focus {
  color: var(--warm-gold);
  outline: none;
}

a:focus-visible {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 4px;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1600px;
}

/* Header - Natural Luxury Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(165, 124, 0, 0.2);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.scrolled{
    background: rgba(61, 61, 61, 0.95);
}


.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo - Luxury Brand Mark */
.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-fast);
  display: inline-block;
  line-height: 1.2;
}

.logo img{
    max-width: 100px;
}

.logo span {
  display: block;
}

.logo:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
}

/* Navigation - Premium Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--luxury-gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle:hover span {
  background: var(--warm-gold);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  color: var(--warm-beige);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--luxury-gold);
  transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--luxury-gold);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(61, 61, 61, 0.98);
  backdrop-filter: blur(20px);
  min-width: 220px;
  list-style: none;
  padding: 1rem 0;
  border-radius: var(--border-radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  border: 1px solid rgba(165, 124, 0, 0.2);
  box-shadow: var(--shadow-medium);
}

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

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--warm-beige);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: rgba(165, 124, 0, 0.1);
  color: var(--luxury-gold);
  padding-left: 2rem;
}

/* Hero Section - Cinematic Luxury */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-emerald);
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-luxury);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 4rem 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--pure-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 300;
  animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--pure-white);
  animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

.hero__description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--pure-white);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.5s ease-out 0.7s backwards;
}

/* Buttons - Luxury CTAs */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  z-index: -1;
}

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

.btn-primary {
  background: var(--luxury-gold);
  color: var(--pure-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(165, 124, 0, 0.35);
}

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

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.5rem 4rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
}

/* Section Layouts */
.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section--cream {
  background-color: var(--cream-brown);
}

.section--light {
  background-color: var(--warm-beige);
}

.section--dark {
  background-color: var(--olive-green);
  color: var(--warm-beige);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--luxury-gold);
}

.section--dark p {
  color: var(--warm-beige);
}

.section__header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--olive-green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: center;
}

.section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section__description {
  text-align: center;
  font-size: 1.15rem;
  color: var(--natural-gray);
  line-height: 1.8;
  font-weight: 300;
}

/* Cards - Premium Components */
.card {
  background: var(--pure-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(165, 124, 0, 0.1);
  box-shadow: var(--shadow-subtle);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dramatic);
  border-color: rgba(165, 124, 0, 0.3);
}

.card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__content {
  padding: 2.5rem;
}

.card__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--olive-green);
}

.card__description {
  font-size: 1rem;
  color: var(--natural-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card__footer{
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 20px;
    color:#8a6700;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2.5rem;
}

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

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

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

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

.feature {
  text-align: center;
  padding: 2.5rem;
  background: var(--pure-white);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  border: 1px solid rgba(165, 124, 0, 0.1);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--luxury-gold);
}

.feature__icon {
  font-size: 3rem;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
}

.feature__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--olive-green);
}

.feature__description {
  font-size: 1rem;
  color: var(--natural-gray);
  line-height: 1.7;
}

/* Testimonial Cards */
.testimonial {
  background: var(--pure-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--luxury-gold);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.testimonial:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(5px);
}

.testimonial__text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--natural-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__name {
  font-weight: 500;
  color: var(--olive-green);
  margin-bottom: 0.25rem;
}

.testimonial__location {
  font-size: 0.9rem;
  color: var(--luxury-gold);
}

/* Forms - Luxury Input */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--olive-green);
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.form-label--required::after {
  content: ' *';
  color: var(--warm-gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(165, 124, 0, 0.2);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--pure-white);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 4px rgba(165, 124, 0, 0.1);
}

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

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-dramatic);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* Footer - Elegant Closure */
.footer {
  background: #3c4043;
  color: var(--warm-beige);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(165, 124, 0, 0.2);
}

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

.footer__section h3 {
  color: var(--luxury-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.footer__section p {
  color: var(--warm-beige);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 0.75rem;
}

.footer__section a {
  color: var(--warm-beige);
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer__section a:hover {
  color: var(--luxury-gold);
  padding-left: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.footer__social a:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.footer__contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer__contact-icon {
  font-size: 1.2rem;
  color: var(--luxury-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(165, 124, 0, 0.1);
  color: var(--natural-gray);
  font-size: 0.9rem;
}

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

.footer__bottom a:hover {
  color: var(--warm-gold);
}

/* Sticky CTA Buttons */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

 .service-tags{
     display: none;
    /*justify-content: center;*/
    /*margin-top: 2rem;*/
    /*display: flex;*/
    /*flex-direction: column;*/
  }

.sticky-cta__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-dramatic);
  transition: var(--transition-smooth);
  background: var(--luxury-gold);
  color: var(--charcoal);
}

.sticky-cta__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(165, 124, 0, 0.4);
}

.sticky-cta__whatsapp {
  background: #25D366;
  color: white;
}

.sticky-cta__phone {
  background: var(--luxury-gold);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.5rem 0;
  background: var(--warm-beige);
  border-bottom: 1px solid rgba(165, 124, 0, 0.1);
}

.breadcrumbs__list {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.breadcrumbs__item {
  color: var(--natural-gray);
  font-size: 0.9rem;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '›';
  margin-left: 1rem;
  color: var(--luxury-gold);
}

.breadcrumbs__link {
  color: var(--luxury-gold);
  transition: var(--transition-fast);
}

.breadcrumbs__link:hover {
  color: var(--warm-gold);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--luxury-gold);
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav__list {
    gap: 1.5rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(26, 31, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-dramatic);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .nav__link {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: 100%;
  }
  
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding-left: 1rem;
    box-shadow: none;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .service-tags{
     display: none;
    /*justify-content: center;*/
    /*margin-top: 2rem;*/
    /*display: flex;*/
    /*flex-direction: column;*/
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 15px;
  }
  
  /*.service-tags{*/
  /*  justify-content: center;*/
  /*  margin-top: 2rem;*/
  /*  display: flex;*/
  /*  flex-direction: column;*/
  /*}*/
  
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .card__content {
    padding: 1.5rem;
  }
}

/* Advanced Luxury Animations & Scroll Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.8;
  }
}

/* Scroll-Triggered Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal--left {
  transform: translateX(-60px);
}

.scroll-reveal--left.revealed {
  transform: translateX(0);
}

.scroll-reveal--right {
  transform: translateX(60px);
}

.scroll-reveal--right.revealed {
  transform: translateX(0);
}

.scroll-reveal--scale {
  transform: scale(0.9);
}

.scroll-reveal--scale.revealed {
  transform: scale(1);
}

/* Parallax Effects */
.parallax-layer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Premium Shimmer Effects */
.shimmer-gold {
  position: relative;
  overflow: hidden;
}

.shimmer-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(165, 124, 0, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

/* Luxury Hover Transformations */
.luxury-hover {
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-hover::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 124, 0, 0.15), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.luxury-hover:hover::before {
  width: 300%;
  height: 300%;
}

.luxury-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dramatic);
}

/* Ambient Background Effects */
.ambient-luxury {
  position: relative;
  overflow: hidden;
}

.ambient-luxury::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(165, 124, 0, 0.08) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 70% 60%,
    rgba(186, 184, 108, 0.05) 0%,
    transparent 50%
  );
  animation: floatGlow 15s ease-in-out infinite;
  pointer-events: none;
}

/* Enhanced Card Interactions */
.card.luxury-hover {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.card.luxury-hover:hover {
  border-color: var(--luxury-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 246, 240, 1));
}

/* Staggered Animation Delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Utility Delay Classes for Custom Timing */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }
.delay-700 { transition-delay: 0.7s !important; }
.delay-800 { transition-delay: 0.8s !important; }

/* Premium Loading States */
.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--warm-beige) 25%,
    var(--cream-brown) 50%,
    var(--warm-beige) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Elevated Text Effects */
.text-glow {
  text-shadow: 0 0 20px rgba(165, 124, 0, 0.3),
               0 0 40px rgba(165, 124, 0, 0.2);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav,
  .btn {
    display: none;
  }
}



.coupon-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fffdf5, #fef6ed);
    border: 2px dashed #D4AF37;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .coupon-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .coupon-left {
    text-align: left;
  }

  .coupon-title {
    font-size: 1.5rem;
    color: #1A1F2E;
    font-weight: 700;
    margin: 0;
  }

  .coupon-subtitle {
    font-size: 1rem;
    color: #B76E79;
    font-weight: 500;
    margin: 5px 0 0;
  }

  .coupon-right {
    background: linear-gradient(135deg, #D4AF37, #B76E79);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .coupon-action {
    white-space: nowrap;
  }

  .coupon-dash {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 65%;
    border-left: 2px dashed rgba(0,0,0,0.15);
  }

  .coupon-message {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
  }





/*.coupon-btn {*/
/*      position: relative;*/
/*      background: linear-gradient(135deg, #ff7e5f, #feb47b);*/
/*      color: #fff;*/
/*      border: none;*/
/*      border-radius: 20px;*/
/*      padding: 16px 32px;*/
/*      font-size: 18px;*/
/*      font-weight: 600;*/
/*      cursor: pointer;*/
/*      box-shadow: 0 5px 15px rgba(0,0,0,0.2);*/
/*      transition: all 0.3s ease;*/
/*      clip-path: polygon(*/
/*        10px 0%, calc(100% - 10px) 0%, 100% 10px,*/
/*        100% calc(100% - 10px), calc(100% - 10px) 100%, */
/*        10px 100%, 0% calc(100% - 10px), 0% 10px*/
/*      );*/
/*    }*/

/*    .coupon-btn:hover {*/
/*      transform: scale(1.05);*/
/*      background: linear-gradient(135deg, #ff9966, #ff5e62);*/
/*    }*/

/*    .coupon-message {*/
/*      margin-top: 20px;*/
/*      text-align: center;*/
/*      font-size: 16px;*/
/*      color: #333;*/
/*      font-weight: 500;*/
/*    }*/