/* Final Dark Mode Footer Transparency Fix */
@media (prefers-color-scheme: dark) {
    .footer,
    .footer-bottom {
        background: none !important;
        background-color: transparent !important;
    }
}
/* Main Styles */

/* CSS Variables - Warm Sunset Journey Theme */
:root {
    /* Colors from the sunset image */
    --primary-orange: #FF6B35;          /* Warm sunset orange */
    --accent-yellow: #F7D794;           /* Soft sunset yellow */
    --deep-navy: #2C3E50;              /* Deep evening blue */
    --ocean-blue: #3498DB;             /* Clear ocean blue */
    --light-blue: #85C1E9;             /* Light sky blue */
    --warm-red: #E74C3C;               /* Sunset red accent */
    
    /* Neutral base colors */
    --white: #ffffff;                   /* Pure white background */
    --light-gray: #F8F9FA;             /* Very light gray */
    --text-color: #2C3E50;             /* Primary text color */
    --text-dark: #2C3E50;              /* Deep navy for text */
    --text-medium: #5D6D7E;            /* Medium gray text */
    --text-light: #85929E;             /* Light gray text */
    --border-light: #E8F4FD;           /* Very light blue border */
    
    /* Gradients inspired by sunset */
    --gradient-sunset: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-yellow) 100%);
    --gradient-ocean: linear-gradient(135deg, var(--ocean-blue) 0%, var(--light-blue) 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #fff5f0 100%);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 24px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    
    /* Typography */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 64px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Shadows - Soft and Warm */
    --shadow-xs: 0 1px 2px 0 rgba(255, 107, 53, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(255, 107, 53, 0.1), 0 1px 2px 0 rgba(255, 107, 53, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(255, 107, 53, 0.1), 0 2px 4px -1px rgba(255, 107, 53, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(255, 107, 53, 0.1), 0 4px 6px -2px rgba(255, 107, 53, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(255, 107, 53, 0.1), 0 10px 10px -5px rgba(255, 107, 53, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(255, 107, 53, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.15s ease-in-out;
    --transition: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

/* Body Background for Floating Panels */
body {
    font-family: "Rokkitt", serif;
    line-height: 1.6;
    color: var(--text-color);
    background: url('../images/wave.webp') center/cover no-repeat fixed !important;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Wave background override: apply full-page and hero backgrounds with wave image */
html, body, .hero {
    background: url('../images/wave.webp') no-repeat center center fixed !important;
    background-size: cover !important;
    background-color: transparent !important;
}

/* Custom Font Classes */
.pattaya-regular {
    font-family: "Pattaya", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.rokkitt {
    font-family: "Rokkitt", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    font-family: "Pattaya", sans-serif;
    font-size: var(--font-size-2xl);
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: "Rokkitt", serif;
    font-size: var(--font-size-lg);
    font-weight: 500;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-weight-extrabold);
}

/* Force hero subheader AKA Mandy color in all modes */
.hero-aka {
    color: #071345 !important;
}

@media (prefers-color-scheme: dark) {
    .hero-aka {
        color: #071345 !important;
    }
}

/* Enhanced Button Styles - Sales Focused */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.large-btn {
    padding: 18px 36px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-lg);
}

.calendly-btn {
    position: relative;
}

.calendly-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.calendly-btn:hover::before {
    left: 100%;
}

.cta-nav {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
}

.cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Top Color Stripe */
.top-stripe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.stripe-color-1 {
    flex: 1;
    background-color: #071446;
    width: 100%;
}

.stripe-color-2 {
    flex: 1;
    background-color: #1e68ff;
    width: 100%;
}

.stripe-color-3 {
    flex: 1;
    background-color: #58b3ff;
    width: 100%;
}

/* Enhanced Header Styles */
.header {
    position: fixed;
    top: 12px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.nav-logo a {
    font-family: "Pattaya", sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 92px; /* Account for fixed header (80px) + top stripe (12px) */
}

/* Hero Section with Parallax Wave Background */
:root {
    --parallax-x: 0vw;
}

.hero {
    padding: 120px 0 100px 0;
    background: url('../images/wave.webp') center/cover no-repeat !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200vw; /* Make image twice the viewport width for scroll effect */
    height: 100vh;
    background: url('../images/wave.webp') left center/cover no-repeat !important;
    z-index: -1;
    transform: translateX(var(--parallax-x));
    transition: none; /* Remove transition for smooth scrolling */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.hero-name-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-name {
    font-family: "Pattaya", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-profile-inline {
    width: auto;
    height: clamp(3rem, 8vw, 6rem);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-profile-inline:hover {
    transform: scale(1.05);
}

.hero-profile-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-aka {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-medium);
    margin: 0 0 1rem 0;
    color: #071345 !important;
    font-style: italic;
    opacity: 0.9;
}

.animated-roles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.roles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
    min-height: 50px;
}

.role-prefix {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--white);
}

.role-text {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    min-height: auto;
    text-align: center;
    transition: all 0.5s ease;
    text-shadow: none;
    opacity: 0;
    transform: translateX(-30px);
}

/* Typing animation styles */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rollToRight {
    0% {
        opacity: 0;
        transform: translateX(-30px) rotate(-10deg);
    }
    50% {
        transform: translateX(0) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes gentleTumble {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-5px) rotate(-2deg);
    }
    50% {
        transform: translateX(3px) rotate(1deg);
    }
    75% {
        transform: translateX(-2px) rotate(-1deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }
}

.role-text.slide-in {
    animation: slideInFromLeft 0.6s ease forwards;
}

.role-text.roll-in {
    animation: rollToRight 0.8s ease forwards;
}

.role-text.tumble {
    animation: gentleTumble 0.8s ease-in-out;
}

.role-text.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.role-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: var(--font-weight-medium);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.hero-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-2xl);
    border: 8px solid var(--white);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.floating-card span {
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    font-size: var(--font-size-sm);
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Remove section background colors for floating panels */
.journey,
.mentor,
.tribu,
.sky-sea {
    background: transparent;
    padding: 0; /* Remove default padding, handled by floating-panel */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-light);
}

.skills h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.skill-item {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 200px;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--font-size-small);
}

/* Projects/Case Studies Section */
.projects {
    padding: var(--section-padding);
    background: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-study-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.case-study-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.case-study-header {
    position: relative;
}

.case-study-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.case-study-item:hover .case-study-overlay {
    opacity: 1;
}

.case-study-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.case-study-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.industry-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.case-study-content {
    padding: 2rem;
}

.case-study-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-study-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
}

.case-study-results {
    margin-bottom: 1.5rem;
}

.result-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.result-value {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.case-study-tag.more {
    background: var(--primary-color);
    color: var(--white);
}

/* CTA Section within Projects */
.cta-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.cta-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Results/Testimonials Section */
.results {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Results Stats */
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content {
    flex: 1;
}

.stat-card .stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

/* Enhanced Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--gradient-hero);
}

.contact-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-props {
    margin-bottom: 2rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: var(--font-size-base);
    color: var(--text-color);
}

.value-prop i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.cta-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Calendar Preview */
.calendar-preview {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-header h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.calendar-header span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.calendar-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.time-slot.available {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.1);
}

.time-slot.available:hover {
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
}

.time-slot.booked {
    background: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Enhanced Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--container-padding);
}

.footer-info {
    text-align: left;
}

.footer-logo {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 0.5rem;
}

.footer-logo .logo-accent {
    color: var(--primary-light);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

.footer-cta {
    text-align: center;
}

.footer-cta p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-lg);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

/* Footer transparency override: allow background image to show through */
.footer,
.footer-bottom {
    background: transparent !important;
    border-top: none !important;
}

/* Dark Mode Footer Transparency Override */
@media (prefers-color-scheme: dark) {
    .footer,
    .footer-bottom {
        background: none !important;
        background-color: transparent !important;
    }
}

/* Floating Panel Base Style */
.floating-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    margin: 3.5rem auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.floating-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Container inside floating panels */
.floating-panel .container {
    padding: 60px 40px;
    max-width: none;
    margin: 0;
}

/* Special styling for sections with split layouts */
.floating-panel.journey,
.floating-panel.mentor,
.floating-panel.tribu,
.floating-panel.sky-sea {
    padding: 0;
}

.floating-panel.journey .container,
.floating-panel.mentor .container,
.floating-panel.tribu .container {
    padding: 0;
}

.floating-panel.sky-sea {
    background-color: #1e68ff;
    color: white;
}

.floating-panel.sky-sea .container {
    padding: 0;
}

.sky-sea-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
    flex: 1;
    min-height: 300px;
}

.sky-sea-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 40px;
    background: #1e68ff;
    justify-content: center;
}

.sky-sea-text .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.sky-sea-text .section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
}

.sky-sea-text .section-title {
    color: white;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    margin-bottom: 1.5rem;
}

.sky-sea-details h3 {
    color: #ffffff;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.sky-sea-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-base);
}

.sky-sea-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.sky-sea-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sky-sea-features .feature-item i {
    font-size: 1.5rem;
    color: #ffffff;
}

.sky-sea-features .feature-item span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: white;
    text-align: center;
}

.sky-sea-cta {
    margin-top: 0;
}

.sky-sea-icon {
    flex-shrink: 0;
}

.sky-sea-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.sky-sea-description {
    text-align: center;
    max-width: 400px;
}

.sky-sea-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: var(--font-size-base);
    margin: 0;
}

.sky-sea-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.sky-sea-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.sky-sea-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.sky-sea-btn i {
    font-size: 1.1rem;
}

.sky-sea-visual {
    position: relative;
    background: url('../images/wave2.jpg') center/cover no-repeat;
    height: 100%;
    border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.sky-sea-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.sky-sea-image:hover {
    background: rgba(0, 0, 0, 0.5);
}

.sky-sea-image img {
    display: none; /* Hide the img tag since we're using background */
}

.sky-sea-image .image-overlay {
    position: relative;
    background: transparent;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: center;
}

.sky-sea-image:hover .image-overlay {
    opacity: 1;
}

.sky-sea-quote {
    text-align: center;
}

.sky-sea-quote i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.sky-sea-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin: 0;
    color: white;
}

/* Sky & Sea Mobile Responsive */
@media (max-width: 768px) {
    .sky-sea-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .sky-sea-visual {
        order: -1;
        min-height: 200px;
        border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    }
    
    .sky-sea-text {
        padding: 30px 20px;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .sky-sea-icon img {
        width: 90px;
        height: 90px;
    }
    
    .sky-sea-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .sky-sea-features .feature-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .sky-sea-btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
}

/* Hero Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px 0;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .hero-content {
        order: 2;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .hero-name-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-name {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    
    .hero-aka {
        font-size: clamp(1rem, 6vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-profile-inline {
        height: clamp(4rem, 24vw, 8rem);
        border: 2px solid var(--white);
        order: -1;
    }
    
    .animated-roles {
        align-items: flex-start;
    }
    
    .role-prefix {
        font-size: var(--font-size-lg);
    }
    
    .role-text {
        font-size: var(--font-size-xl);
        min-height: 2.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .role-text {
        font-size: var(--font-size-lg);
        min-height: 2rem;
    }
}

/* Hero role tags text color always #b54718 */
.hero .role-text {
    color: #b54718 !important;
}

@media (prefers-color-scheme: dark) {
    .hero .role-text {
        color: #b54718 !important;
    }
}

/* Hero tags text color always #b54718 */
.hero .section-tag {
    color: #b54718 !important;
}

@media (prefers-color-scheme: dark) {
  .hero .section-tag {
    color: #b54718 !important;
  }
}

/* Journey Section Styles */
.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 40px;
    background: transparent;
}

.journey-text .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.journey-text .section-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
}

.journey-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.journey-story p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: var(--font-size-base);
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: var(--primary-orange);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.journey-visual {
    position: relative;
    background: url('../images/bioimage.JPG') center/cover no-repeat;
    height: 100%;
    border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
    overflow: hidden;
}

.journey-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.journey-image:hover {
    background: rgba(0, 0, 0, 0.5);
}

.journey-image img {
    display: none; /* Hide the img tag since we're using background */
}

.image-overlay {
    position: relative;
    background: transparent;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: center;
}

.journey-image:hover .image-overlay {
    opacity: 1;
}

.journey-quote {
    text-align: center;
}

.journey-quote i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.journey-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin: 0;
    color: white;
}

/* Journey Mobile Responsive */
@media (max-width: 768px) {
    .journey-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .journey-visual {
        order: -1;
        min-height: 300px;
        border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    }
    
    .journey-text {
        padding: 30px 20px;
    }
    
    .floating-panel.journey .container {
        padding: 0;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-marker::after {
        height: 30px;
    }
}

/* Mentor Section Styles */
.floating-panel.mentor {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.floating-panel.mentor .container {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
    flex: 1;
}

.mentor-visual {
    position: relative;
    background: url('../images/barbaramentor.jpg') center/cover no-repeat;
    height: 100%;
    border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
    overflow: hidden;
}

.mentor-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.mentor-image:hover {
    background: rgba(0, 0, 0, 0.5);
}

.mentor-image img {
    display: none; /* Hide the img tag since we're using background */
}

.mentor-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 40px;
    background: transparent;
    justify-content: center;
}

.mentor-text .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.mentor-text .section-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
}

.mentor-text .section-title {
    color: var(--text-dark);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.mentor-details h3 {
    color: var(--text-dark);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.mentor-title {
    color: var(--primary-orange);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.mentor-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

.mentor-social {
    margin-top: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F77737, #FCAF45);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: var(--font-size-sm);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.instagram-link i {
    font-size: 1.25rem;
}

.mentor-quote {
    text-align: center;
}

.mentor-image:hover .image-overlay {
    opacity: 1;
}

.mentor-image .image-overlay {
    position: relative;
    background: transparent;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: center;
}

.mentor-quote i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.mentor-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin: 0;
    color: white;
}

/* Mentor Mobile Responsive */
@media (max-width: 768px) {
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .mentor-visual {
        order: -1;
        min-height: 300px;
        border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    }
    
    .mentor-text {
        padding: 30px 20px;
    }
    
    .mentor-text .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .instagram-link {
        padding: 10px 20px;
        font-size: var(--font-size-xs);
    }
}

/* Mi Tribu Section Styles */
.floating-panel.tribu {
    background-color: #190000;
    color: white;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.floating-panel.tribu .container {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tribu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
    flex: 1;
    min-height: 500px;
}

.tribu-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 60px 40px;
    background: #190000;
    justify-content: center;
}

.tribu-text .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.tribu-text .section-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
}

.tribu-text .section-title {
    color: white;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    margin-bottom: 1.5rem;
}

.tribu-logo {
    margin-bottom: 2rem;
}

.tribu-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.tribu-details h3 {
    color: var(--accent-yellow);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.tribu-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-base);
}

.tribu-author {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 500;
    text-align: right;
    margin-bottom: 2rem;
    font-size: var(--font-size-sm);
}

.tribu-cta {
    margin-top: 2rem;
}

.tribu-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.tribu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    background: var(--gradient-sunset);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: var(--font-size-base);
    border: none;
    cursor: pointer;
}

