:root {
  --primary-gold: #cbb668;
  --secondary-grey: #6d6d6d;
  --bg-warm-white: #faf8f5;
  --accent-blush: #f4e8e6;
  --text-dark: #333333;
  --text-light: #ffffff;
  --font-main: 'Outfit', 'Calibri Light', 'Segoe UI Light', sans-serif;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; color: var(--primary-gold); }
h3 { font-size: 1.8rem; }
p { margin-bottom: var(--spacing-sm); }

/* Layout & Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

/* Typography elements */
.tagline {
  font-size: 1.2rem;
  color: var(--secondary-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #bfa54f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(203, 182, 104, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  padding: var(--spacing-md) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(203, 182, 104, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 1px;
  z-index: 1001;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--spacing-md);
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-grey);
  transition: color 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-gold);
  cursor: pointer;
  z-index: 1002;
  padding: 0.5rem;
  line-height: 1;
}

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

.hero-content {
  flex: 1;
  padding-right: var(--spacing-lg);
  z-index: 2;
}

.hero-image-wrapper {
  flex: 0 0 500px;
  height: 500px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* About Section */
.about {
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-gold);
  border-left: 3px solid var(--accent-blush);
  padding-left: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.elegant-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin: 1.5rem 0 2rem 0;
  line-height: 1.3;
  font-weight: 600;
  display: block;
  transform: rotate(-1deg);
  opacity: 0.9;
}

/* Cards / Complaints */
.cards-section {
  background-color: var(--accent-blush);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.card {
  background: #fff;
  padding: 2.5rem var(--spacing-md);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(203, 182, 104, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(203, 182, 104, 0.1);
  border-color: rgba(203, 182, 104, 0.3);
}

.card h3 {
  color: var(--primary-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.4rem;
  font-weight: 400;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.services-list {
  list-style: none;
}

.services-list li {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(109, 109, 109, 0.1);
}

.services-list h4 {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: #fff;
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid rgba(203, 182, 104, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.footer-col h4 {
  color: var(--primary-gold);
  margin-bottom: var(--spacing-sm);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  text-decoration: none;
  color: var(--secondary-grey);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  color: var(--secondary-grey);
  font-size: 0.9rem;
  border-top: 1px solid rgba(109, 109, 109, 0.1);
  padding-top: var(--spacing-md);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    width: 100%;
    border-radius: 20px;
  }
  
  .hero-image {
    border-radius: 20px;
  }

  .about-grid, .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: var(--spacing-md);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

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

  .mobile-menu-btn {
    display: block;
  }
}

/* NEW: Cellular Health Section */
.cellular-section {
  background-color: var(--accent-blush);
  color: var(--text-dark);
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.cellular-section h2 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.cellular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cellular-item {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(203, 182, 104, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cellular-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(203, 182, 104, 0.1);
  border-color: rgba(203, 182, 104, 0.3);
}

.cellular-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--secondary-grey);
  font-weight: 300;
}

.cellular-item p strong {
  color: var(--primary-gold);
  font-weight: 400;
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
}

.cellular-questions {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.cellular-questions p {
  margin-bottom: 0.5rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--primary-gold);
  font-weight: 600;
  opacity: 0.9;
}

.cellular-statement {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(203, 182, 104, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  max-width: 800px;
  margin: 2rem auto 0 auto;
  position: relative;
  transition: all 0.4s ease;
}

.cellular-statement:hover {
  box-shadow: 0 15px 35px rgba(203, 182, 104, 0.08);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background-color: var(--primary-gold);
  margin: 0 auto 2rem auto;
  position: relative;
}

.divider-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold);
  border: 2px solid #fff;
}

/* NEW: Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  align-items: center;
}

.trust-badge {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  line-height: 0;
}

.trust-badge img {
  height: 130px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  border: 1px solid rgba(203, 182, 104, 0.15);
  padding: 6px;
}

.trust-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.trust-badge-placeholder {
  width: 120px;
  height: 60px;
  background-color: var(--bg-warm-white);
  border: 1px dashed var(--secondary-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-grey);
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 5px;
}

.compliance-text {
  font-size: 0.8rem;
  color: var(--secondary-grey);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-sm) auto;
}

/* Redesigned Sections */
.connection-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--accent-blush);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.connection-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connection-content h2 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.connection-image-wrapper {
  height: 100%;
  min-height: 400px;
}

.connection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .connection-card {
    grid-template-columns: 1fr;
  }
  .connection-content {
    padding: 2rem;
  }
  .connection-image-wrapper {
    min-height: 300px;
  }
}

.cta-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-image: url('../images/hero_healthy_food.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(250, 248, 245, 0.9);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(203, 182, 104, 0.1);
  height: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary-grey);
  font-weight: 400;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(109, 109, 109, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--bg-warm-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(203, 182, 104, 0.2);
}

/* Centering cellular items on mobile / wrapped layouts */
@media (max-width: 900px) {
  .cellular-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .cellular-item {
    flex: 1 1 250px;
    max-width: 350px;
  }
}
