/*
Theme Name: Acudhaam – Harmony Ecosystem
Theme URI: https://acudhaam.com/
Author: Acudhaam Team
Description: Holistic wellness theme with shared header/footer
Version: 1.2
License: GPL v2 or later
Text Domain: acudhaam
*/

/* ========================================
   GLOBAL STYLES (Used across all pages)
   ======================================== */

/* ---------- CSS RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold: #d4af37;
  --gold-light: #e9c468;
  --gold-dark: #b4941a;
  --dark: #1e3556;
  --cream: #f8f5f0;
  --white: #ffffff;
  --text-dark: #1e2a32;
  --text-muted: #5a6e6e;
  --footer-bg: #111827;
  --footer-text: #ccc;
  --shadow-md: 0 20px 35px -15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Playfair Display", serif;
}

body {
  font-family: var(--font-primary);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 8px;
}

/* Scroll Reveal Animation (Single Definition) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeUp 0.7s ease forwards;
}

/* Buttons */
.btn-gold {
  background: transparent;
  border: 2px solid var(--gold);
  padding: 12px 32px;
  font-weight: 600;
  color: white;
  transition: var(--transition-smooth);
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}
.btn-gold:hover {
  background: var(--gold);
  color: #1e2a32;
  transform: scale(1.02);
}

.btn-dark {
  background: var(--gold);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  color: #1e2a32;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}
.btn-dark:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #222051, #1e3556, #02565f);
  color: white;
  padding: 0.7rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.top-contact i, .top-social i {
  margin-right: 6px;
  color: var(--gold);
}
.top-contact a, .top-social a {
  color: white;
  text-decoration: none;
  margin: 0 12px 0 0;
  transition: var(--transition-smooth);
}
.top-contact a:hover, .top-social a:hover {
  color: var(--gold);
}
.top-social i {
  font-size: 1.1rem;
  margin: 0 8px;
}

/* News Ticker */
.news-ticker {
  background: #1e2a3a;
  color: #f8f5f0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--gold);
  padding: 0.5rem 0;
}
.ticker-scroll {
  display: inline-block;
  animation: scrollTicker 35s linear infinite;
  padding-left: 100%;
}
.ticker-scroll span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 2.5rem;
  font-size: 0.8rem;
  color: #fff0db;
}
.ticker-scroll i {
  color: var(--gold);
  font-size: 0.8rem;
}
.ticker-scroll .news-highlight {
  color: var(--gold-light);
  font-weight: 600;
}
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.news-ticker:hover .ticker-scroll {
  animation-play-state: paused;
}

/* Brand Header */
.brand-header {
  background: linear-gradient(105deg, #fefcf8, #faf5ea);
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.brand-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-logo {
  width: 65px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}
.brand-title {
  font-family: var(--font-secondary);
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #222051, #02565f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #5e6b5e;
  border-top: 1px solid var(--gold);
  display: inline-block;
  padding-top: 5px;
}
.brand-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: #7c6e3c;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
@media (max-width: 768px) {
  .brand-inner { flex-direction: column; gap: 0.5rem; }
  .brand-quote { display: none; }
}

/* Main Navigation */
.main-nav {
  background: rgba(30, 35, 60, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.6);
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.nav-item { position: relative; }
.nav-item > a {
  color: #f5f0e6;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  display: inline-block;
  border-radius: 30px;
  transition: 0.2s;
}
.nav-item > a i {
  margin-right: 6px;
  color: var(--gold);
}
.nav-item > a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 25, 45, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 1050;
}
.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown-content a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: #f0e6d8;
  text-decoration: none;
  font-size: 0.8rem;
}
.dropdown-content a:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  padding-left: 1.5rem;
}
@media (max-width: 992px) {
  .main-nav .nav-container { display: none; }
}

/* Mobile Menu */
.mobile-menu-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  cursor: pointer;
  border: none;
  color: #1e2a32;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  transform: scale(1.05);
  background: var(--gold-light);
}
@media (max-width: 992px) {
  .mobile-menu-btn { display: flex; }
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  padding: 2rem;
  overflow-y: auto;
}
.fullscreen-overlay.active { display: flex; }
.close-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1201;
}
.close-overlay:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.fullscreen-overlay img {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.fullscreen-overlay a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
  text-align: center;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
}
.fullscreen-overlay a:hover {
  background: var(--gold);
  color: #1e2a32;
  transform: translateX(5px);
}
.fullscreen-overlay a i {
  margin-right: 10px;
  color: var(--gold);
}
.fullscreen-overlay a:hover i { color: #1e2a32; }
.mobile-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.mobile-social-icons a {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.mobile-social-icons a i { margin: 0; font-size: 1.2rem; }
.mobile-social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.mobile-contact-info {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-contact-info p {
  color: #ccc;
  font-size: 0.85rem;
  margin: 0.5rem 0;
  font-family: 'Montserrat', sans-serif;
}
.mobile-contact-info i {
  color: var(--gold);
  margin-right: 8px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 300px;
}
@media (max-width: 480px) {
  .fullscreen-overlay a { font-size: 1rem; padding: 0.6rem 1.2rem; }
  .mobile-social-icons { gap: 1rem; }
  .mobile-social-icons a { width: 35px; height: 35px; }
}

/* Page Hero Banner (Single definition - override background per page) */
.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.9rem; }
}

/* Stats Bar */
.stats-bar {
  background: #1e2a3a;
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  color: white;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 2rem 0;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-secondary);
  line-height: 1.2;
}
.stat-item { text-align: center; transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-5px); }
.stat-item p { font-size: 0.75rem; margin-top: 5px; opacity: 0.85; }

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 2rem 1.5rem;
  margin-top: 2rem;
}
.footer .container { max-width: 1280px; margin: 0 auto; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--font-secondary);
}
.footer-col p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--footer-text);
  line-height: 1.5;
}
.footer-col p i { width: 25px; color: var(--gold); }
.footer-col a {
  display: block;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}