.tribu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    color: white;
    text-decoration: none;
}

.tribu-btn i {
    font-size: 1.1rem;
}

.tribu-visual {
    position: relative;
    background: url('../images/tribu.jpg') center/cover no-repeat;
    height: 100%;
    border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
    overflow: hidden;
}

.tribu-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.tribu-image:hover {
    background: rgba(0, 0, 0, 0.5);
}

.tribu-image img {
    display: none; /* Hide the img tag since we're using background */
}

.tribu-image .image-overlay {
    position: relative;
    background: transparent;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: center;
}

.tribu-image:hover .image-overlay {
    opacity: 1;
}

.tribu-quote {
    text-align: center;
}

.tribu-quote i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.tribu-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin: 0;
    color: white;
}

/* Tribu Mobile Responsive */
@media (max-width: 768px) {
    .tribu-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .tribu-visual {
        order: -1;
        min-height: 250px;
        border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    }
    
    .tribu-text {
        padding: 40px 20px;
    }
    
    .tribu-text .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .tribu-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .tribu-logo img {
        max-height: 60px;
    }
    
    .tribu-btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
}

/* Mobile Panel Styling - Remove Rounded Edges */
@media (max-width: 768px) {
    .floating-panel {
        border-radius: 0;
        margin: 2rem 0;
    }
    
    /* Remove rounded edges from images inside panels */
    .floating-panel .journey-visual,
    .floating-panel .mentor-visual,
    .floating-panel .tribu-visual,
    .floating-panel .sky-sea-visual {
        border-radius: 0;
    }
    
    .floating-panel .journey-image,
    .floating-panel .mentor-image,
    .floating-panel .tribu-image,
    .floating-panel .sky-sea-image {
        border-radius: 0;
    }
}

