/* Luxury Premium Landing Page - WestCoaster */

:root {
  /* Luxury Color Palette */
  --luxury-navy: #0f1419;
  --luxury-navy-soft: #1a2332;
  --luxury-gold: #d4af37;
  --luxury-gold-light: #f4e4b8;
  --luxury-cream: #faf8f3;
  --luxury-white: #ffffff;
  --luxury-charcoal: #2d3748;
  --luxury-gray: #718096;
  --luxury-accent: #c49a6c;

  /* Premium Shadows */
  --shadow-luxury-sm: 0 2px 8px rgba(212, 175, 55, 0.08), 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow-luxury-md: 0 8px 20px rgba(15, 20, 25, 0.12), 0 2px 8px rgba(212, 175, 55, 0.05);
  --shadow-luxury-lg: 0 16px 40px rgba(15, 20, 25, 0.15), 0 4px 16px rgba(212, 175, 55, 0.08);
  --shadow-luxury-xl: 0 24px 60px rgba(15, 20, 25, 0.2), 0 8px 24px rgba(212, 175, 55, 0.1);
  --shadow-gold-glow: 0 0 30px rgba(212, 175, 55, 0.15);

  /* Premium Gradients */
  --gradient-luxury: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4b8 50%, #d4af37 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.85) 100%);
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.75;
  color: var(--luxury-charcoal);
  background: var(--luxury-cream);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Scroll Reveal Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Container Widths */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-small {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Modern Animated */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero {
  position: relative;
  background: var(--luxury-navy);
  color: var(--luxury-white);
  text-align: center;
  padding: 140px 20px 120px;
  overflow: hidden;
  min-height: 700px;
}

/* Luxury Texture Background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, transparent 0%, rgba(26, 35, 50, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

/* Elegant Bottom Fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--luxury-cream));
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Luxury Polaroid Gallery */
.polaroid-gallery {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.polaroid {
  position: absolute;
  background: var(--luxury-white);
  padding: 12px 12px 50px 12px;
  box-shadow: var(--shadow-luxury-xl), 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.polaroid:hover {
  transform: scale(1.05) !important;
  box-shadow: var(--shadow-luxury-xl), var(--shadow-gold-glow), 0 12px 50px rgba(0, 0, 0, 0.4);
  z-index: 10 !important;
}

.polaroid-image {
  width: 220px;
  height: 240px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 35, 50, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.polaroid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.9rem;
  color: var(--luxury-charcoal);
  font-style: italic;
  font-weight: 300;
}

/* Individual Polaroid Positions */
.polaroid-1 {
  top: 15%;
  left: 8%;
  transform: rotate(-8deg);
  animation: float 6s ease-in-out infinite;
}

.polaroid-2 {
  top: 50%;
  right: 10%;
  transform: rotate(6deg) translateY(-50%);
  animation: float 7s ease-in-out infinite 1s;
}

.polaroid-3 {
  bottom: 18%;
  left: 12%;
  transform: rotate(-5deg);
  animation: float 8s ease-in-out infinite 2s;
}

/* Polaroid Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-15px) rotate(var(--rotation));
  }
}

.polaroid-1 { --rotation: -8deg; }
.polaroid-2 { --rotation: 6deg; }
.polaroid-3 { --rotation: -5deg; }

/* Placeholder styling when no image */
.polaroid-image::before {
  content: 'Add your image here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--luxury-gray);
  text-align: center;
  padding: 20px;
  font-weight: 300;
  opacity: 0.6;
}

.polaroid-image img ~ .polaroid-image::before {
  display: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', 'Georgia', serif;
  animation: fadeInUp 0.8s ease;
}

.hero .big {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .explain {
  font-size: 1.25rem;
  margin-bottom: 48px;
  line-height: 1.9;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero .explain strong {
  color: var(--luxury-gold);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.btn-big {
  display: inline-block;
  background: var(--luxury-gold);
  color: var(--luxury-navy);
  padding: 20px 56px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-luxury-lg), var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.6s both;
  border: 1px solid var(--luxury-gold-light);
}

.btn-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

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

.btn-big:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxury-xl), 0 0 40px rgba(212, 175, 55, 0.3);
  background: var(--luxury-gold-light);
}

.btn-big:active {
  transform: translateY(0);
}

.small-note {
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--luxury-gold-light);
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* How It Works - Modern Cards */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.how-section {
  padding: 110px 20px;
  background: var(--luxury-white);
  position: relative;
}

.how-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 80px;
  color: var(--luxury-navy);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', 'Georgia', serif;
  letter-spacing: -0.01em;
}

.how-section h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--luxury-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.simple-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.simple-step {
  text-align: center;
  padding: 48px 32px;
  background: var(--luxury-cream);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.simple-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--luxury-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-step:hover::before {
  transform: scaleX(1);
}

.simple-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury-lg);
  background: var(--luxury-white);
}

.simple-step .number {
  background: transparent;
  color: var(--luxury-gold);
  width: 80px;
  height: 80px;
  border-radius: 0;
  border: 2px solid var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 auto 28px;
  box-shadow: none;
  transition: all 0.4s ease;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.simple-step:hover .number {
  background: var(--luxury-gold);
  color: var(--luxury-navy);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold-glow);
}

.simple-step h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--luxury-navy);
  letter-spacing: -0.01em;
}

.simple-step p {
  color: var(--luxury-gray);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Pricing - Luxury Edition */
.pricing-section {
  padding: 110px 20px;
  background: var(--luxury-cream);
  position: relative;
}

.pricing-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--luxury-navy);
  font-family: 'Playfair Display', 'Georgia', serif;
  letter-spacing: -0.01em;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--luxury-gray);
  margin-bottom: 70px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.price-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.price-box {
  background: var(--luxury-white);
  backdrop-filter: none;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 50px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--luxury-gold);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.price-box:hover::before {
  transform: scaleX(1);
}

