/* ==========================================================================
   TOUCH AFRICA SAFARIS - Stylesheet
   ========================================================================== */

/* Import Google Fonts */
/* Google Fonts loaded via HTML preconnect link tags for performance */

:root {
  --primary-color: #01682c; /* Logo Green */
  --primary-hover: #004d20;
  --secondary-color: #404041; /* Logo Gray */
  --accent-color: #d29034; /* Earthy Gold */
  --accent-hover: #b57622;
  --bg-warm: #FAF8F5; /* Warm off-white */
  --bg-white: #ffffff;
  --text-dark: #1f1f21;
  --text-muted: #57575a;
  --text-light: #ffffff;
  --border-color: #e5dfd8;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Header & Navbar */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.top-bar-info a:hover {
  color: var(--accent-color);
}

.top-bar-info svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar-socials {
  display: flex;
  gap: 1rem;
}

.top-bar-socials a {
  color: var(--text-light);
}

.top-bar-socials a:hover {
  color: var(--accent-color);
}

.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-link img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Semi-transparent dark overlay for high contrast text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Info Cards & Tours Overview (Home Page) */
.section-title-wrap {
  margin-bottom: 4rem;
  text-align: center;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.tour-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 104, 44, 0.2);
}

.tour-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tour-card:hover .tour-img-wrap img {
  transform: scale(1.08);
}

.tour-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.tour-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Dual Background sections (Kruger vs Afrikaans History) */
.dual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.dual-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem;
  color: var(--text-light);
  overflow: hidden;
}

.dual-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: var(--transition);
}

.dual-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dual-panel:hover .dual-panel-bg img {
  transform: scale(1.05);
}

.dual-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.dual-panel-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.dual-panel-content h3 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.dual-panel-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding-top: 1rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-warm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 104, 44, 0.2);
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.testimonial-location {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-top: 0.25rem;
}

/* Footer Section */
.main-footer {
  background-color: #f2ece4; /* Lighter warm sand/earthy color */
  color: var(--text-dark);
  padding: 4rem 0 2rem 0;
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 65px;
  margin-bottom: 1.5rem;
}

.footer-logo + p {
  color: var(--text-muted) !important;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(64, 64, 65, 0.08);
  color: var(--secondary-color);
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-bottom p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  color: var(--text-muted);
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* Floating WhatsApp Widget (Right Hand Corner Top) */
.whatsapp-widget {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.85rem;
  gap: 0.5rem;
  transition: var(--transition);
}

.whatsapp-widget:hover {
  transform: translateY(-2px);
  background-color: #20ba59;
  color: white;
  box-shadow: var(--shadow-lg);
}

.whatsapp-widget svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Scroll To Top Arrow (Left Hand Side Bottom Corner) */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  border: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: rotate(-90deg);
}

/* Page Intro/Hero for Subpages */
.page-hero {
  background-color: var(--secondary-color);
  padding: 5rem 0;
  color: var(--text-light);
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), url('../images/table_mountain.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.page-hero-title {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a:hover {
  color: var(--accent-color);
}

/* About Us Page Layout & CV Tables */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.profile-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 130px;
}

.profile-img-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.profile-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: block;
}

.profile-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.profile-details-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.profile-details-table td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
  width: 40%;
}

.cv-section-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.cv-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
  background-color: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.cv-table th, .cv-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cv-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
}

.cv-table tr:last-child td {
  border-bottom: none;
}

.cv-table tr:nth-child(even) td {
  background-color: #faf9f6;
}

.about-intro {
  font-size: 1.15rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Trips & Tours Page Styling */
.tours-intro {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

/* Gallery Page Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
}

.gallery-item-info h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-item-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Contact Us Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-block {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-info-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-container {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--bg-warm);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(1, 104, 44, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Privacy Policy Styles */
.policy-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p, .policy-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.policy-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* Podcast Banner Section */
.podcast-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
}
.podcast-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.podcast-logo-wrap {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.podcast-content {
  flex: 2;
  min-width: 300px;
  max-width: 650px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section {
    padding: 4.5rem 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .about-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .profile-card {
    position: static;
    max-width: 550px;
    margin: 0 auto;
  }
  .dual-section {
    grid-template-columns: 1fr;
  }
  .dual-panel {
    min-height: 380px;
  }
  .contact-info-block, .contact-form-container {
    padding: 2rem 1.5rem;
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  .nav-menu {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 3rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .top-bar-info {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .top-bar-socials {
    justify-content: center;
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Centering panels on mobile */
  .dual-panel {
    padding: 4rem 1.5rem;
    justify-content: center;
    text-align: center;
  }
  
  .dual-panel-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Centering podcast on mobile */
  .podcast-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .podcast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Centering profile card on mobile */
  .profile-card {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .profile-details-table {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .whatsapp-widget {
    top: auto;
    bottom: 20px;
    right: 20px;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .whatsapp-widget span {
    display: none;
  }
  .scroll-to-top {
    bottom: 20px;
    left: 20px;
  }
  .container {
    padding: 0 1.25rem;
  }
}
