/* 
   Mahabodhi Psycho-Spiritual Wellness Clinic & Research Institute
   Custom Stylesheet
   Theme: Luxury Wellness (Cream, Forest Green, and Warm Gold)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-cream: #FAF7F2;
    --bg-cream-dark: #F3ECE2;
    --color-green: #1E352F;
    --color-green-light: #2D4C43;
    --color-green-dark: #12221E;
    --color-gold: #B89047;
    --color-gold-dark: #9A7432;
    --color-gold-light: #E0C79B;
    --color-gold-pale: #F3EBDD;
    --text-dark: #2E3E39;
    --text-muted: #5C6B64;
    --text-light: #FFFFFF;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-green);
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-green);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 133, 88, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-gold-dark) !important;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.2);
}

.btn-green {
    background-color: var(--color-green);
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-green);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-green:hover {
    background-color: var(--color-green-light);
    border-color: var(--color-green-light);
    transform: translateY(-2px);
}

/* Floating Navigation Bar */
.navbar-custom {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 100px;
    padding: 0.6rem 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(30, 53, 47, 0.05);
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background-color: rgba(30, 53, 47, 0.95);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .navbar-brand span {
    color: var(--text-light);
}

.navbar-custom.scrolled .navbar-brand img {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.2));
}

.navbar-custom.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: var(--color-gold) !important;
}

.navbar-custom.scrolled .nav-phone {
    color: var(--color-gold) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 50%;
    padding: 4px;
    background-color: #1e352f;
    border: 1.5px solid #9f7935;
    box-shadow: 0 0 10px rgba(224, 199, 155, 0.6);
}

.navbar-brand span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-green);
    transition: var(--transition-smooth);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-dark) !important;
}

.nav-phone {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(90deg, #24352bd1 0%, #24352b73 55%, #24352b26 100%),
        url('../hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    overflow: hidden;
}

/* For browsers that do not support attachment fixed well */
@media (max-width: 991px) {
    .hero-section {
        background-attachment: scroll;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.8rem;
    background-color: rgba(36, 53, 43, 0.55);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.8rem;
    color: var(--text-light);
}

.hero-title span {
    font-weight: 600;
    font-style: italic;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section .btn-gold {
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    color: var(--text-light) !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(30, 53, 47, 0.15);
}

.hero-section .btn-gold:hover {
    background-color: var(--color-green-light);
    border-color: var(--color-green-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 53, 47, 0.25);
}

.hero-section .btn-outline-gold {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--color-gold-light);
    color: var(--text-light) !important;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-section .btn-outline-gold:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 144, 71, 0.25);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 420px;
    background-color: #0D1916;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(30, 53, 47, 0.15);
    padding: 0;
    z-index: 2;
    animation: floatShiva 6s ease-in-out infinite;
}

/* Glowing gold backdrop and mandala ring behind the floating card */
.hero-image-wrapper-outer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.hero-image-wrapper-outer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(184, 144, 71, 0.28) 0%, rgba(250, 247, 242, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper-outer::after {
    content: '';
    position: absolute;
    width: 96%;
    height: 96%;
    max-width: 445px;
    max-height: 445px;
    aspect-ratio: 1/1;
    border: 1px dashed #9f7935;
    border-radius: 50%;
    animation: rotateSlow 50s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-shiva-img {
    max-width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: normal;
    transition: var(--transition-smooth);
}

.hero-shiva-img:hover {
    transform: scale(1.03);
}

@keyframes floatShiva {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-glow {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* Stats Section */
.stats-section {
    background-color: var(--text-light);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stats-card {
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(197, 168, 128, 0.15);
}

.stats-card:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .stats-card {
        border-right: none;
        border-bottom: 1px solid rgba(197, 168, 128, 0.15);
        padding: 1.5rem 1rem;
    }
    .stats-card:last-child {
        border-bottom: none;
    }
}

.stats-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-gold-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Section Header */
.section-tag {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold-dark);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-green);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-title span {
    font-style: italic;
    font-weight: 600;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.about-mandala-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(243, 235, 221, 0.6) 0%, rgba(250, 247, 242, 0) 70%);
}

.about-mandala-img {
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(197, 168, 128, 0.15));
    animation: rotateSlow 80s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--text-light);
    border: 1px solid var(--color-gold-light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(30, 53, 47, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 220px;
}

.about-badge-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.about-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-green);
    line-height: 1.2;
}

.about-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.about-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-bullet-list li::before {
    content: '\F272'; /* Bootstrap Icon check-circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-gold-dark);
    font-size: 1.2rem;
}

/* Vision & Mission Cards */
.philosophy-card {
    background-color: var(--text-light);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(30, 53, 47, 0.02);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.1);
    border-color: var(--color-gold-light);
}

.philosophy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-gold-pale);
    color: var(--color-gold-dark);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.philosophy-card:hover .philosophy-icon {
    background-color: var(--color-gold);
    color: var(--text-light);
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.philosophy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-cream-dark);
}

