/* ==========================================================================
   Vedere Modernă - Maldives Waters Theme Stylesheet
   Color Palette:
   - Primary Cyan/Turquoise: #00B4D8, #0077B6, #90E0EF
   - Ocean Deep Navy: #03045E, #0A2540
   - Tropical Water Light: #F0F9FF, #E0F2FE
   - Warm Sun Coral Accent: #E07A5F, #D47A5F
   - Neutral Text & Card Backgrounds
   ========================================================================== */

:root {
  --primary: #00B4D8;
  --primary-dark: #0077B6;
  --primary-light: #90E0EF;
  --primary-subtle: #E0F2FE;
  --ocean-dark: #03045E;
  --ocean-deeper: #0A2540;
  --accent: #E07A5F;
  --accent-hover: #D4694E;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0, 180, 216, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Top Bar Compliance Disclaimer */
.top-notice-bar {
  background: var(--ocean-dark);
  color: #90E0EF;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ocean-dark);
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
}

.nav-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ocean-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E0F2FE 0%, #CAF0F8 50%, #FFFFFF 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--ocean-dark);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-author-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
}

.hero-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-author-info strong {
  display: block;
  color: var(--ocean-dark);
}

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

.hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(224, 122, 95, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--primary-dark);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary-subtle);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  border: 4px solid white;
}

.hero-floating-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-floating-icon {
  width: 40px;
  height: 40px;
  background: #E0F2FE;
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Certificates Bar */
.certificates-section {
  padding: 50px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--ocean-dark);
  margin-bottom: 15px;
}

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

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.cert-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 25px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.cert-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-dark);
  margin-bottom: 8px;
}

.cert-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Personal Story Section */
.story-section {
  padding: 80px 0;
  background: #F4F9F9;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.2rem;
  color: var(--ocean-dark);
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 18px;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.story-quote {
  background: white;
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-sm);
  margin: 25px 0;
  font-style: italic;
  color: var(--ocean-dark);
  font-weight: 500;
}

/* Interactive Quiz Section */
.quiz-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-deeper) 100%);
  color: white;
  border-radius: var(--radius-lg);
  margin: 40px auto;
  box-shadow: var(--shadow-lg);
}

.quiz-container {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-header {
  text-align: center;
  margin-bottom: 30px;
}

.quiz-header h2 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.quiz-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-bottom: 30px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.quiz-question {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-option-btn:hover {
  background: rgba(0, 180, 216, 0.3);
  border-color: var(--primary-light);
  transform: translateX(5px);
}

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

.quiz-score-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--ocean-dark);
  font-size: 2.2rem;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 50px;
  margin: 20px 0;
}

/* Articles Grid */
.articles-section {
  padding: 80px 0;
  background: white;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.article-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-title {
  font-size: 1.25rem;
  color: var(--ocean-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.article-snippet {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-link {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-link:hover {
  text-decoration: underline;
}

/* Product Showcase & Lead Form Page */
.product-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-image-container {
  text-align: center;
}

.product-main-img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.product-badge-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.mini-badge {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Lead Form Box */
.lead-form-box {
  background: white;
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.6rem;
  color: var(--ocean-dark);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.guarantee-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Ingredients Section */
.ingredients-section {
  padding: 70px 0;
  background: white;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ingredient-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.ingredient-title {
  font-size: 1.15rem;
  color: var(--ocean-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: #F4F9F9;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ocean-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--primary-dark);
}

/* Thank You Page */
.thankyou-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 100%);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.thankyou-box {
  background: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--primary);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
}

.thankyou-box h1 {
  color: var(--ocean-dark);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.thankyou-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Legal Content Page */
.legal-page {
  padding: 60px 0 90px;
  background: white;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h1 {
  font-size: 2.4rem;
  color: var(--ocean-dark);
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-light);
  padding-bottom: 15px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--ocean-dark);
  margin: 30px 0 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.legal-content ul {
  margin: 15px 0 20px 25px;
}

/* Footer Section */
.footer {
  background: var(--ocean-deeper);
  color: #90E0EF;
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  color: #90E0EF;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #90E0EF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #A5F3FC;
  line-height: 1.5;
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #90E0EF;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 37, 64, 0.96);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
  border-top: 2px solid var(--primary);
  display: none;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
  color: #E0F2FE;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--ocean-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--primary-light);
}

.btn-cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .story-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}