/* Comprehensive Dark Mode Prevention */
html {
    color-scheme: light only !important;
}

* {
    color-scheme: light !important;
}

/* Force light mode regardless of system preference */
@media (prefers-color-scheme: dark) {
    /* Root and body level overrides */
    :root {
        color-scheme: light !important;
    }
    
    html {
        color-scheme: light !important;
        background-color: transparent !important;
    }
    
    body {
        background-color: transparent !important;
        color: var(--text-dark) !important;
        forced-color-adjust: none !important;
    }
    
    /* All elements should inherit light theme */
    *, *::before, *::after {
        color-scheme: light !important;
        forced-color-adjust: none !important;
    }
    
    /* Floating panels protection */
    .floating-panel {
        background: rgba(255, 255, 255, 0.95) !important;
        color: var(--text-dark) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Navigation protection */
    .header,
    .navbar,
    .nav-container {
        background-color: var(--white) !important;
        color: var(--text-dark) !important;
    }
    
    .nav-link {
        color: var(--text-color) !important;
    }
    
    .nav-link:hover {
        color: var(--primary-orange) !important;
    }
    
    /* Footer protection: transparent background */
    .footer,
    .footer-bottom {
        background: none !important;
        background-color: transparent !important;
        /* Color remains as forced light */
    }
    
    /* Text elements protection */
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-dark) !important;
    }
    
    p, span, div, a {
        color: inherit !important;
    }
    
    /* Specific branded elements */
    .hero-name {
        color: var(--text-dark) !important;
    }
    
    .hero-aka {
        color: var(--ocean-blue) !important;
    }
    
    .logo-accent {
        color: var(--primary-orange) !important;
    }
    
    .section-tag {
        background: var(--gradient-sunset) !important;
        color: white !important;
    }
    
    .mentor-title {
        color: var(--primary-orange) !important;
    }
    
    /* Button protection */
    .btn {
        background: var(--gradient-sunset) !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-secondary {
        background: var(--gradient-ocean) !important;
        color: white !important;
    }
    
    .btn:hover {
        opacity: 0.9 !important;
    }
    
    /* Form elements */
    input, textarea, select, button {
        background-color: var(--white) !important;
        color: var(--text-dark) !important;
        border-color: var(--border-light) !important;
    }
    
    /* Social links */
    .social-link {
        color: var(--text-dark) !important;
    }
    
    .social-link:hover {
        color: var(--primary-orange) !important;
    }
    
    /* Hero background protection */
    .hero::before {
        filter: none !important;
    }
    
    /* Image containers */
    .journey-visual,
    .mentor-visual,
    .tribu-visual,
    .sky-sea-visual {
        filter: none !important;
    }
    
    /* Top stripe colors protection */
    .top-stripe .stripe-color-1 {
        background-color: #071446 !important;
    }
    
    .top-stripe .stripe-color-2 {
        background-color: #1e68ff !important;
    }
    
    .top-stripe .stripe-color-3 {
        background-color: #58b3ff !important;
    }
}

