/* ===== Web Amelia Enhanced Styles ===== */
:root {
  /* Logo-matched colors */
  --navy: #1e3b73;
  --gold: #f4b942;
  --turquoise: #5bc5db;
  --turquoise-light: #7dd3e8;
  
  /* Backgrounds */
  --bg1: #1a2f4a;
  --bg2: #0d1f35;
  --bg3: #2d4762;
  
  /* Text colors */
  --ink: #ffffff;
  --ink-soft: #e8f2ff;
  --muted: #b8d0e8;
  --navy-text: #0f2a4d;
  
  /* Surfaces */
  --card: rgba(255,255,255,0.08);
  --card-hover: rgba(255,255,255,0.12);
  --border: rgba(91, 197, 219, 0.25);
  --border-soft: rgba(255,255,255,0.1);
  
  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--navy) 0%, var(--turquoise) 60%, var(--gold) 100%);
  --gradient-coastal: linear-gradient(90deg, var(--turquoise) 0%, var(--gold) 100%);
  --gradient-bg: radial-gradient(1400px 700px at 10% -10%, var(--bg3), var(--bg1), var(--bg2));
  
  /* Shadows */
  --shadow: 0 10px 40px rgba(0,0,0,0.25);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.3);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, sans-serif;
  background: var(--gradient-bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle ambient effect */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(91, 197, 219, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(244, 185, 66, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Floating Header */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1160px;
}

.nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 16px 32px;
  background: rgba(30, 58, 79, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.logo { 
  text-decoration: none; 
  display: flex; 
  flex-direction: column;
  color: var(--ink);
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.logo .tagline {
  font-size: 0.85rem;
  color: var(--turquoise);
  font-weight: 600;
  font-family: 'Courier New', monospace;
  margin-top: 4px;
}

.links {
  display: flex;
  gap: 2rem;
}

.links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-coastal);
  transition: width 0.3s ease;
}

.links a:hover {
  color: var(--turquoise-light);
}

.links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-ghost {
  border: 2px solid var(--border);
  color: var(--turquoise-light);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(91, 197, 219, 0.1);
  border-color: var(--turquoise-light);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--ink);
  font-weight: 300;
}

.lead {
  color: var(--muted);
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.lead.success {
  color: var(--turquoise-light);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,80 Q150,20 300,80 T600,80 Q750,20 900,80 T1200,80 L1200,120 L0,120 Z' fill='%235bc5db' opacity='0.1'/%3E%3C/svg%3E") repeat-x;
  animation: wave 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 Q200,10 400,60 T800,60 Q1000,10 1200,60 L1200,120 L0,120 Z' fill='%23f4b942' opacity='0.08'/%3E%3C/svg%3E") repeat-x;
  animation: wave 15s ease-in-out infinite reverse;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-50px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  font-weight: 300;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  color: var(--ink-soft);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ribbon {
  height: 6px;
  background: var(--gradient-coastal);
  border-radius: 3px;
  margin-top: 3rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid and Cards */
.grid {
  display: grid;
  gap: 2rem;
}

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

.card {
  background: var(--card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-coastal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--card-hover);
}

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

.service {
  cursor: pointer;
  text-align: center;
}

.card h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 400;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(91, 197, 219, 0.3);
}

.badge.premium-large {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.process-card {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft);
}

.pkg-box {
  padding: 2rem;
  margin-bottom: 3rem;
}

.tier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.tier-name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--turquoise-light);
}

.sl {
  position: relative;
  margin-top: 2rem;
}

.sl-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--card);
  backdrop-filter: blur(10px);
  padding-right: 18px;
  box-sizing: content-box;
}

.sl-track {
  display: flex;
  gap: 18px;
  margin-right: -18px;
}

.sl-slide {
  scroll-snap-align: start;
  min-width: 100%;
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.sl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-main);
  color: #fff;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.sl-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.sl-arrow.prev {
  left: -22px;
}

.sl-arrow.next {
  right: -22px;
}

.sl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(91, 197, 219, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sl-dot.active {
  background: var(--turquoise-light);
  transform: scale(1.3);
}

form {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 1.2rem;
  border-radius: 15px;
  background: var(--card);
  border: 2px solid var(--border-soft);
  color: var(--ink);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(91, 197, 219, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footer {
  text-align: center;
}

small.help {
  color: var(--muted);
  font-size: 0.9rem;
}

small.help a {
  color: var(--turquoise);
  text-decoration: none;
}

.clean {
  list-style: none;
  padding: 0;
}

.clean li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check {
  width: 22px;
  height: 22px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.note { 
  margin-top: 1rem; 
  font-size: 0.9rem; 
  color: var(--muted); 
  text-align: center;
}

/* Footer */
footer { 
  background: var(--bg2); 
  color: var(--muted); 
  padding: 4rem 0 2rem; 
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 2rem;
}

.copy { font-size: 0.9rem; }
.copy a { color: var(--turquoise); text-decoration: none; }
.copy a:hover { color: var(--turquoise-light); }

.social { display: flex; gap: 1rem; }
.social a {
  width: 44px; height: 44px; background: var(--card);
  border: 1px solid var(--border-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.3s ease;
}

.social a:hover {
  background: var(--turquoise); color: white;
  transform: translateY(-3px);
}

/* Animations */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animated {
  opacity: 1; transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column; gap: 1rem; padding: 1.5rem 2rem;
  }
  
  .links { gap: 1.5rem; }
  
  .hero .container { padding-top: 180px; }
  .hero h1 { font-size: 2.5rem; }
  
  .cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  
  .sl-arrow { display: none; }
  
  .footer-grid { flex-direction: column; text-align: center; }
  .social { justify-content: center; }
  
  header { top: 10px; width: calc(100% - 20px); }
}

@media (min-width: 900px) {
  .sl-slide { min-width: calc(100% - 20px); }
}