.card-service {
    background-color: var(--text-light);
    border: 1px solid rgba(184, 144, 71, 0.22);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(184, 144, 71, 0.02);
    transition: var(--transition-smooth);
}

.card-service:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 30px rgba(184, 144, 71, 0.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--color-gold-pale);
    border: 1px solid rgba(184, 144, 71, 0.25);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.6rem;
    transition: var(--transition-smooth);
}

.card-service:hover .service-icon {
    background-color: var(--color-gold);
    color: var(--text-light);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold-dark);
    opacity: 0.55;
    font-family: var(--font-sans);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 0.8rem;
}

.service-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-arrow {
    font-size: 1.1rem;
    color: var(--color-gold-dark);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.card-service:hover .service-arrow {
    color: var(--color-green);
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    color: var(--color-gold);
    transform: scale(1.1);
}

.process-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.process-divider {
    position: absolute;
    top: 25%;
    right: -25%;
    width: 50%;
    height: 1px;
    border-top: 1px dashed var(--color-gold-light);
}

@media (max-width: 991px) {
    .process-divider {
        display: none;
    }
    .process-step {
        margin-bottom: 2rem;
    }
}

/* Delivery Section (Dark Green) */
.delivery-section {
    padding: 80px 0;
    background-color: var(--color-green);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.delivery-grid-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.delivery-grid-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.delivery-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.delivery-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.delivery-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* CTA Section (Gold Banner) */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.cta-box {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    border-radius: 24px;
    padding: 4.5rem;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 20px 50px rgba(166, 133, 88, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 80%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.2rem auto;
    font-weight: 300;
}

.cta-box .btn-green {
    box-shadow: 0 4px 15px rgba(30, 53, 47, 0.2);
}

.cta-box .btn-green:hover {
    box-shadow: 0 6px 20px rgba(30, 53, 47, 0.35);
}

@media (max-width: 767px) {
    .cta-box {
        padding: 3rem 1.5rem;
    }
    .cta-title {
        font-size: 2rem;
    }
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.founder-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(30, 53, 47, 0.08);
}

/* Fallback Stylized Portrait if founder.jpg not present */
.founder-photo-fallback {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--color-gold);
    border-radius: 24px;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.founder-photo-fallback-icon {
    font-size: 5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: pulseSlow 4s ease-in-out infinite;
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 10%;
    border: 3px solid var(--color-gold);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.founder-img-wrapper:hover .founder-img {
    transform: scale(1.03);
}

.founder-name {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-green);
    margin-bottom: 0.2rem;
}

.founder-degrees {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.founder-title-current {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-title-current::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.founder-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    border-left: 3px solid var(--color-gold);
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

/* Tabs UI for Founder Details */
.founder-tabs {
    border-bottom: 1px solid rgba(197, 168, 128, 0.2) !important;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.founder-tab-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted) !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    background: transparent !important;
    padding: 0.8rem 1.2rem !important;
    transition: var(--transition-smooth);
}

.founder-tab-link:hover,
.founder-tab-link.active {
    color: var(--color-green) !important;
    border-bottom-color: var(--color-gold) !important;
}

.tab-pane-content {
    background-color: var(--text-light);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--color-gold-dark);
    margin-top: 3px;
}

.info-text strong {
    color: var(--color-green);
}

.info-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Media & Video Gallery Section */
.media-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.media-tabs {
    border-bottom: none !important;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 15px;
}

.media-tab-link {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.6rem 2.2rem !important;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(184, 144, 71, 0.03);
}

.media-tab-link:not(.active) {
    color: var(--color-green) !important;
    border: 1px solid rgba(184, 144, 71, 0.3) !important;
    background-color: var(--text-light) !important;
}

.media-tabs .media-tab-link:hover {
    border-color: var(--color-gold) !important;
    background-color: var(--bg-cream-dark) !important;
    color: var(--color-green) !important;
}

.media-tabs .media-tab-link.active,
.media-tabs .nav-link.active {
    color: var(--text-light) !important;
    background-color: var(--color-green) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 8px 20px rgba(30, 53, 47, 0.15) !important;
    font-weight: 600;
}

.video-card {
    background-color: var(--text-light);
    border: 1px solid var(--color-gold-pale);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 53, 47, 0.04);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(30, 53, 47, 0.08);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-cream-dark);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    height: 320px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 53, 47, 0) 40%, rgba(30, 53, 47, 0.85) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.gallery-item-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold-light);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
    position: relative;
}