/* Additional protection for webkit browsers */
@supports (-webkit-appearance: none) {
    * {
        color-scheme: light !important;
        -webkit-color-scheme: light !important;
    }
}

/* Force color scheme in meta tag style */
html[data-theme="light"] {
    color-scheme: light !important;
}

/* Dark-mode override: keep light theme when user prefers dark */
@media (prefers-color-scheme: dark) {
  html {
    color-scheme: light only !important;
    forced-color-adjust: none !important;
    background-color: #ffffff !important;
    color: #333333 !important;
  }

  /* Remove gradient overlays that occlude background images */
  .hero::before,
  .floating-panel::before {
    background: none !important;
  }

  /* Ensure section backgrounds stay transparent */
  .hero,
  .journey,
  .mentor,
  .tribu,
  .sky-sea {
    background-color: transparent !important;
  }

  /* Restore text colors */
  .hero-name,
  .hero-aka,
  .section-tag,
  .mentor-quote p,
  .journey-quote p,
  .tribu-quote p,
  .sky-sea-quote p {
    color: #ffffff !important;
  }

  /* Buttons and social icons: preserve original look */
  .btn-primary,
  .instagram-link,
  .social-link i {
    filter: none !important;
    color: inherit !important;
    background: var(--gradient-primary) !important;
  }
}

