/* ========================================
   OBRALIMPIA - Brand Colors from Logo
   Primary Blue: #0EA5E9 (sky blue)
   Dark Navy: #1e3a5f (text/accents)
   ======================================== */

:root {
  /* Brand Colors - from logo */
  --blue: #0EA5E9;
  --blue-dark: #0284C7;
  --blue-light: #E0F2FE;
  --blue-pale: #F0F9FF;
  --navy: #1e3a5f;
  --navy-light: #2d4a6f;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  
  /* Functional */
  --bg: var(--white);
  --text: var(--navy);
  --text-muted: var(--gray-500);
  --border: var(--gray-200);
  
  /* Effects */
  --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.05);
  --shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.08), 0 2px 4px -2px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(30, 58, 95, 0.1), 0 4px 6px -4px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(30, 58, 95, 0.1), 0 8px 10px -6px rgba(30, 58, 95, 0.08);
  --shadow-blue: 0 10px 40px -10px rgba(14, 165, 233, 0.4);
  
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ========== RESET ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVIGATION ========== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 32px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.2);
  color: var(--blue-light);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  animation: fadeInDown 0.6s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.highlight {
  color: var(--blue);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-300);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Sparkles - matching logo */
.sparkle {
  position: absolute;
  color: var(--blue);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle--1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle--2 { top: 60%; right: 15%; animation-delay: 0.5s; }
.sparkle--3 { bottom: 25%; left: 20%; animation-delay: 1s; font-size: 1rem; }

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  font-size: 1rem;
  box-shadow: 0 10px 40px -10px rgba(37, 211, 102, 0.4);
}

.btn--primary:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  padding: 16px 28px;
  font-size: 1rem;
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  color: var(--blue);
}

.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ========== SECTIONS ========== */
.section {
  margin-bottom: 80px;
}

.section--brand {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  margin-left: -24px;
  margin-right: -24px;
  padding: 80px 24px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .section--brand {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 80px calc(50vw - 50% + 24px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(14, 165, 233, 0.2);
  color: var(--blue-light);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ========== PACKAGES ========== */
.package {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

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

.package--featured {
  border: 2px solid var(--blue);
  background: linear-gradient(to bottom, var(--blue-pale) 0%, var(--white) 150px);
}

.package--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.package--featured .badge {
  position: absolute;
  top: -14px;
  right: 24px;
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-blue);
}

.package-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.package-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.package-tagline {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 500;
  margin-top: 2px;
}

.package-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 16px;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.package-list li::before {
  content: '✓';
  color: #0EA5E9;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== CARDS ========== */
.card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-100);
}

.card-label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
}

.note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 24px;
  padding: 16px;
  background: var(--blue-pale);
  border-radius: var(--radius);
}

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.gallery-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gallery-placeholder p {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  color: var(--white);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}

.feature h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.disclaimer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.disclaimer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.disclaimer-item svg {
  color: #ef4444;
  flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--blue-light);
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 80px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section > .cta-content > p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-locations {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
  
}

.cta-sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  animation: sparkle 3s ease-in-out infinite;
}

.cta-sparkle--1 { top: 20%; left: 10%; }
.cta-sparkle--2 { bottom: 20%; right: 10%; animation-delay: 1s; }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 48px 24px;
  text-align: center;
}

.footer-content {
  max-width: 400px;
  margin: 0 auto;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer p {
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  .trust-bar {
    flex-direction: column;
    gap: 24px;
    margin-top: -30px;
    margin-left: 24px;
    margin-right: 24px;
  }
  
  .hero {
    padding-bottom: 60px;
  }
  
  .package {
    padding: 24px;
  }
  
  .nav-logo {
    height: 40px;
  }
}

/* ========== DELIVERS SECTION ========== */
.delivers {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  padding: 80px 24px;
}

.delivers__container {
  max-width: 1000px;
  margin: 0 auto;
}

.delivers__header {
  text-align: center;
  margin-bottom: 48px;
}

.delivers__tag {
  display: inline-block;
  background: #0EA5E9;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.delivers__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a5f;
  margin: 0;
}

.delivers__title span {
  color: #0EA5E9;
}

.delivers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.delivers__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #E2E8F0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivers__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.delivers__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.delivers__card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 4px 0;
}

.delivers__card p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ========== AUDIENCE SECTION ========== */
.audience {
  padding: 48px 24px;
  background: #ffffff;
}

.audience__container {
  max-width: 900px;
  margin: 0 auto;
}

.audience__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a5f;
  text-align: center;
  margin: 0 0 32px 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.audience__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.audience__card--highlight {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  border: none;
}

.audience__card--highlight .audience__text {
  color: #ffffff;
}

.audience__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.audience__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.4;
}