.price-box:hover {
  border-color: var(--luxury-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury-lg);
}

.price-box.highlight {
  border: 2px solid var(--luxury-gold);
  background: var(--luxury-cream);
  transform: scale(1);
  box-shadow: var(--shadow-luxury-md);
}

.price-box.highlight::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -40px;
  background: var(--luxury-gold);
  color: var(--luxury-navy);
  padding: 6px 48px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-gold-glow);
}

.price-box.highlight:hover {
  transform: translateY(-8px);
  border-color: var(--luxury-gold);
  box-shadow: var(--shadow-luxury-xl);
}

.price-range {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--luxury-navy);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.price-fee {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.price-box.highlight .price-fee {
  color: var(--luxury-gold);
}

.price-example {
  color: var(--luxury-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.guarantee {
  text-align: center;
  font-size: 1.1rem;
  color: var(--luxury-navy);
  font-weight: 400;
  padding: 28px 32px;
  background: transparent;
  border-radius: 0;
  max-width: 850px;
  margin: 0 auto;
  border-top: 1px solid var(--luxury-gold);
  border-bottom: 1px solid var(--luxury-gold);
  letter-spacing: 0.3px;
}

/* Form Section - Luxury Design */
.form-section {
  padding: 110px 20px;
  background: var(--luxury-white);
}

.form-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--luxury-navy);
  font-family: 'Playfair Display', 'Georgia', serif;
  letter-spacing: -0.01em;
}

.form-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--luxury-gray);
  margin-bottom: 70px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.simple-form {
  background: var(--luxury-cream);
  padding: 60px;
  border-radius: 0;
  box-shadow: var(--shadow-luxury-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 0;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--luxury-white);
  font-weight: 300;
  color: var(--luxury-charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: var(--luxury-white);
  box-shadow: 0 0 0 1px var(--luxury-gold);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--luxury-gold);
}

.form-checkbox {
  margin: 30px 0;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-light);
}

.form-checkbox span {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  background: var(--luxury-navy);
  color: var(--luxury-gold);
  padding: 20px;
  border: 2px solid var(--luxury-gold);
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-luxury-md);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--luxury-gold);
  transition: left 0.5s;
  z-index: -1;
}

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

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxury-lg);
  color: var(--luxury-navy);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 25px;
  line-height: 1.6;
}

/* FAQ - Luxury Accordion Style */
.faq-section {
  padding: 110px 20px;
  background: var(--luxury-cream);
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 80px;
  color: var(--luxury-navy);
  font-family: 'Playfair Display', 'Georgia', serif;
  letter-spacing: -0.01em;
}

.faq-simple {
  max-width: 750px;
  margin: 0 auto;
}

.faq-q {
  margin-bottom: 20px;
  padding: 32px 36px;
  background: var(--luxury-white);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 3px solid transparent;
}

.faq-q:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-luxury-md);
  border-left-color: var(--luxury-gold);
}

.faq-q:last-child {
  margin-bottom: 0;
}

.faq-q strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--luxury-navy);
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.01em;
}

.faq-q strong::before {
  content: '';
  display: none;
}

.faq-q p {
  color: var(--luxury-gray);
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 300;
}

/* Footer - Luxury Design */
.footer {
  background: var(--luxury-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--luxury-gold), transparent);
}

.footer p {
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer strong {
  color: var(--luxury-gold);
  font-weight: 500;
  font-size: 1.3rem;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.copyright {
  font-size: 0.9rem;
  margin-top: 24px;
  opacity: 0.6;
  font-weight: 300;
}

/* Mobile Responsive - Luxury */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 80px;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .big {
    font-size: 2rem;
  }

  .hero .explain {
    font-size: 1.15rem;
  }

  .btn-big {
    padding: 18px 44px;
    font-size: 1rem;
  }

  /* Polaroid adjustments for mobile */
  .polaroid {
    padding: 10px 10px 40px 10px;
  }

  .polaroid-image {
    width: 160px;
    height: 180px;
  }

  .polaroid-caption {
    font-size: 0.75rem;
    bottom: 10px;
  }

  .polaroid-1 {
    top: 8%;
    left: 5%;
    transform: rotate(-10deg) scale(0.85);
  }

  .polaroid-2 {
    top: 45%;
    right: 5%;
    transform: rotate(8deg) translateY(-50%) scale(0.85);
  }

  .polaroid-3 {
    bottom: 12%;
    left: 8%;
    transform: rotate(-6deg) scale(0.85);
  }

  .how-section h2,
  .pricing-section h2,
  .form-section h2,
  .faq-section h2 {
    font-size: 2.2rem;
  }

  .how-section,
  .pricing-section,
  .form-section,
  .faq-section {
    padding: 80px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .simple-form {
    padding: 40px 28px;
  }

  .simple-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-boxes {
    grid-template-columns: 1fr;
  }

  .price-box.highlight {
    transform: scale(1);
  }

  .price-box.highlight:hover {
    transform: translateY(-8px);
  }

  .simple-step .number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

/* Hide polaroids on very small screens */
@media (max-width: 480px) {
  .polaroid-gallery {
    opacity: 0.4;
  }

  .polaroid {
    padding: 8px 8px 32px 8px;
  }

  .polaroid-image {
    width: 120px;
    height: 140px;
  }

  .polaroid-caption {
    font-size: 0.65rem;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Additional Luxury Refinements */
::selection {
  background: var(--luxury-gold);
  color: var(--luxury-navy);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--luxury-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--luxury-gold);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-accent);
}