.footer-col a i {
  margin-right: 8px;
  font-size: 0.7rem;
  color: var(--gold);
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-logo { width: 100px; margin-bottom: 1rem; }
.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: var(--transition-smooth);
}
.footer-social-links a i { font-size: 1.1rem; margin: 0; }
.footer-social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.footer-social-links a:hover i { color: #1e2a32; }
.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #888;
}

/* Two Column Layout */
.two-col {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.two-col > div { flex: 1; }
.content-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #2c3e42;
}
.content-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
  .section-container { padding: 2rem 1rem; }
  .section-title { font-size: 1.8rem; }
  .two-col { gap: 1.5rem; }
  .stats-bar { gap: 1rem; padding: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
}

/* ========================================
   HOMEPAGE SPECIFIC STYLES (index.html)
   ======================================== */

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.carousel-slide.active { opacity: 1; z-index: 2; }
.overlay-grad { position: absolute; inset: 0; z-index: 1; }
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1.5rem;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}
.hero-content .subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1rem;
  margin: 1rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
  color: var(--gold-light);
}
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }
.dots-container {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 20;
}
.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.dot.active {
  background: var(--gold);
  width: 28px;
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content .subtitle { font-size: 0.7rem; letter-spacing: 2px; }
  .hero-content p { font-size: 0.75rem; }
  .carousel-btn { width: 35px; height: 35px; font-size: 1.2rem; }
}

/* Action Buttons Row */
.action-buttons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(130deg, #1e2f3a, #0f2a2f);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.action-card-link {
  text-decoration: none;
  color: inherit;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  border-right: 1px solid rgba(212,175,55,0.3);
  text-align: center;
}
.action-card-link:nth-child(4),
.action-card-link:nth-child(8) { border-right: none; }
.action-card-link:hover {
  background: rgba(212,175,55,0.1);
  transform: translateY(-3px);
}
.action-card { padding: 2rem 1rem; text-align: center; }
.action-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.action-card p {
  color: #f0ede8;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.action-btn {
  border: 2px solid var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  color: white;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  transition: 0.2s;
}
.action-card-link:hover .action-btn {
  background: var(--gold);
  color: #1e2a32;
}
@media (max-width: 992px) and (min-width: 769px) {
  .action-buttons-row { grid-template-columns: repeat(2, 1fr); }
  .action-card-link { border-right: 1px solid rgba(212,175,55,0.3); }
  .action-card-link:nth-child(2n) { border-right: none; }
}
@media (max-width: 768px) {
  .action-buttons-row { grid-template-columns: 1fr; }
  .action-card-link { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.3); }
  .action-card-link:last-child { border-bottom: none; }
}

/* Premium Welcome Section */
.premium-welcome {
  background: linear-gradient(135deg, #ffffff 0%, #fef9f0 100%);
  border-radius: 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.premium-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.welcome-grid-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.welcome-content-premium { padding: 3rem 3rem 3rem 3.5rem; position: relative; }
.est-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  border: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 1.5rem;
}
.welcome-title-premium {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.welcome-title-premium .gradient-text {
  background: linear-gradient(135deg, #1e3556, #02565f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.welcome-title-premium .gold-text {
  color: var(--gold-dark);
  display: inline-block;
}
.tagline-premium {
  font-size: 1rem;
  font-style: italic;
  color: #7c6e3c;
  margin-bottom: 2rem;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.who-we-are-premium {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.welcome-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2c3e42;
  margin-bottom: 2rem;
  text-align: justify;
  opacity: 0.85;
}
.contact-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(95deg, #1e3556, #02565f);
  padding: 14px 32px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-btn-premium:hover {
  transform: translateY(-2px);
  background: linear-gradient(95deg, #02565f, #1e3556);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}
.welcome-image-premium {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.welcome-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.welcome-image-premium:hover img { transform: scale(1.03); }
.stats-premium {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  padding: 1.8rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(212,175,55,0.3);
}
.stat-premium-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.stat-premium-item:hover { transform: translateY(-3px); }
.stat-premium-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
.stat-premium-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
@media (max-width: 992px) {
  .welcome-grid-premium { grid-template-columns: 1fr; }
  .welcome-content-premium { padding: 2rem; }
  .welcome-title-premium { font-size: 2rem; }
  .welcome-image-premium { min-height: 300px; order: -1; }
  .stats-premium { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .stats-premium { flex-direction: column; gap: 0.8rem; }
  .stat-premium-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-premium-item:last-child { border-bottom: none; }
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fef9f0, #f8f5f0);
}
.why-container { max-width: 1280px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 3rem; }
.why-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e3556, #02565f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.why-header p { color: #7c6e3c; font-size: 1rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.why-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-md);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-icon i { font-size: 2rem; color: var(--gold); }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1e3556;
}
.why-card p {
  font-size: 0.85rem;
  color: #5a6e6e;
  line-height: 1.5;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* Who Are You Section */
.path-section {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.path-header { text-align: center; margin-bottom: 3rem; }
.path-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e3556, #02565f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.path-header p { color: #7c6e3c; font-size: 1rem; }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.path-card {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.path-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.path-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}
.path-card:hover .path-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
  transform: scale(1.05);
}
.path-icon i { font-size: 2.5rem; color: var(--gold); }
.path-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #1e3556;
}
.path-card p {
  color: #5a6e6e;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.path-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--gold);
  padding: 8px 24px;
  border-radius: 40px;
  color: #1e3556;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.path-card:hover .path-btn {
  background: var(--gold);
  color: #1e2a32;
  gap: 12px;
}
@media (max-width: 992px) { .path-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .path-grid { grid-template-columns: 1fr; } }

/* ========================================
   PAGE SPECIFIC BACKGROUND OVERRIDES
   ======================================== */

/* About Page */
.page-template-page-about .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/ETHN6011-copy-scaled.jpg');
  background-size: cover;
  background-position: center;
}

/* Acupuncture Clinic Page */
.page-template-page-acupuncture_clinic .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/03/a05.jpg');
  background-size: cover;
  background-position: center;
}

/* Institute Page */
.page-template-page-institute .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/ETHN0994s-scaled.jpg');
  background-size: cover;
  background-position: center;
}

/* Green Raw Page */
.page-template-page-green_raw .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/greenraw1.png');
  background-size: cover;
  background-position: center;
}

/* Green Fresh Page */
.page-template-page-green_fresh .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/greenfresh1.png');
  background-size: cover;
  background-position: center;
}

/* Enki Learning Page */
.page-template-page-enki_learning .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/EnkiStreamofLearning.png');
  background-size: cover;
  background-position: center;
}

/* Adera Media Page */
.page-template-page-adera_media .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/adera-media2.png');
  background-size: cover;
  background-position: center;
}

/* Entertainments Page */
.page-template-page-entertainments .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/entertainments.png');
  background-size: cover;
  background-position: center;
}

