/* Color Scheme: Warm Gray, Teal, Soft Amber */
/* Theme: Modern podcast discovery platform with Malaysian business context */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

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

:root {
  --primary-teal: #0d9488;
  --teal-light: #5eead4;
  --teal-dark: #0f766e;
  --soft-amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dark: #d97706;
  --warm-gray: #6b7280;
  --warm-gray-light: #f9fafb;
  --warm-gray-medium: #e5e7eb;
  --warm-gray-dark: #374151;
  --warm-gray-darker: #1f2937;
  --white: #ffffff;
  --black: #111827;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Malaysian Business Context Colors */
  --malaysian-red: #cc0000;
  --malaysian-blue: #000080;
  --golden-accent: #ffd700;

  /* Fonts */
  --font-primary: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;

  /* Shadows and effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glow-teal: 0 0 20px rgba(13, 148, 136, 0.3);
  --glow-amber: 0 0 20px rgba(245, 158, 11, 0.3);

  /* Gradients */
  --gradient-teal: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--teal-dark) 100%
  );
  --gradient-amber: linear-gradient(
    135deg,
    var(--soft-amber) 0%,
    var(--amber-dark) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    var(--warm-gray-light) 0%,
    var(--teal-light) 50%,
    var(--amber-light) 100%
  );
}

/* Base typography */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--warm-gray-darker);
  background-color: var(--warm-gray-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scroll (off-canvas menu, etc.) */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--warm-gray-darker);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--warm-gray);
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background: var(--gradient-amber);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--amber-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-gray-darker);
  color: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 2001; /* above header/menu */
  border-top: 3px solid var(--primary-teal);
  width: 100vw;
  box-sizing: border-box;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-text i {
  color: var(--soft-amber);
  font-size: 1.5rem;
}

.cookie-text p {
  margin: 0;
  color: var(--white);
}

.cookie-text a {
  color: var(--teal-light);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.legal-header {
  position: relative;
  background: var(--white);
  border-bottom: 3px solid var(--primary-teal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-decoration: none;
}

.nav-brand a:hover {
  color: var(--teal-dark);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--warm-gray);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-teal);
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-amber);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
  order: 3;
  justify-content: center;
}

.hamburger-line {
  width: 1.75rem;
  height: 3px;
  background: var(--warm-gray);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
  overflow-y: auto;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.2);
}

.mobile-nav-link {
  color: var(--warm-gray);
  font-weight: 500;
  text-decoration: none;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}

.mobile-nav-link:hover {
  background: var(--warm-gray-medium);
  color: var(--primary-teal);
  text-decoration: none;
}

.mobile-cta {
  margin-top: 1rem;
}

/* Mobile menu animation */
@media (max-width: 900px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

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

  .mobile-menu-toggle:checked ~ .mobile-menu {
    display: flex;
    transform: translateX(0);
  }

  .mobile-menu-toggle:checked ~ .mobile-menu-btn .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle:checked ~ .mobile-menu-btn .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .mobile-menu-toggle:checked ~ .mobile-menu-btn .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z" fill="rgba(13,148,136,0.1)"/></svg>')
    repeat-x;
  background-size: 1000px 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 100%;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3rem;
  color: var(--warm-gray-darker);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--warm-gray-darker);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--white);
  padding: 6rem 0;
}

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

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--warm-gray-darker);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--warm-gray);
}

/* Services Section */
.services {
  background: var(--warm-gray-light);
  padding: 6rem 0;
}

.services-content {
  max-width: 100%;
}

.services-text {
  margin-bottom: 3rem;
}

