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

/* Variables */
:root {
  --primary: #ff6b6b;
  --primary-dark: #ff5252;
  --secondary: #4ecdc4;
  --accent: #45b7d1;
  --highlight: #f9ca24;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-light: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --bg-card: rgba(255, 255, 255, 0.95);
  --border: #e5e7eb;
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
  --radius: 12px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base */
body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

/* Typography */
h1, h2, h3 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.pill {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.nav-links a.pill:hover {
  background: var(--primary-dark);
  color: white;
}

@media (max-width: 768px) {
  .nav-links { 
    gap: 1rem; 
    flex-wrap: wrap;
  }
  .nav-links a { 
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
  .nav-links a.pill {
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn.primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--bg-light);
}

section:nth-child(odd) {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Hero */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-gallery {
  justify-self: end;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-gallery {
    justify-self: center;
  }
}

/* Gallery */
.gallery h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.carousel {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.carousel.hero-carousel {
  max-width: 300px;
}

.slides {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-carousel .slide img {
  height: 400px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav:hover {
  background: rgba(0,0,0,0.7);
}

.nav.prev {
  left: 1rem;
}

.nav.next {
  right: 1rem;
}

.dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 0.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--primary);
}

/* Services */
.services {
  text-align: center;
}

.services h2 {
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 3rem;
}

.card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.note {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: var(--text);
}

.note.sm {
  font-size: 0.9rem;
}

/* Process */
.process {
  text-align: center;
}

.process h2 {
  margin-bottom: 3rem;
}

.steps {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.steps li {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Pricing */
.pricing {
  text-align: center;
}

.pricing h2 {
  margin-bottom: 3rem;
}

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

.tier {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.tier.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.tier h3 {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.tier ul {
  list-style: none;
}

.tier li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.tier li:last-child {
  border-bottom: none;
}

.tier li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg-alt);
  text-align: left;
}

.disclaimer h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.disclaimer-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.disclaimer-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Contact */
.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 3rem;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-msg {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.form-msg.success {
  background: #d1fae5;
  color: #065f46;
}

.form-msg.error {
  background: #fee2e2;
  color: #991b1b;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .nav {
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  .nav.prev {
    left: 0.5rem;
  }
  
  .nav.next {
    right: 0.5rem;
  }
  
  .tier.featured {
    transform: none;
  }
}