/* Contact Page */
.page-template-page-contact .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/contact.png');
  background-size: cover;
  background-position: center;
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2rem;
}
.eco-card {
  background: white;
  border-radius: 20px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-md);
}
.eco-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.eco-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.eco-card:hover i { transform: scale(1.1); }
.eco-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #1e3556;
}
.eco-card p { font-size: 0.75rem; color: #5a6e6e; }
.view-all-btn { text-align: center; margin-top: 1rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  padding: 10px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #1e3556;
  transition: var(--transition-smooth);
}
.btn-outline:hover {
  background: var(--gold);
  gap: 15px;
  transform: translateY(-2px);
}
@media (max-width: 992px) { .ecosystem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ecosystem-grid { grid-template-columns: 1fr; } }

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.mv-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition-smooth);
}
.mv-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.mv-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mv-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1e3556;
}
.mv-card p { color: #5a6e6e; line-height: 1.6; }

.founder-section {
  background: linear-gradient(120deg, #f3efe8, #fffcf7);
  border-radius: 48px;
  padding: 3rem;
  margin-top: 2rem;
}
.founder-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.founder-image { flex: 0 0 300px; }
.founder-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.founder-image img:hover { transform: scale(1.02); }
.founder-content { flex: 1; }
.founder-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: #1e3556;
  margin-bottom: 0.3rem;
}
.founder-title {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.founder-details {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.founder-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #2c3e42;
}
.founder-detail-item i { color: var(--gold); }
.founder-message {
  line-height: 1.8;
  color: #2c3e42;
  margin-top: 1rem;
}
.founder-message p { margin-bottom: 0.8rem; }
@media (max-width: 768px) {
  .founder-section { padding: 2rem; }
  .founder-image { flex: 0 0 100%; }
  .founder-content h3 { font-size: 1.4rem; }
}

.team-section { margin-top: 2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-md);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.team-image {
  height: 280px;
  overflow: hidden;
  background: #e8e2d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-image img { transform: scale(1.05); }
.demo-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
}
.demo-profile i {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.demo-profile span {
  font-size: 0.8rem;
  color: #7c6e3c;
  font-weight: 500;
}
.team-info { padding: 1.5rem; }
.team-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #1e3556;
}
.team-info .team-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.team-info .team-exp {
  font-size: 0.8rem;
  color: #5a6e6e;
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #1e3556, #02565f);
  color: white;
  border-radius: 40px;
  margin-top: 2rem;
}
.cta-section h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-section p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.cta-section .btn-gold { margin: 0.5rem; }
.about-highlight {
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 768px) {
  .founder-details { flex-direction: column; gap: 0.5rem; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section { padding: 2rem 1rem; }
}

/* ========================================
   ACUPUNCTURE CLINIC PAGE SPECIFIC STYLES
   ======================================== */

.highlight-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.compact-card {
  background: white;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
  cursor: default;
}
.compact-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.compact-card i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.compact-card:hover i { transform: scale(1.1); }
.compact-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #1e3556;
}
.compact-text p {
  font-size: 0.7rem;
  color: #5a6e6e;
  margin: 0;
}

/* Services Grid (Acupuncture Clinic) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.service-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  transition: transform 0.2s;
}
.service-card:hover i { transform: scale(1.1); }
.service-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #1e3556;
}
.service-card p {
  font-size: 0.75rem;
  color: #5a6e6e;
}

/* Premium Clinics Wrapper */
.premium-clinics-wrapper {
  background: linear-gradient(145deg, #ffffff, #fdfaf5);
  border-radius: 40px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}
.premium-clinics-wrapper:hover {
  box-shadow: 0 35px 50px -20px rgba(0, 0, 0, 0.2);
}
.premium-clinics-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.premium-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  padding: 0.4rem 1.5rem;
  border-radius: 60px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 0.8rem;
}
.premium-header h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e3556, #02565f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.premium-clinic-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.premium-clinic-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
}
.card-gold-accent {
  background: linear-gradient(135deg, #fef7e8, #fff9ef);
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.card-gold-accent h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3556;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-gold-accent h3 i {
  color: var(--gold);
  font-size: 1rem;
}
.card-body-premium { padding: 1rem 1.2rem; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: #445c5f;
  font-size: 0.8rem;
}
.location-detail i {
  color: var(--gold);
  width: 18px;
  margin-top: 2px;
  font-size: 0.8rem;
}
.phone-link-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  padding: 5px 14px;
  border-radius: 40px;
  color: #1e3556;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.phone-link-premium:hover {
  background: var(--gold);
  color: #1e2a32;
  transform: translateX(5px);
}
.protocol-seal {
  background: linear-gradient(115deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border-radius: 24px;
  padding: 0.8rem 1.2rem;
  margin-top: 1rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}
.protocol-seal:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.protocol-highlight {
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e3556;
}
.protocol-highlight strong { color: var(--gold-dark); }
.premium-partnership {
  background: linear-gradient(135deg, #1e2f3a, #0a1a22);
  border-radius: 32px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}
.premium-partnership:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}
.premium-partnership::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 80px;
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.premium-partnership h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.premium-partnership p {
  max-width: 500px;
  margin: 0.5rem auto;
  color: #e0e0e0;
  font-size: 0.8rem;
}
.premium-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem 0;
}
.premium-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-size: 0.65rem;
  color: #ddd;
  transition: var(--transition-smooth);
}
.premium-feature:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}
.premium-feature i {
  color: var(--gold);
  margin-right: 4px;
}
.premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(95deg, var(--gold), var(--gold-light));
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1e2a32;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.premium-btn:hover {
  transform: translateY(-3px);
  gap: 12px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cahf-premium-wrapper {
  background: linear-gradient(135deg, #ffffff, #fef9f0);
  border-radius: 40px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.cahf-premium-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.cahf-premium-wrapper:hover::after { transform: scaleX(1); }
.cahf-premium-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cahf-header-flex {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cahf-logo-area {
  text-align: center;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.06);
  padding: 0.6rem 1rem;
  border-radius: 32px;
  min-width: 130px;
  transition: var(--transition-smooth);
}
.cahf-logo-area:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: scale(1.02);
}
.cahf-logo {
  max-width: 85px;
  height: auto;
  margin-bottom: 0.3rem;
  transition: transform 0.3s ease;
}
.cahf-logo:hover { transform: scale(1.05); }
.cahf-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
}
.explore-clinics-link {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #1e3556;
  background: white;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: var(--transition-smooth);
}
.explore-clinics-link:hover {
  background: var(--gold);
  color: #1e2a32;
  gap: 8px;
  transform: translateX(3px);
}
.cahf-title-area { flex: 1; }
.cahf-heading {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3556;
  margin-bottom: 0.2rem;
}
.cahf-sub {
  font-size: 0.7rem;
  color: #5a6e6e;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cahf-website {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.cahf-website:hover { text-decoration: underline; }
.legacy-text {
  background: rgba(212, 175, 55, 0.04);
  padding: 1rem 1.2rem;
  border-radius: 24px;
  border-left: 3px solid var(--gold);
  transition: var(--transition-smooth);
}
.legacy-text:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(5px);
}
.legacy-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #2c3e42;
  margin-bottom: 0;
}
.legacy-text strong { color: var(--gold-dark); }
.healer-call {
  background: linear-gradient(115deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
  border-radius: 28px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  transition: var(--transition-smooth);
}
.healer-call:hover { background: rgba(212, 175, 55, 0.12); }
.healer-call span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e3556;
}
.healer-call strong { color: var(--gold-dark); }
.healer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(95deg, #1e3556, #02565f);
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--gold);
}
.healer-link i {
  color: var(--gold);
  transition: transform 0.2s;
}
.healer-link:hover {
  background: var(--gold);
  color: #1e2a32;
  gap: 14px;
  transform: translateY(-2px);
}
.healer-link:hover i { transform: translateX(3px); }

