@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #2c4c3b; /* Deep forest green */
  --primary-light: #446e58;
  --secondary-color: #d1bfae; /* Warm sand */
  --accent-color: #e07a5f; /* Earthy orange accent */
  --bg-color: #f8f9fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }

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

.section {
  padding: 5rem 0;
}

.subpage-main {
  padding-top: 150px;
}

@media (max-width: 768px) {
  .subpage-main {
    padding-top: 130px !important;
  }
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 80px;
  }
}

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

.nav-links li a {
  font-weight: 600;
  color: var(--text-dark);
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background-color: #25D366 !important;
  color: white !important;
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
}

/* Hero Section */
.hero {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: linear-gradient(rgba(44, 76, 59, 0.7), rgba(44, 76, 59, 0.7)), url('../assets/hero_bg_final.png') center / cover no-repeat var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 130px; /* Offset for fixed header */
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Forms (Permit Page) */
.form-container {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 76, 59, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--primary-color);
}

/* Cost Display */
.cost-display {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

#totalCost {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* File Upload */
.file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
}
.file-upload input[type="file"] {
  padding: 10px;
  background: #f1f1f1;
  border-radius: 8px;
  border: 1px dashed #ccc;
  width: 100%;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

/* Province Grid */
.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.province-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.province-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.province-img-placeholder {
  height: 150px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.province-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.province-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu Global Style */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  z-index: 1001;
  position: relative;
}

/* Responsive */
@media (max-width: 992px) {
  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.nav-active {
    transform: translateX(0);
  }
}


/* Clients Section */
.clients-section {
  padding: 5rem 0;
  background-color: #111827; /* Dark background */
  overflow: hidden;
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #ffffff;
  text-align: center;
}

.client-logos-container {
  width: 100%;
  overflow-x: auto;
  position: relative;
  cursor: grab;
  user-select: none;
  scrollbar-width: none; /* Firefox */
}

.client-logos-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.client-logos-container.active {
  cursor: grabbing;
}

.client-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  width: max-content;
}

.marquee-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}


.client-box {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-box:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-box:hover .client-logo {
  transform: scale(1.05);
}

/* Blend modes */
.logo-dark-bg {
  filter: grayscale(100%);
  mix-blend-mode: screen;
}

.logo-light-bg {
  filter: grayscale(100%) invert(1);
  mix-blend-mode: screen;
}

/* Drag-and-swipe Carousel Styles: Handled dynamically by JS */

/* Under Constrictor styles */
.constrictor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  min-height: 60vh;
}
.constrictor-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.constrictor-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}
.constrictor-text {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Button Outline Style */
.btn-outline {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border: 2px solid var(--text-light) !important;
}

.btn-outline:hover {
  background-color: var(--text-light) !important;
  color: var(--primary-color) !important;
}

/* Partners Carousel Wrapper and Arrows */
.client-logos-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-light);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left-arrow {
  left: 10px;
}

.carousel-arrow.right-arrow {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow.left-arrow {
    left: 5px;
  }
  .carousel-arrow.right-arrow {
    right: 5px;
  }
}

.pb-5rem {
  padding-bottom: 5rem !important;
}

/* ==========================================
   CAPE TOWN REPTILE & NATURE EXPO 2027 STYLES
   ========================================== */

/* Theme Variables for Expo Page */
.expo-theme {
  --expo-bg: #09120e;
  --expo-bg-light: #12221b;
  --expo-primary: #d4af37; /* Gold */
  --expo-primary-hover: #f3e5ab;
  --expo-text: #e6eae7;
  --expo-text-muted: #a0b2a6;
  --expo-glass: rgba(18, 34, 27, 0.65);
  --expo-glass-border: rgba(212, 175, 55, 0.15);
  --expo-glass-hover: rgba(18, 34, 27, 0.85);
  background-color: var(--expo-bg);
  color: var(--expo-text);
}

/* Specific Header Adjustment for Expo Page (dark nav) */
.expo-theme header {
  background-color: rgba(9, 18, 14, 0.9) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.expo-theme nav .logo {
  color: var(--expo-primary) !important;
}

.expo-theme .nav-links li a {
  color: var(--expo-text) !important;
}

.expo-theme .nav-links li a:hover,
.expo-theme .nav-links li a.active {
  color: var(--expo-primary) !important;
}

/* Glassmorphism utility card */
.glass-card {
  background: var(--expo-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--expo-glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

/* Split Hero Section */
.expo-hero {
  padding-top: 170px;
  padding-bottom: 5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(44, 76, 59, 0.25), transparent),
              radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05), transparent),
              var(--expo-bg);
}

