/* ============================================
   GLOWING NATURALLY - Main Stylesheet
   A beautiful, modern affiliate marketing website
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #2d8a7b;
  --primary-dark: #236b5f;
  --primary-light: #3da894;
  --secondary-color: #f8b4c4;
  --accent-color: #e8a598;
  --text-dark: #2c3e50;
  --text-light: #6b7c8a;
  --text-muted: #95a5a6;
  --bg-light: #fdfcfb;
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --border-light: #e8e4e0;
  --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 35px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-warm: linear-gradient(135deg, #f8b4c4 0%, #e8a598 100%);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --max-width: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 1.15rem;
}
h6 {
  font-size: 1rem;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(45, 138, 123, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-warm);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

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

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 138, 123, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 138, 123, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

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

.section-badge {
  display: inline-block;
  background: rgba(45, 138, 123, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

.bg-cream {
  background-color: var(--bg-cream);
}

.bg-white {
  background-color: var(--bg-white);
}

/* ============================================
   FEATURED REVIEWS / CARDS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}

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

.review-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.review-card:hover .review-card-image img {
  transform: scale(1.05);
}

.review-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.review-card-content {
  padding: 1.5rem;
}

.review-card-category {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.review-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.review-card-title a {
  color: var(--text-dark);
}

.review-card-title a:hover {
  color: var(--primary-color);
}

.review-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #f4c150;
  font-size: 0.9rem;
}

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

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.review-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.about-image-badge .number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.about-image-badge .label {
  font-size: 0.85rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(45, 138, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.75rem;
}

.about-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

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

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 138, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.category-card h4 {
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-form .form-row {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  background: var(--text-dark);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.newsletter-form button:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ============================================
   BLOG LISTING
   ============================================ */

.blog-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  text-align: center;
}

.blog-hero h1 {
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.blog-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}

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

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--text-dark);
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ============================================
   SINGLE REVIEW PAGE
   ============================================ */

.review-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 3rem 0;
}

.review-breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.review-breadcrumb a {
  color: var(--text-muted);
}

.review-breadcrumb a:hover {
  color: var(--primary-color);
}

.review-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.review-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-category {
  background: rgba(45, 138, 123, 0.1);
  color: var(--primary-color);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.review-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.review-summary {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.review-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.review-rating-box .stars {
  font-size: 1.1rem;
}

.review-rating-box .rating-value {
  font-weight: 700;
  color: var(--text-dark);
}

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

.review-product-image img {
  max-width: 350px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

/* Review Content */
.review-content {
  padding: 4rem 0;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.review-main {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.affiliate-disclosure {
  background: rgba(45, 138, 123, 0.08);
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 0.9rem;
}

.affiliate-disclosure strong {
  color: var(--primary-color);
}

.review-main h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.review-main h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.review-main h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

.review-main p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.review-main ul,
.review-main ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.review-main li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.pros {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.cons {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.pros h4,
.cons h4 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros h4 {
  color: #27ae60;
}
.cons h4 {
  color: #e74c3c;
}

.pros ul,
.cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros li::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 0.5rem;
}

.cons li::before {
  content: "✗";
  color: #e74c3c;
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
  background: var(--bg-cream);
  font-weight: 600;
  color: var(--text-dark);
}

.pricing-table tr:hover {
  background: var(--bg-cream);
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-box h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-box .btn {
  background: white;
  color: var(--primary-color);
}

.cta-box .btn:hover {
  background: var(--bg-cream);
  color: var(--primary-dark);
}

.cta-box .cta-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Review Sidebar */
.review-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-box {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.quick-facts {
  list-style: none;
}

.quick-facts li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

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

.quick-facts .label {
  color: var(--text-muted);
}

.quick-facts .value {
  font-weight: 600;
  color: var(--text-dark);
}

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

.sidebar-cta .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.disclaimer h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.disclaimer p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 138, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  text-align: center;
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 138, 123, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 138, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-method p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   LEGAL PAGES (Privacy, Disclosure)
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  text-align: center;
}

.legal-content {
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.legal-container h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.legal-container h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-container p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-container ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.legal-container li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.last-updated {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.faq-item p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .reviews-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-header {
    grid-template-columns: 1fr;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .header-inner {
    padding: 0.75rem 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-medium);
  }

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

  .nav-menu li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
  }

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

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter {
    padding: 2.5rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

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

  .review-main {
    padding: 1.5rem;
  }

  .legal-container {
    padding: 1.5rem;
  }
}

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

  .hero h1 {
    font-size: 1.85rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}