.cta-banner {
  background: linear-gradient(135deg, #1e3556, #02565f);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 40px;
  margin-top: 2rem;
  transition: var(--transition-smooth);
}
.cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.cta-banner p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .premium-header h2 { font-size: 1.6rem; }
  .cahf-heading { font-size: 1.2rem; }
  .cahf-header-flex { flex-direction: column; align-items: center; text-align: center; }
  .healer-call { flex-direction: column; }
  .cta-banner h2 { font-size: 1.4rem; }
  .highlight-compact { gap: 1rem; }
  .compact-card { padding: 0.5rem 1.2rem; }
  .compact-card i { font-size: 1.2rem; }
  .compact-text h4 { font-size: 0.85rem; }
}

/* ========================================
   INSTITUTE PAGE SPECIFIC STYLES
   ======================================== */

.highlight-badge {
  background: linear-gradient(95deg, var(--gold-dark), var(--gold));
  color: #1e2a32;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.uni-logos-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0 0.5rem;
}
.uni-logo-sm {
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.uni-logo-sm:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.uni-logo-sm img {
  max-width: 70px;
  height: auto;
  max-height: 55px;
  object-fit: contain;
}
.uni-logo-sm p {
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.4rem;
  color: #1e3556;
}
.uni-logo-sm small {
  font-size: 0.6rem;
  color: #7c6e3c;
  display: block;
}

/* Courses Grid (Institute) */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.course-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.course-header {
  background: linear-gradient(135deg, #1e3556, #02565f);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
.course-header h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 0;
}
.course-header i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.course-body {
  padding: 1.5rem;
}
.course-body p {
  margin-bottom: 1rem;
  color: #2c3e42;
  line-height: 1.5;
}
.course-body ul {
  list-style: none;
  margin: 1rem 0;
}
.course-body li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2c3e42;
  font-size: 0.9rem;
}
.course-body li i {
  color: var(--gold);
  width: 20px;
}
.course-duration {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #1e3556;
  font-weight: 600;
}

.gallery-section {
  text-align: center;
  margin-top: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img { transform: scale(1.05); }

.cta-business {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 40px;
  margin: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.cta-business::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-business h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  color: white;
}
.cta-business p {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  color: #ccc;
}
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .course-header h3 { font-size: 1.2rem; }
  .cta-business h2 { font-size: 1.5rem; }
  .cta-business { padding: 2rem 1rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn-gold, .btn-group .btn-dark { width: 100%; max-width: 250px; text-align: center; }
  .uni-logos-inline { justify-content: center; gap: 1rem; }
  .uni-logo-sm { padding: 0.3rem 0.8rem; }
  .uni-logo-sm img { max-width: 50px; }
}

/* ========================================
   GREEN RAW PAGE SPECIFIC STYLES
   ======================================== */

.commitment-banner {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 32px;
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}
.commitment-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.commitment-banner h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.commitment-banner p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.product-image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef7e8, #fff9ef);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image i {
  font-size: 5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.product-card:hover .product-image i { transform: scale(1.1); }
.product-info {
  padding: 1.5rem;
  text-align: center;
}
.product-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1e3556;
}
.product-info p {
  color: #5a6e6e;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.product-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.product-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(95deg, #1e3556, #02565f);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.65rem;
  margin-top: 0.5rem;
}
.product-source i {
  font-size: 0.65rem;
  color: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.feature-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1e3556;
}
.feature-card p {
  color: #5a6e6e;
  font-size: 0.85rem;
  line-height: 1.5;
}

.category-section {
  margin: 3rem 0;
}
.category-title {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: #1e3556;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}
.category-title i {
  color: var(--gold);
  font-size: 1.5rem;
}
.category-title h3 {
  margin: 0;
  font-size: 1.8rem;
}

.rice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.rice-item {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.rice-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: linear-gradient(135deg, #ffffff, #fef9f0);
}
.rice-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.rice-item h4 {
  font-size: 1rem;
  color: #1e3556;
  margin-bottom: 0.2rem;
}
.rice-item p {
  font-size: 0.7rem;
  color: #7c6e3c;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .commitment-banner { padding: 1.5rem; }
  .commitment-banner h3 { font-size: 1.4rem; }
  .category-title { font-size: 1.4rem; }
  .category-title h3 { font-size: 1.4rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner { padding: 1.5rem; }
  .product-info h3 { font-size: 1.1rem; }
}

/* ========================================
   GREEN FRESH PAGE SPECIFIC STYLES
   ======================================== */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
.pillar-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition-smooth);
}
.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  transform: scale(1.05);
}
.pillar-icon i {
  font-size: 2.5rem;
  color: var(--gold);
}
.pillar-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #1e3556;
}
.pillar-card p {
  color: #5a6e6e;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.product-showcase-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.product-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.product-showcase-icon {
  background: linear-gradient(135deg, #fef7e8, #fff9ef);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-showcase-icon i {
  font-size: 4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.product-showcase-card:hover .product-showcase-icon i { transform: scale(1.1); }
.product-showcase-info {
  padding: 1.5rem;
}
.product-showcase-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1e3556;
}
.product-showcase-info p {
  color: #5a6e6e;
  font-size: 0.85rem;
  line-height: 1.5;
}
.organic-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 0.5rem;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.sustainability-stat {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.sustainability-stat:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.sustainability-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-secondary);
}
.sustainability-stat p {
  font-size: 0.85rem;
  color: #5a6e6e;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .sustainability-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .sustainability-stats {
    grid-template-columns: 1fr;
  }
}