/* Subtle Animated Jungle Background elements */
.expo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/hero_bg_final.png');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

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

@media (max-width: 992px) {
  .expo-hero {
    padding-top: 140px;
  }
  .expo-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.expo-title-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--expo-primary);
  color: var(--expo-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.expo-main-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 40%, var(--expo-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
  .expo-main-title {
    font-size: 2.5rem;
  }
}

.expo-subtitle {
  font-size: 1.25rem;
  color: var(--expo-text-muted);
  margin-bottom: 2rem;
}

/* Poster wrapper */
.expo-poster-wrapper {
  perspective: 1000px;
}

.expo-poster-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 0 auto;
  display: block;
}

.expo-poster-img:hover {
  transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(212, 175, 55, 0.3);
}

/* Expo Button Style */
.btn-expo-primary {
  background-color: var(--expo-primary) !important;
  color: #09120e !important;
}

.btn-expo-primary:hover {
  background-color: #f3e5ab !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-expo-secondary {
  background-color: transparent !important;
  color: var(--expo-text) !important;
  border: 2px solid var(--expo-text-muted) !important;
}

.btn-expo-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: white !important;
  transform: translateY(-3px);
}

/* Live Countdown Layout */
.countdown-section {
  padding: 4rem 0;
  background-color: var(--expo-bg-light);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0 auto;
}

@media (max-width: 576px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.countdown-item {
  text-align: center;
  background: rgba(9, 18, 14, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--expo-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--expo-text-muted);
}

/* Fast Facts Cards */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fact-card {
  text-align: center;
}

.fact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--expo-primary);
}

/* Highlight Items Section */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.highlight-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.highlight-header h3 {
  margin-bottom: 0;
  color: var(--expo-primary);
}

.highlight-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--expo-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Ticket Calculator Card styling */
.calculator-card {
  max-width: 600px;
  margin: 0 auto;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-row:last-of-type {
  border-bottom: none;
}

.calc-details h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.calc-details p {
  font-size: 0.9rem;
  color: var(--expo-text-muted);
}

.calc-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

.calc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--expo-primary);
  background: transparent;
  color: var(--expo-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calc-btn:hover {
  background-color: var(--expo-primary);
  color: #09120e;
}

.calc-qty {
  font-size: 1.2rem;
  font-weight: 600;
  width: 25px;
  text-align: center;
}

.calc-total {
  background-color: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  margin-top: 1.5rem;
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.calc-total span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--expo-primary);
  margin-left: 10px;
}

/* FAQ Accordion Styling */
.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--expo-primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--expo-text-muted);
  font-size: 1rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 250px; /* arbitrary height to slide down */
  padding: 1.2rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Vendor Banner */
.vendor-banner {
  background: linear-gradient(135deg, #12221b 0%, #162e20 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-top: 4rem;
}

.vendor-banner::after {
  content: '🌿';
  position: absolute;
  font-size: 10rem;
  bottom: -40px;
  right: -20px;
  opacity: 0.05;
  pointer-events: none;
}

.vendor-banner h2 {
  font-size: 2.2rem;
  color: var(--expo-primary);
  margin-bottom: 1rem;
}

.vendor-banner p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: var(--expo-text-muted);
  font-size: 1.1rem;
}

/* Section Title Highlight */
.expo-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.expo-section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 40%, var(--expo-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.expo-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--expo-primary);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* About Me Grid Layout */
.about-me-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--secondary-color);
}

@media (max-width: 768px) {
  .about-me-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Custom Calendar Icon Replacement for Emoji */
.custom-calendar-icon {
  width: 38px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  vertical-align: middle;
}

.custom-calendar-icon .cal-month {
  background-color: #b02a37; /* Clean binder red color */
  color: #ffffff;
  width: 100%;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.custom-calendar-icon .cal-day {
  color: #0b1511;
  font-size: 0.95rem;
  font-weight: 700;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  padding-bottom: 2px;
}

/* Responsive overrides for subpage layout cards */
@media (max-width: 768px) {
  .subpage-main .hero-content {
    padding: 2.5rem 1.5rem !important; /* Overrides inline padding: 4rem on mobile to prevent content squeezing */
  }
}