.contact-card-info {
    background-color: var(--color-green);
    color: var(--text-light);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(30, 53, 47, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card-info::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.contact-info-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
    background-color: var(--color-gold);
    color: var(--text-light);
    transform: scale(1.05);
}

.contact-detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-detail-value a {
    color: var(--text-light);
}

.contact-detail-value a:hover {
    color: var(--color-gold);
}

.contact-card-form {
    background-color: var(--text-light);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.form-control-custom {
    background-color: var(--bg-cream);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 10px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background-color: var(--text-light);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
    outline: none;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .contact-card-info, .contact-card-form {
        padding: 2.5rem 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--color-green-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 55px;
    width: 55px;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.1));
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background-color: var(--color-gold);
    color: var(--text-light);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.footer-contact-icon {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-text {
    font-size: 0.9rem;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-text a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* Lightbox Modal (Quick view) */
.gallery-modal .modal-content {
    background-color: transparent;
    border: none;
}

.gallery-modal .modal-body {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-modal .btn-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Custom styles for Founder Carousel controls */
#founderCarousel .carousel-control-prev-icon,
#founderCarousel .carousel-control-next-icon {
    background-color: rgba(30, 53, 47, 0.75);
    border-radius: 50%;
    padding: 1.1rem;
    background-size: 50%;
    border: 1px solid var(--color-gold);
}

#founderCarousel .carousel-indicators [data-bs-target] {
    background-color: var(--color-gold);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

#founderCarousel .carousel-indicators .active {
    background-color: var(--color-green);
    width: 12px;
    height: 12px;
}

/* Custom highlight styling for the Book Session navbar button */
.btn-nav-highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%) !important;
    border: 1px solid var(--color-gold-light) !important;
    color: var(--text-light) !important;
    box-shadow: 0 4px 15px rgba(184, 144, 71, 0.3) !important;
    transition: var(--transition-smooth);
    animation: pulseHighlight 2.2s infinite alternate;
}

.btn-nav-highlight:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%) !important;
    border-color: var(--color-gold-light) !important;
    transform: scale(1.05) translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(184, 144, 71, 0.6) !important;
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 4px rgba(184, 144, 71, 0.4), 0 4px 12px rgba(184, 144, 71, 0.15);
    }
    100% {
        box-shadow: 0 0 14px rgba(184, 144, 71, 0.7), 0 4px 15px rgba(184, 144, 71, 0.3);
    }
}

/* Gallery Category Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-green) !important;
    border: 1px solid rgba(184, 144, 71, 0.25) !important;
    background-color: var(--text-light) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover {
    border-color: var(--color-gold) !important;
    background-color: var(--bg-cream-dark) !important;
    color: var(--color-green) !important;
}

.gallery-filter-btn.active {
    color: var(--text-light) !important;
    background-color: var(--color-green) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 4px 15px rgba(30, 53, 47, 0.15) !important;
}

.gallery-item-col {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
