/* Custom Properties */
:root {
  --primary-color: #f59e0b; /* Golden Honey */
  --primary-dark: #d97706;
  --secondary-color: #0f172a; /* Deep Navy */
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --accent: #10b981; /* Green for badges */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.text-green {
  color: var(--accent);
  font-weight: bold;
}

.highlight {
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  color: var(--bg-white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary-color);
}

.nav-links a {
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
  padding: 40px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.pill-badge {
  display: inline-block;
  background-color: #fef3c7;
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 25px;
}

.capsule-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.capsule-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #fef3c7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capsule-details li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
  border-color: var(--primary-color);
}

.capsule-details li span {
  font-size: 1.2rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.guarantee-text {
  font-size: 0.9rem !important;
  color: #64748b !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  text-align: center;
}

.hero-img-container {
  display: inline-block;
  background: #ffffff;
  border-radius: 40px;
  border: 8px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 80%;
  max-width: 360px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f8fafc 0%, #fffbeb 100%);
}

.hero-img-caption {
  text-align: center;
  padding: 15px 10px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-serif);
}

.hero-img-caption span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.trust-badges img {
  height: 40px;
  object-fit: contain;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.dark-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

/* How it Works */
.how-it-works-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.image-col {
  flex: 1;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.glass-img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  padding: 25px;
  border-radius: 16px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.dark-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #cbd5e1;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.pricing-card.best-value {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.pricing-card.best-value:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge-best {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap;
}

.package-title {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 5px;
}

.package-bottle {
  color: #64748b;
  margin-bottom: 20px;
}

.bottle-img {
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.retail {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.shipping {
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #fef3c7;
  padding: 20px;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 80px;
  height: auto;
}

.guarantee-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Reviews */
.reviews-section {
  background-color: var(--bg-light);
}

.reviews-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.glassmorphism-dark {
  background: var(--bg-white);
  border: 1px solid rgba(255,255,255,0.8);
}

.stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer {
  font-weight: 600;
  font-size: 0.9rem;
}

.verified {
  color: var(--accent);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 5px;
}

.rounded-img {
  border-radius: 20px;
}

.shadow {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 20px;
  flex: 1;
}

.read-more {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

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

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 20px;
  color: #475569;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.disclaimer {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--bg-white);
}

.copyright {
  font-size: 0.9rem;
  color: #64748b;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container, .how-it-works-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta-group {
    align-items: center;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.best-value {
    transform: scale(1);
    order: -1;
    grid-column: span 2;
  }

  .pricing-card.best-value:hover {
    transform: translateY(-5px);
  }
  
  .reviews-content, .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-img-container {
    border-width: 6px;
    border-radius: 24px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.best-value {
    grid-column: span 1;
  }
  
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }
}