/* Remove all colorful gradients and let images show through */

/* Accent elements (tags, buttons, links) */
.section-tag,
.btn-primary,
.btn-secondary,
.instagram-link,
.tribu-btn,
.sky-sea-btn {
  background-image: none !important;
  background: var(--white) !important;
  color: var(--text-dark) !important;
  border-color: var(--border-light) !important;
}

/* Hero and panels: transparent backgrounds */
.hero,
.journey,
.mentor,
.tribu,
.sky-sea {
  background: transparent !important;
}

.hero::before,
.floating-panel::before {
  background: transparent !important;
}

/* Mi Tribu panel text always in light yellow shade */
.floating-panel.tribu * {
    color: #fff3b5 !important;
}

/* Mi Tribu panel: restore orange gradient for tag and button */
.floating-panel.tribu .section-tag,
.floating-panel.tribu .tribu-btn {
    background: var(--gradient-sunset) !important;
    color: #190000 !important;
    border: none !important;
}

/* Mi Viaje and Mi Mentora panels always white */
.floating-panel.journey,
.floating-panel.mentor {
    background: #fff !important;
    color: var(--text-dark) !important;
}

/* Mi Viaje and Mi Mentora: tags and buttons use orange gradient */
.floating-panel.journey .section-tag,
.floating-panel.mentor .section-tag,
.floating-panel.journey .btn-primary,
.floating-panel.mentor .btn-primary {
    background: var(--gradient-sunset) !important;
    color: #190000 !important;
    border: none !important;
}