.services-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.service-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-teal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--soft-amber);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-teal);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-item h3 {
  color: var(--warm-gray-darker);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Featured Podcasts Section */
.featured-podcasts {
  background: var(--white);
  padding: 6rem 0;
}

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

.podcast-item {
  background: var(--warm-gray-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.podcast-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
}

.podcast-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.podcast-item:hover .podcast-image img {
  transform: scale(1.05);
}

.podcast-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.podcast-content h3 {
  color: var(--warm-gray-darker);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.podcast-content p {
  color: var(--warm-gray);
  line-height: 1.8;
  flex: 1;
}

/* Reviews Section */
.reviews {
  background: var(--warm-gray-light);
  padding: 6rem 0;
}

.reviews-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
  background: var(--gradient-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer-details h4 {
  color: var(--warm-gray-darker);
  margin-bottom: 0.25rem;
}

.reviewer-details p {
  color: var(--warm-gray);
  font-size: 0.875rem;
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  color: var(--soft-amber);
}

.review-text {
  flex: 1;
}

.review-text p {
  color: var(--warm-gray);
  line-height: 1.8;
  font-style: italic;
}

/* CTA Section */
.call-to-action {
  background: var(--gradient-teal);
  padding: 6rem 0;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.call-to-action p {
  color: var(--teal-light);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Contact Section */
.contact {
  background: var(--white);
  padding: 6rem 0;
}

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

.contact-info h3 {
  color: var(--primary-teal);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item i {
  color: var(--primary-teal);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item div h4 {
  color: var(--warm-gray-darker);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-item div p {
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.8;
}

.contact-form {
  background: var(--warm-gray-light);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--primary-teal);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--warm-gray-medium);
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  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-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.25rem;
}

.form-checkbox label {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* FAQ Section */
.faq {
  background: var(--warm-gray-light);
  padding: 6rem 0;
}

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

.faq-item {
  background: var(--white);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-teal);
}

.faq-item h3 {
  color: var(--warm-gray-darker);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--warm-gray);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--warm-gray-darker);
  color: var(--white);
  padding: 4rem 0 1rem;
}

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

.footer-section h3 {
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer-section h4 {
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--warm-gray-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--soft-amber);
  transform: translateY(-0.125rem);
  text-decoration: none;
}

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

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

.footer-section a {
  color: var(--warm-gray-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--teal-light);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--warm-gray-medium);
  font-size: 0.875rem;
  margin: 0;
}

/* Legal Pages Styles */
.legal-main {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 200px);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.legal-title {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--soft-amber);
  padding-bottom: 1rem;
}

.legal-meta {
  background: var(--warm-gray-light);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-teal);
}

.legal-meta p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 0.875rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: var(--primary-teal);
  border-bottom: 2px solid var(--warm-gray-medium);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  color: var(--warm-gray-darker);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--warm-gray);
}

.contact-info {
  background: var(--warm-gray-light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--warm-gray-medium);
  margin-top: 1rem;
}

.contact-method {
  margin-bottom: 1.5rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method h4 {
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-method h4 i {
  color: var(--soft-amber);
}

.legal-footer {
  background: var(--warm-gray-light);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid var(--warm-gray-medium);
}

.legal-footer p {
  margin-bottom: 1rem;
  color: var(--warm-gray);
  font-style: italic;
}

.back-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-top a:hover {
  color: var(--teal-dark);
  text-decoration: none;
}

.legal-footer-section {
  border-top: 3px solid var(--primary-teal);
}

/* Cookie Table */
.cookie-table {
  margin: 2rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: 0.5rem;
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--warm-gray-medium);
}

.cookie-table th {
  background: var(--primary-teal);
  color: var(--white);
  font-weight: 600;
}

.cookie-table td {
  background: var(--white);
  color: var(--warm-gray);
}

.cookie-table tr:hover td {
  background: var(--warm-gray-light);
}

.cookie-controls {
  background: var(--warm-gray-light);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  margin: 2rem 0;
  border: 1px solid var(--warm-gray-medium);
}

.cookie-preference-center {
  margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

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

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large {
    width: 100%;
    text-align: center;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .legal-content {
    padding: 2rem;
  }

  .legal-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-table {
    overflow-x: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 0 3rem;
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .about,
  .services,
  .featured-podcasts,
  .reviews,
  .call-to-action,
  .contact,
  .faq {
    padding: 4rem 0;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .services-grid,
  .podcasts-grid,
  .reviews-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Image placeholders with 16:9 aspect ratio */
.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gradient-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

/* Utility classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

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

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

.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 1rem;
}

/* Print styles */
@media print {
  .cookie-banner,
  .header,
  .footer,
  .btn,
  .nav-menu,
  .nav-toggle-label {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .legal-content {
    box-shadow: none;
    padding: 0;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-teal: #0a5c54;
    --soft-amber: #cc7a00;
    --warm-gray: #4a4a4a;
  }
}