.vision-quote {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 40px;
  padding: 3rem;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}
.vision-quote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.vision-quote i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.vision-quote h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: white;
  margin-bottom: 1rem;
}
.vision-quote p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .vision-quote { padding: 1.5rem; }
  .vision-quote h3 { font-size: 1.2rem; }
  .vision-quote p { font-size: 0.85rem; }
}

/* ========================================
   ENKI LEARNING PAGE SPECIFIC STYLES
   ======================================== */

/* Page Hero text styling override */
.page-template-page-enki_learning .page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}
.page-template-page-enki_learning .page-hero p {
  font-size: 1rem;
  line-height: 1.6;
}

.stats-bar-blue {
  background: linear-gradient(135deg, #1e3a5f, #2c4a7a);
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  color: white;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 0;
}
.stat-number-blue {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
@media (max-width: 768px) {
  .stats-bar-blue {
    gap: 1rem;
    padding: 1rem;
  }
  .page-template-page-enki_learning .page-hero h1 { font-size: 2rem; }
  .page-template-page-enki_learning .page-hero p { font-size: 0.85rem; }
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.focus-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(30,58,95,0.15);
  box-shadow: var(--shadow-md);
}
.focus-card:hover {
  transform: translateY(-8px);
  border-color: #1e3a5f;
  box-shadow: var(--shadow-lg);
}
.focus-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30,58,95,0.1), rgba(44,74,122,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.focus-icon i {
  font-size: 2.5rem;
  color: #1e3a5f;
}
.focus-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1e3a5f;
}
.focus-card p {
  font-size: 0.9rem;
  color: #5a6e6e;
  line-height: 1.6;
}

.curriculum-section {
  background: linear-gradient(135deg, #eef2f7, #e8edf3);
  border-radius: 48px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.curriculum-item {
  text-align: center;
  padding: 1rem;
}
.curriculum-item i {
  font-size: 2rem;
  color: #1e3a5f;
  margin-bottom: 0.8rem;
}
.curriculum-item h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e3a5f;
}
.curriculum-item p {
  font-size: 0.8rem;
  color: #5a6e6e;
}

.admissions-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  background: white;
  padding: 1.5rem;
  border-radius: 28px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(30,58,95,0.1);
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.step-number {
  width: 50px;
  height: 50px;
  background: #1e3a5f;
  color: var(--gold);
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e3a5f;
}
.step p {
  font-size: 0.8rem;
  color: #5a6e6e;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.testimonial-card i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2c3e42;
}
.testimonial-card h4 {
  margin-top: 1rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: #1e3556;
}
.testimonial-card span {
  font-size: 0.75rem;
  color: #7c6e3c;
}

.cta-banner-blue {
  background: linear-gradient(135deg, #1e3a5f, #2c4a7a);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 40px;
  margin-top: 2rem;
}
.cta-banner-blue h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-banner-blue p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.btn-blue {
  background: #1e3a5f;
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  color: white;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  margin: 0.5rem;
  transition: 0.2s;
}
.btn-blue:hover {
  background: #2c4a7a;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .curriculum-section { padding: 1.5rem; }
  .admissions-steps { gap: 1rem; }
  .step { min-width: 150px; padding: 1rem; }
  .cta-banner-blue h2 { font-size: 1.5rem; }
}

/* ========================================
   ADERA MEDIA PAGE SPECIFIC STYLES
   ======================================== */

/* Services Grid (Adera Media) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  transform: scale(1.05);
}
.service-icon i {
  font-size: 2.5rem;
  color: var(--gold);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.capability-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.capability-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.capability-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.capability-card h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e3556;
}
.capability-card p {
  font-size: 0.8rem;
  color: #5a6e6e;
}

.work-with-us {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 40px;
  padding: 3rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}
.work-with-us:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.work-with-us h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.work-with-us p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.portfolio-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.portfolio-image {
  height: 250px;
  background: linear-gradient(135deg, #d4af3720, #e9c46820);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-image i {
  font-size: 4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-image i { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(30,53,86,0.95), rgba(2,86,95,0.95));
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.portfolio-overlay p {
  font-size: 0.7rem;
  color: white;
}
@media (max-width: 768px) {
  .work-with-us { padding: 1.5rem; }
  .work-with-us h2 { font-size: 1.5rem; }
  .btn-group { flex-direction: column; align-items: center; }
}

/* ========================================
   ENTERTAINMENTS PAGE SPECIFIC STYLES
   ======================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.event-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.event-image {
  height: 220px;
  background: linear-gradient(135deg, #d4af3720, #e9c46820);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.event-image i {
  font-size: 4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.event-card:hover .event-image i { transform: scale(1.1); }
.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: #1e2a32;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
}
.event-info {
  padding: 1.5rem;
  text-align: center;
}
.event-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1e3556;
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.event-info p {
  font-size: 0.85rem;
  color: #5a6e6e;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--gold);
  padding: 8px 20px;
  border-radius: 40px;
  color: #1e3556;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.event-btn:hover {
  background: var(--gold);
  gap: 12px;
  transform: translateY(-2px);
}

.featured-event {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 48px;
  padding: 2.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}
.featured-event:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.featured-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.featured-info { flex: 1; }
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1e2a32;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.featured-info h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
}
.featured-info .artist {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.featured-date {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}
.featured-date i {
  color: var(--gold);
  margin-right: 8px;
}
.featured-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.featured-image {
  flex: 0 0 300px;
}
.featured-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.featured-image:hover img { transform: scale(1.02); }
.btn-gold-large {
  background: var(--gold);
  border: none;
  padding: 12px 32px;
  font-weight: 700;
  color: #1e2a32;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.btn-gold-large:hover {
  background: var(--gold-light);
  gap: 15px;
  transform: translateY(-2px);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
.program-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.program-icon i {
  font-size: 2.5rem;
  color: var(--gold);
}
.program-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1e3556;
}
.program-card p {
  font-size: 0.85rem;
  color: #5a6e6e;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .featured-event { padding: 1.5rem; }
  .featured-grid { flex-direction: column; }
  .featured-image { flex: 0 0 auto; width: 100%; }
  .featured-info h2 { font-size: 1.5rem; }
  .featured-info .artist { font-size: 1.2rem; }
  .programs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3556;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-card h3 i {
  color: var(--gold);
  font-size: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail i {
  width: 35px;
  height: 35px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition-smooth);
}
.contact-detail:hover i {
  background: var(--gold);
  color: #1e2a32;
}
.contact-detail .detail-content { flex: 1; }
.contact-detail .detail-content h4 {
  font-size: 0.85rem;
  color: #5a6e6e;
  margin-bottom: 0.2rem;
}
.contact-detail .detail-content p, 
.contact-detail .detail-content a {
  font-size: 1rem;
  color: #1e3556;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.contact-detail .detail-content a:hover { color: var(--gold); }

.contact-form-wrapper {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3556;
}
.contact-form-wrapper p {
  color: #5a6e6e;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3556;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: var(--transition-smooth);
  background: #fefcf8;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group textarea { resize: vertical; }
.submit-btn {
  background: linear-gradient(95deg, #1e3556, #02565f);
  color: white;
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(95deg, #02565f, #1e3556);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.business-hours {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  border-radius: 28px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.business-hours h4 {
  font-family: var(--font-secondary);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.business-hours p {
  color: #e0e0e0;
  font-size: 0.85rem;
}

.quick-connect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.quick-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-decoration: none;
}
.quick-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.quick-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.quick-card h4 {
  font-size: 0.9rem;
  color: #1e3556;
  margin-bottom: 0.2rem;
}
.quick-card p {
  font-size: 0.7rem;
  color: #5a6e6e;
}
@media (max-width: 768px) {
  .quick-connect {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .quick-connect {
    grid-template-columns: 1fr;
  }
}

.map-container {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}


/* ===== ORGANICS PAGE (COMBINED) SPECIFIC STYLES ===== */

/* Page Hero Background Override for Organics Page */
.page-template-page-organics .page-hero {
  background: linear-gradient(135deg, rgba(30,47,58,0.75), rgba(15,42,47,0.8)), url('https://acudhaam.com/wp-content/uploads/2026/05/organics.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Organics Grid - Two Column Layout */
.organics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 992px) {
  .organics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Organics Card */
.organics-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.organics-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.organics-card-header {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.organics-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.organics-card:hover .organics-card-header img {
  transform: scale(1.05);
}
.organics-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #1e2a32;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.organics-card-content {
  padding: 2rem;
  flex: 1;
}
.organics-card-content h2 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: #1e3556;
  margin-bottom: 0.5rem;
}
.organics-tagline {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.organics-description {
  color: #5a6e6e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Organics Features List */
.organics-features {
  list-style: none;
  margin: 1rem 0;
}
.organics-features li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #2c3e42;
}
.organics-features li i {
  color: var(--gold);
  width: 20px;
}

/* Organics Stats */
.organics-stats {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.organics-stat {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}
.organics-stat .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-secondary);
}
.organics-stat .stat-label {
  font-size: 0.65rem;
  color: #5a6e6e;
}

/* Explore Button */
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(95deg, #1e3556, #02565f);
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}
.explore-btn i {
  transition: transform 0.2s;
}
.explore-btn:hover {
  background: var(--gold);
  color: #1e2a32;
  gap: 15px;
}
.explore-btn:hover i {
  transform: translateX(5px);
}

/* Comparison Table */
.comparison-table {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.comparison-table h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: #1e3556;
  margin-bottom: 1.5rem;
  text-align: center;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.comparison-header {
  background: linear-gradient(135deg, #1e2f3a, #0f2a2f);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
}
.comparison-item {
  padding: 0.8rem;
  text-align: center;
  background: #fefcf8;
  border-radius: 8px;
  font-size: 0.85rem;
}
.comparison-item i.fa-check {
  color: #28a745;
}
.comparison-item i.fa-times {
  color: #dc3545;
}
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .comparison-header {
    display: none;
  }
  .comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .comparison-item::before {
    content: attr(data-label);
    font-weight: 600;
    color: #1e3556;
  }
}

/* CTA Section */
.organics-cta {
  background: linear-gradient(135deg, #1e3556, #02565f);
  border-radius: 40px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin-top: 2rem;
}
.organics-cta h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.organics-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.organics-cta .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .organics-card-header {
    height: 220px;
  }
  .organics-card-content h2 {
    font-size: 1.4rem;
  }
  .organics-cta h2 {
    font-size: 1.5rem;
  }
  .organics-cta {
    padding: 2rem 1rem;
  }
}

/* ========================================
   MOBILE FIXES - WHO WE ARE SECTION
   Image appears BELOW text on mobile
   ======================================== */

@media (max-width: 768px) {
  /* Reorder Who We Are section: Text FIRST, Image BELOW */
  .section-container .two-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* Text comes first (Heading + Paragraphs) */
  .section-container .two-col .content-text {
    order: 1;
  }

  /* Image comes AFTER the text */
  .section-container .two-col .content-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 1rem 0;
  }

  /* Image styling - make it visually prominent */
  .section-container .two-col .content-image img {
    width: 85%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
  }

  /* Center align section title for better mobile readability */
  .section-container .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  /* Add spacing between heading, text, and image */
  .section-container .two-col .content-text .section-title {
    margin-bottom: 1.5rem;
  }

  .section-container .two-col .content-text p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 0.5rem;
  }

  .section-container .two-col .content-image {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  /* Adjust container padding for mobile */
  .section-container {
    padding: 2rem 1.25rem;
  }

  /* Optional: Add subtle separation */
  .section-container .two-col .content-image {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
  }
}

/* For very small devices (below 480px) - increase image size further */
@media (max-width: 480px) {
  .section-container .two-col .content-image img {
    width: 95%;
    max-width: 100%;
  }
}

/* Keep existing desktop/tablet layout intact for larger screens */
@media (min-width: 769px) {
  .section-container .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  /* Desktop: Text on left (order 1), Image on right (order 2) */
  .section-container .two-col .content-text {
    order: 1;
  }

  .section-container .two-col .content-image {
    order: 2;
  }

  /* Desktop image styling */
  .section-container .two-col .content-image img {
    width: 100%;
    border-radius: 20px;
    height: auto;
    object-fit: cover;
  }

  /* Desktop text alignment */
  .section-container .two-col .content-text {
    text-align: left;
  }

  .section-container .section-title {
    text-align: left;
  }

  /* Remove mobile-specific border */
  .section-container .two-col .content-image {
    border-top: none;
    padding-top: 0;
  }
}

/* ========================================
   MOBILE FIXES - INSTITUTE PIONEERING EXCELLENCE SECTION
   Images appear BELOW all text content on mobile
   ======================================== */

@media (max-width: 768px) {
  .section-container .two-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* Text content comes FIRST (Heading + Badge + Paragraphs + University Logos) */
  .section-container .two-col .content-text {
    order: 1;
  }

  /* ALL images come AFTER the text content */
  .section-container .two-col .content-image {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  /* Style each image in the stack */
  .section-container .two-col .content-image img {
    width: 85%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
  }

  /* Remove inline margin-bottom and use gap instead */
  .section-container .two-col .content-image img[style*="margin-bottom"] {
    margin-bottom: 0 !important;
  }

  /* Center align section title for better mobile readability */
  .section-container .section-title {
    text-align: center;
  }

  /* Center align the highlight badge */
  .section-container .highlight-badge {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  /* Center align university logos on mobile */
  .section-container .uni-logos-inline {
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 0.5rem;
  }

  /* Adjust container padding for mobile */
  .section-container {
    padding: 2rem 1.25rem;
  }

  /* Text paragraph spacing */
  .section-container .two-col .content-text p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    text-align: left;
  }

  /* Optional: Add subtle separation between text and images */
  .section-container .two-col .content-image {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
}

/* For very small devices (below 480px) - increase image size */
@media (max-width: 480px) {
  .section-container .two-col .content-image img {
    width: 95%;
    max-width: 100%;
  }
}

/* Keep existing desktop/tablet layout intact for larger screens */
@media (min-width: 769px) {
  .section-container .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Desktop: Text on left, Images on right */
  .section-container .two-col .content-text {
    order: 1;
  }

  .section-container .two-col .content-image {
    order: 2;
  }

  /* Desktop image styling - stacked vertically */
  .section-container .two-col .content-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .section-container .two-col .content-image img {
    width: 100%;
    border-radius: 20px;
    height: auto;
    object-fit: cover;
  }

  /* Desktop text alignment */
  .section-container .two-col .content-text {
    text-align: left;
  }

  .section-container .section-title {
    text-align: left;
  }

  /* Desktop: highlight badge left aligned */
  .section-container .highlight-badge {
    display: inline-block;
    text-align: left;
    width: auto;
  }

  /* Desktop: university logos left aligned */
  .section-container .uni-logos-inline {
    justify-content: flex-start;
  }

  /* Remove mobile-specific border */
  .section-container .two-col .content-image {
    border-top: none;
    padding-top: 0;
  }
}

/* ========================================
   WHITE COLOUR FOR HERO SLIDE SUBTITLE
   ======================================== */
.carousel-slide .slide-subtitle {
  color: #ffffff !important;
}

.slide-value-proposition {
  font-style: italic;
  color: #ffffff;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 4px;
}

/* ========================================
   THUMBNAIL LABEL
   ======================================== */
.thumbnail-label {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: normal !important;
  width: 100%;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  margin-top: 8px;
  box-sizing: border-box;
}
.thumbnail-item:hover .thumbnail-label {
  background: rgba(212,175,55,0.9);
  color: #222051;
}

/* ========================================
   CONTACT FORM 7 STYLING
   ======================================== */
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-wrapper .wpcf7-form p { margin: 0; }
.contact-form-wrapper .wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}
.contact-form-wrapper .wpcf7-form input,
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
  outline: none;
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.contact-form-wrapper .wpcf7-submit {
  background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-form-wrapper .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}
.contact-form-wrapper .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.contact-form-wrapper .wpcf7-mail-sent-ok {
  border-color: #28a745;
  background: #d4edda;
  color: #155724;
}
.contact-form-wrapper .wpcf7-validation-errors {
  border-color: #dc3545;
  background: #f8d7da;
  color: #721c24;
}
.contact-form-wrapper .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.contact-form-wrapper .wpcf7-spinner {
  position: absolute;
  margin-left: 10px;
}

/* ========================================
   MOBILE GALLERY - HORIZONTAL SCROLLABLE CAROUSEL
   ======================================== */

/* Mobile & Tablet Styles */
@media (max-width: 1024px) {
  .gallery-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
  }

  .gallery-section .gallery-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 0.5rem 1rem 1.5rem 1rem !important;
    margin: 0 -1rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }

  .gallery-section .gallery-grid::-webkit-scrollbar {
    height: 4px;
  }

  .gallery-section .gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .gallery-section .gallery-grid::-webkit-scrollbar-thumb {
    background: #c9a03d;
    border-radius: 10px;
  }

  .gallery-section .gallery-item {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    height: 280px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }

  .gallery-section .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  /* Subtle gradient overlay */
  .gallery-section .gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
  }

  /* Spacing and centering */
  .gallery-section .section-title {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .gallery-section > p {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
  }

  /* Swipe hint */
  .gallery-section {
    position: relative;
  }

  .gallery-section::after {
    content: '← Swipe to see more →';
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #7c6e3c;
    margin-top: 0.75rem;
    letter-spacing: 0.5px;
  }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-section .gallery-item {
    flex: 0 0 45% !important;
    height: 300px !important;
  }
  
  .gallery-section::after {
    content: '← Swipe to browse gallery →';
    font-size: 0.8rem;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .gallery-section .gallery-item {
    flex: 0 0 90% !important;
    height: 320px !important;
  }
}

/* Desktop - Keep original grid layout */
@media (min-width: 1025px) {
  .gallery-section .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 2rem 0 0 0 !important;
  }

  .gallery-section .gallery-item {
    flex: none !important;
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
  }

  .gallery-section .gallery-item:hover {
    transform: translateY(-5px);
  }

  .gallery-section .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
  }

  .gallery-section .gallery-item:hover img {
    transform: scale(1.05);
  }

  /* Remove swipe hint on desktop */
  .gallery-section::after {
    display: none !important;
  }
  
  .gallery-section .gallery-item::after {
    display: none;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .top-bar, .news-ticker, .main-nav, .mobile-menu-btn, .footer, .carousel-btn, .dots-container {
    display: none;
  }
  body { background: white; color: black; }
  .hero-carousel { height: auto; position: static; }
  .carousel-slide { position: static; opacity: 1; margin-bottom: 20px; page-break-inside: avoid; }
  .carousel-slide:not(:first-child) { display: none; }
}

