/* Elite Performance Mastery - Luxury Styling */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

/* CSS Variables - Elite Performance Theme */
:root {
    --primary-navy: #1a237e;
    --primary-navy-dark: #0d1454;
    --accent-copper: #b87333;
    --accent-copper-light: #d4a574;
    --accent-copper-dark: #9a5f2b;
    --bg-white: #fafafa;
    --bg-cream: #f7f5f2;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --success-green: #27ae60;
    --error-red: #e74c3c;
    --gold: #ffd700;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --bg-light-cream: #f9f7f4;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-down:before {
        animation: none;
    }
    
    .hero-content {
        animation: none;
        opacity: 1 !important;
        transform: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding-top: 80px; /* Space for fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

p {
    margin-bottom: 1.5rem;
}

/* Premium Header Navigation */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.premium-header.scrolled {
    background: rgba(250, 250, 250, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation-bar {
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-copper);
    font-weight: bold;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--accent-copper);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Prevent FOUC - hide mobile menu by default */
@media (max-width: 768px) {
    .nav-menu {
        transform: translateX(-100%) !important;
        visibility: hidden;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
        visibility: visible;
        opacity: 1;
    }
}

.nav-item {
    position: relative;
}

.nav-item-cta {
    /* No extra styling - let the button handle its own appearance */
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-trigger:hover {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-trigger:visited {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-trigger:visited:hover {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-trigger:link {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-trigger:active {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--accent-copper);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 115, 51, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 115, 51, 0.05);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(184, 115, 51, 0.08);
    color: var(--accent-copper);
    padding-left: 2rem;
}

.nav-link {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.nav-link:visited {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.nav-link:visited:hover {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.nav-link:link {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

.nav-link:active {
    color: var(--accent-copper) !important;
    text-decoration: none !important;
}

/* Remove underlines on desktop navigation */
.nav-link:before {
    display: none;
}

.nav-link.active {
    color: var(--accent-copper) !important;
}

/* Navigation CTA Button - Complete isolated styling */
.nav-link-cta {
    /* Base reset */
    all: unset;
    /* Essential properties only */
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-dark));
    color: white;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
    white-space: nowrap;
    text-decoration: none;
    border: none;
    outline: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    color: white;
}

/* Language Switcher Dropdown */
.language-switcher {
    margin-left: 1rem;
}

/* Hide dropdown arrow for language switcher only */
.language-switcher .dropdown-arrow {
    display: none;
}

/* Style the language trigger */
.language-current {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-current .flag-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.language-current:before {
    display: none; /* Remove nav-link underline */
}

.language-dropdown {
    min-width: 140px;
    right: 0;
    left: auto; /* Align to the right */
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem !important;
}

.language-option .flag-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.language-option .language-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.language-option.active {
    background: rgba(184, 115, 51, 0.1);
    color: var(--accent-copper);
}

.language-option.active .language-name {
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent-copper);
    outline-offset: 2px;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

/* Trust Badges Section */
.trust-badges {
    background-color: var(--bg-cream);
    padding: 2rem 0;
}

.trust-indicators-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    font-size: 3.5rem;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Professional Associations */
.professional-associations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.professional-associations h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.association-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.association-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.association-logo:hover {
    opacity: 1;
}

/* Media Mentions */
.media-mentions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.media-mentions h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.media-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

/* Guarantee Details */
.guarantee-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #4ade80;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    color: var(--primary-navy);
}

.guarantee-details h3 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-points {
    list-style: none;
    padding: 0;
}

.guarantee-points li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
}

/*.guarantee-points li:before {*/
/*    content: "✓";*/
/*    position: absolute;*/
/*    left: 0.5rem;*/
/*    top: 0.5rem;*/
/*    color: #16a34a;*/
/*    font-weight: bold;*/
/*    font-size: 1.1rem;*/
/*}*/

/* Credential Verification */
.credential-verification {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.credential-verification small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Contact Verification */
.contact-verification {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.contact-verification small {
    color: var(--text-gray);
}

/* Exclusive Experience Section */
.exclusive-experience {
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
    padding: 5rem 0;
}

.luxury-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.luxury-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-top: 3px solid var(--accent-copper);
}

.luxury-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Alumni Network Section */
.alumni-network {
    background: var(--primary-navy);
    color: white;
    padding: 5rem 0;
}

.alumni-network .section-title,
.alumni-network .section-subtitle {
    color: white;
}

.network-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.network-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.network-item h3 {
    color: var(--accent-copper-light);
    margin-bottom: 1.5rem;
}

.network-item ul {
    list-style: none;
    padding: 0;
}

.network-item li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.network-item li:before {
    content: "♦";
    position: absolute;
    left: 0;
    color: var(--accent-copper);
}

.alumni-testimonial {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.alumni-testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--accent-copper-light);
}

.alumni-testimonial cite {
    color: white;
    font-size: 1rem;
}

/* Enhanced Section Subtitles */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

/* Scroll-triggered animations for sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium hover effects */
.credential:hover,
.feature:hover,
.luxury-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Smooth transitions for all interactive elements */
.testimonial-card,
.value-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Generic CTA buttons get their own transition */
.cta-button:not(.nav-link-cta) {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Concierge Button */
.floating-concierge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.concierge-button {
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.concierge-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.concierge-button:hover:before {
    left: 100%;
}

.concierge-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(184, 115, 51, 0.5);
}

.concierge-icon {
    font-size: 1.3rem;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.concierge-text {
    letter-spacing: 0.5px;
}

.concierge-hours {
    background: rgba(26, 35, 126, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments for concierge button */
@media (max-width: 768px) {
    .floating-concierge {
        bottom: 20px;
        right: 20px;
    }
    
    .concierge-button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .concierge-text {
        display: none; /* Show only icon on mobile */
    }
    
    .concierge-button {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

/* Pre-Qualification Section */
.pre-qualification {
    background: var(--bg-cream);
    padding: 5rem 0;
}

.qualification-criteria {
    margin-top: 3rem;
}

.qualification-criteria h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.qualify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.qualify-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-copper);
    transition: all 0.3s ease;
}

.qualify-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.qualify-icon {
    font-size: 2.5rem;
    color: var(--accent-copper);
    display: block;
    margin-bottom: 1rem;
}

.qualify-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.qualify-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.disqualification-notice {
    background: rgba(231, 76, 60, 0.05);
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.disqualification-notice h3 {
    color: var(--error-red);
    margin-bottom: 1rem;
}

.disqualification-notice ul {
    list-style: none;
    padding: 0;
}

.disqualification-notice li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

.disqualification-notice li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--error-red);
    font-weight: bold;
}

.qualification-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

/* Green qualification notice - positive version */
.qualification-notice {
    background: rgba(46, 125, 50, 0.05);
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}
.qualification-notice h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}
.qualification-notice ul {
    list-style: none;
    padding: 0;
}
.qualification-notice li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}
.qualification-notice li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.2rem;
}

.qualify-question {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.qualification-cta .cta-button {
    margin-bottom: 1.5rem;
}

.alternative-option {
    color: var(--text-gray);
}

.alt-link {
    color: var(--accent-copper);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-copper);
    transition: all 0.3s ease;
}

.alt-link:hover {
    color: var(--accent-copper-dark);
    border-color: var(--accent-copper-dark);
}

/* Mobile Dropdown Functionality */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(26, 35, 126, 0.05);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dropdown-menu.mobile-show {
        max-height: 400px;
        padding: 0.5rem 0;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--accent-copper);
    }
    
    .dropdown-link {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        color: var(--primary-navy);
        border-bottom: 1px solid rgba(26, 35, 126, 0.1);
        background: transparent;
    }
    
    .dropdown-link:hover {
        background: rgba(184, 115, 51, 0.1);
        padding-left: 2.5rem;
        color: var(--accent-copper);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .language-switcher {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(184, 115, 51, 0.1);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    /* Mobile language trigger styling */
    .language-current {
        background: rgba(26, 35, 126, 0.05);
        border: 1px solid rgba(26, 35, 126, 0.1);
        color: var(--primary-navy);
        display: inline-block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    
    .language-current:hover {
        background: rgba(26, 35, 126, 0.1);
        border-color: rgba(26, 35, 126, 0.2);
        transform: translateY(-1px);
    }
    
    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(26, 35, 126, 0.05);
        box-shadow: none;
        border: none;
        border-radius: 8px;
        margin-top: 0;
        backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        left: auto;
        right: auto;
    }
    
    .language-dropdown.mobile-show {
        max-height: 120px;
        padding: 0.5rem 0;
    }
    
    .language-option {
        padding: 0.75rem 2rem !important;
        justify-content: center;
        color: var(--primary-navy);
        border-bottom: 1px solid rgba(26, 35, 126, 0.1);
    }
    
    .language-option:hover {
        background: rgba(26, 35, 126, 0.1);
        color: var(--primary-navy);
    }
    
    .language-option.active {
        background: rgba(26, 35, 126, 0.1);
        color: var(--primary-navy);
        font-weight: 600;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(184, 115, 51, 0.1);
    }
    
    .nav-item-cta {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        color: var(--primary-navy) !important;
        text-decoration: none !important;
    }
    
    .nav-link:hover {
        color: var(--accent-copper) !important;
        text-decoration: none !important;
    }
    
    .nav-link:before {
        display: none !important;
    }
    
    .nav-link-cta {
        margin-top: 1rem;
    }
    
    .logo-name {
        font-size: 0.8rem !important;
    }
    
    .logo-tagline {
        font-size: 0.5rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        font-size: 16px;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve touch targets for mobile */
    a, button {
        min-height: 44px;
        padding: 0.75rem 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Small link exceptions */
    .nav-link, .dropdown-link {
        min-height: 48px;
        padding: 1rem 1.5rem;
        color: var(--primary-navy) !important;
        text-decoration: none !important;
    }
    
    .nav-link:hover {
        color: var(--accent-copper) !important;
        text-decoration: none !important;
    }
    
    .nav-link:before {
        display: none !important;
    }
    
    /* Fix small text for readability */
    p, span, div, li {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    .navigation-bar {
        height: 70px;
    }
    
    .nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Grid fixes */
    .qualify-grid,
    .credentials-grid,
    .methodology-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .trust-indicators-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .association-logos,
    .media-logos {
        gap: 1rem;
    }
    
    .association-logo {
        height: 40px;
    }
    
    .media-logo {
        height: 30px;
    }
    
    /* Section spacing */
    section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* CTA buttons */
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: none;
    }
}

/* Tablet screens - better grid layouts */
@media (max-width: 768px) and (min-width: 481px) {
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .program-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .luxury-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* Story layouts on tablet */
    .story-with-image,
    .authority-showcase,
    .contact-intro-grid,
    .international-authority-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonial-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Override inline 2-column grids on tablet for better readability */
    [style*="grid-template-columns: 1fr 300px"],
    [style*="grid-template-columns: 1fr 350px"],
    [style*="grid-template-columns: 1fr 400px"],
    [style*="grid-template-columns: 300px 1fr"],
    [style*="grid-template-columns: 350px 1fr"],
    [style*="grid-template-columns: 400px 1fr"],
    [style*="grid-template-columns: 200px 1fr"],
    [style*="grid-template-columns: 250px 1fr"],
    [style*="grid-template-columns: 150px 1fr"],
    [style*="grid-template-columns: 120px 1fr"],
    [style*="grid-template-columns: 280px 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .testimonial-featured,
    .testimonial-featured.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Common mobile screens like iPhone 12 Pro (390px) */
@media (max-width: 410px) {
    /* Force all grids to single column for narrow screens */
    [style*="grid-template-columns"],
    .portrait-content,
    .matrix-grid,
    .program-features,
    .luxury-features,
    .credentials-grid,
    .story-with-image,
    .authority-showcase,
    .testimonial-showcase,
    .contact-intro-grid,
    .international-authority-grid,
    .mission-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1rem !important;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    /* Fix 3-column grids on mobile */
    .matrix-grid,
    .program-features,
    .luxury-features {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Story layouts on mobile */
    .story-with-image,
    .authority-showcase,
    .testimonial-showcase,
    .contact-intro-grid,
    .international-authority-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Override ALL inline 2-column and 3-column grids on mobile */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1fr 2fr"],
    [style*="grid-template-columns: 1fr 300px"],
    [style*="grid-template-columns: 1fr 350px"],
    [style*="grid-template-columns: 1fr 400px"],
    [style*="grid-template-columns: 300px 1fr"],
    [style*="grid-template-columns: 350px 1fr"],
    [style*="grid-template-columns: 400px 1fr"],
    [style*="grid-template-columns: 200px 1fr"],
    [style*="grid-template-columns: 250px 1fr"],
    [style*="grid-template-columns: 150px 1fr"],
    [style*="grid-template-columns: 120px 1fr"],
    [style*="grid-template-columns: 280px 1fr"],
    [style*="grid-template-columns: repeat(2"],
    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    .portrait-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .testimonial-featured,
    .testimonial-featured.reverse {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .testimonial-avatar-img {
        width: 150px;
        height: 150px;
    }
    
    /* Foundation mobile */
    .hero-images-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 300px;
    }
    
    .grid-2col-reality,
    .grid-mission-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .story-round-image {
        width: 150px;
        height: 150px;
    }
    
    .section-title-foundation {
        font-size: 2rem;
    }
    
    /* Smaller logo for mobile */
    .logo-name {
        font-size: 0.7rem !important;
    }
    
    .logo-tagline {
        font-size: 0.45rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .trust-indicators-row {
        grid-template-columns: 1fr;
    }
    
    .credential {
        padding: 1.5rem;
    }
    
    .credential h3 {
        font-size: 1.25rem;
    }
    
    .credential p {
        font-size: 0.9rem;
    }
    
    /* Fix padding and margins */
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 2rem 0 !important;
    }
    
    /* Fix buttons on very small screens */
    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

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

@keyframes subtleScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Entrance - Premium feel with staggered animations */
.hero-content {
    opacity: 0;
    animation: elegantFadeIn 0.8s ease-out forwards;
}

.hero-title {
    animation: elegantFadeIn 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    animation: elegantFadeIn 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: elegantFadeIn 0.8s ease-out 0.3s both;
}

.cta-button.primary {
    animation: elegantFadeIn 0.8s ease-out 0.4s both;
}

.hero-scarcity {
    animation: elegantFadeIn 0.8s ease-out 0.5s both;
}

/* Removed Loading Animation - Premium sites load instantly */
/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.hexagon-container {
    display: flex;
    gap: 10px;
}

.healing-circle {
    width: 40px;
    height: 40px;
    background: var(--accent-copper);
    border-radius: 50%;
    position: relative;
    margin: 20px 10px;
    animation: healing-pulse 1.5s infinite ease-in-out;
}

.healing-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: var(--primary-navy);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.healing-circle:nth-child(1) { animation-delay: 0s; }
.healing-circle:nth-child(2) { animation-delay: 0.1s; }
.healing-circle:nth-child(3) { animation-delay: 0.2s; }
.healing-circle:nth-child(4) { animation-delay: 0.3s; }
.healing-circle:nth-child(5) { animation-delay: 0.4s; }
.healing-circle:nth-child(6) { animation-delay: 0.5s; }

@keyframes healing-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
        box-shadow: 0 0 20px var(--accent-copper);
    }
}

@media (prefers-reduced-motion: reduce) {
    .healing-pulse {
        animation: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(184, 115, 51, 0.05) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(184, 115, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    max-width: 1000px;
}

.testimonial-rotator {
    margin-bottom: 3rem;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.video-placeholder blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F7F5F3;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(45, 74, 58, 0.7);
}

.video-placeholder cite {
    font-style: normal;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(45, 74, 58, 0.7);
}

.hero-title {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--accent-copper-light);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scarcity {
    font-size: 1rem;
    color: var(--accent-copper-light);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 24px 60px;
    min-height: 56px;
    min-width: 200px;
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.cta-button: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;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.cta-button:hover:before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-down:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Testimonial Rotator Styles */
.testimonial-video {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-video.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-rotator {
    position: relative;
    min-height: 120px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 400;
}

/* Authority Section */
.authority {
    background: var(--bg-cream);
}

.authority .section-title {
    color: var(--primary-navy);
    text-shadow: none;
    font-weight: 700;
}

.authority .section-subtitle {
    color: var(--text-dark);
    font-weight: 500;
}

.authority-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.authority-content {
    flex: 1;
}

.authority-photo {
    flex: 0 0 300px;
}

.rob-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.rob-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .authority-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .authority-photo {
        flex: none;
    }
    
    .rob-photo {
        max-width: 250px;
    }
}

.credential-photo {
    margin-top: 1rem;
}

.speaking-photo, .books-photo, .phd-photo, .provocative-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
}

.speaking-photo:hover, .books-photo:hover, .phd-photo:hover, .provocative-photo:hover {
    transform: scale(1.02);
}

.provocative-warmth-photo {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 2px solid var(--accent-copper);
}

.provocative-warmth-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.story-provocative-photo {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-copper);
}

.confrontational-photo {
    width: 100%;
    max-width: 400px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    margin-bottom: 1rem;
}

.photo-caption {
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.associations-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.association-logos {
    flex: 1;
}

.credentials-action-photo {
    flex: 0 0 350px;
}

.rob-action-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.story-with-photo {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin: 2rem 0;
}

.story-text-column {
    flex: 1;
}

.story-photo {
    flex: 0 0 400px;
}

.rob-consulting-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.methodology-photo {
    margin-top: 1.5rem;
    text-align: center;
}

.rob-notes-photo, .rob-consultation-photo, .session-photo {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

.rob-notes-photo:hover, .rob-consultation-photo:hover, .session-photo:hover {
    transform: scale(1.05);
}

.investment-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.investment-content {
    flex: 1;
}

.investment-credentials {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Background Image Enhancements */
.hero .section-title,
.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-description {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.investment .section-title,
.investment .section-subtitle,
.investment .value-name,
.investment .investment-intro {
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.alumni-network .section-title,
.alumni-network .section-subtitle {
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.final-cta .section-title,
.final-cta .cta-intro {
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Assessment Day Section Styles */
.assessment-day {
    padding: 5rem 0;
    color: white;
}

.assessment-day .section-title,
.assessment-day .section-subtitle {
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.assessment-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.assessment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-copper);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.assessment-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.assessment-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.assessment-photo {
    text-align: center;
    margin: 3rem 0;
}

.assessment-day-photo {
    max-width: 500px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.assessment-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .assessment-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.graduation-photo, .planning-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px var(--shadow-light);
}

@media (max-width: 768px) {
    .associations-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .credentials-action-photo {
        flex: none;
    }
    
    .story-with-photo {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-photo {
        flex: none;
        text-align: center;
    }
    
    .rob-consulting-photo {
        max-width: 300px;
        height: 250px;
    }
    
    .investment-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .investment-credentials {
        flex: none;
        flex-direction: row;
        gap: 1rem;
    }
}

.feature-photo {
    margin-top: 1rem;
    text-align: center;
}

.consultation-photo, .intake-photo, .phone-call-photo, .handshake-photo, .evaluation-photo, .breakthrough-photo, .completion-photo, .next-step-photo {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

.consultation-photo:hover, .intake-photo:hover, .phone-call-photo:hover, .handshake-photo:hover, .evaluation-photo:hover, .breakthrough-photo:hover, .completion-photo:hover, .next-step-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.prequalification-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.prequalification-content {
    flex: 1;
}

.prequalification-photo {
    flex: 0 0 300px;
}

.executive-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.executive-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .prequalification-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .prequalification-photo {
        flex: none;
    }
    
    .executive-photo {
        max-width: 250px;
    }
    
    .consultation-photo {
        max-width: 100%;
        height: 180px;
    }
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.credential {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px var(--shadow-light);
    transition: transform 0.3s ease;
}

.credential:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.credential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.credential h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.credential p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Story with image layout */
.story-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

/* Authority showcase layout */
.authority-showcase {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

/* Testimonial showcase layout */
.testimonial-showcase {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem auto;
    max-width: 900px;
}

/* Contact intro grid layout */
.contact-intro-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* International authority grid layout */
.international-authority-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: var(--bg-light-cream);
    padding: 2.5rem;
    border-radius: 20px;
}

.story:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(184, 115, 51, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.story .section-title {
    color: white;
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-intro {
    font-size: 1.5rem;
    color: var(--accent-copper-light);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.story-quote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-copper);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent-copper-light);
}

/* Methodology Section */
.methodology {
    background: var(--bg-white);
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.matrix-pillar {
    text-align: center;
}

.hexagon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.hex-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.matrix-pillar h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.matrix-pillar p {
    color: var(--text-gray);
    max-width: 350px;
    margin: 0 auto;
}

/* Program Section */
.program {
    background: var(--bg-cream);
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Timeline Section */
.timeline {
    background: var(--bg-white);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--accent-copper);
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
    transform: translateZ(0);
    will-change: background-color, color;
}

.timeline-item:hover {
    background: var(--accent-copper);
    color: white;
}

.timeline-item:hover .timeline-marker {
    background: white;
    color: var(--accent-copper);
}

.timeline-item:hover h3 {
    color: white;
}

.timeline-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-marker {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-copper);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-item p {
    color: var(--text-gray);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
    font-weight: 700;
    text-shadow: none;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--accent-copper-light);
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 115, 51, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-copper);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-copper), var(--accent-copper-light));
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--accent-copper);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    max-width: 64px;
    max-height: 64px;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.05);
    border-color: var(--accent-copper-light);
}

.testimonial-info {
    flex: 1;
}

.testimonial-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-copper-light);
}

.testimonial-header .profession {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.result-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--accent-copper);
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.result-highlight strong {
    color: var(--accent-copper-light);
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.testimonials-cta .cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.testimonials-cta .social-proof-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--accent-copper-light);
    font-style: italic;
}

.testimonials-cta .cta-button {
    margin: 0 0.5rem;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--accent-copper);
    color: var(--accent-copper);
}

.cta-button.outline:hover {
    background: var(--accent-copper);
    color: white;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--accent-copper-light);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
}

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

/* Featured Testimonials */
.featured-testimonials {
    padding: 80px 0;
}

.testimonial-featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-featured.reverse {
    grid-template-columns: 1fr 300px;
}

.testimonial-featured .testimonial-image {
    text-align: center;
}

.testimonial-avatar-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-featured .testimonial-content {
    padding: 1rem;
}

.testimonial-featured h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.testimonial-featured .profession {
    color: var(--accent-copper);
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-featured blockquote {
    font-style: italic;
    color: var(--text-dark);
    margin: 1rem 0;
    line-height: 1.6;
}

.result-box {
    background: var(--bg-light-cream);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-copper);
    margin-top: 1rem;
}

.result-box h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    color: white;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: var(--accent-copper);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--accent-copper-dark);
    transform: translateY(-2px);
}

/* Foundation-specific utility classes */
.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    justify-content: center;
}

.hero-image-item {
    text-align: center;
}

.hero-image-caption {
    color: white;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.foundation-hero-bg {
    background-image: linear-gradient(rgba(26, 35, 126, 0.75), rgba(26, 35, 126, 0.75)), url('/assets/images/foundation/omar-current.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-bg-light-gray {
    padding: 80px 0;
    background: #fafafa;
}

.grid-2col-reality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.grid-mission-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    background: rgba(26, 35, 126, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.story-bg-light {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(26, 35, 126, 0.05);
    border-radius: 20px;
}

.story-round-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.story-small-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Additional utility classes needed */
.section-title-foundation {
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.story-text-large {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-text-italic {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.image-caption-center {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 1rem;
}

.quote-foundation {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent-copper);
}

.font-weight-600 {
    font-weight: 600;
}

/* Qualification Section */
.qualification {
    background: var(--bg-cream);
}

.not-for-you, .for-you {
    max-width: 800px;
    margin: 3rem auto;
}

.disqualifier, .qualifier {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-light);
}

.disqualifier {
    border-left: 4px solid var(--error-red);
}

.disqualifier p {
    margin-bottom: 0px;
}

.qualifier {
    border-left: 4px solid var(--success-green);
}

.qualifier p {
    margin-bottom: 0px;
}

.x-mark, .check-mark {
    font-size: 2rem;
    margin-right: 1.5rem;
    font-weight: bold;
}

.x-mark {
    color: var(--error-red);
}


.check-mark {
    color: var(--success-green);
}

.qualification-subtitle {
    text-align: center;
    margin: 4rem 0 2rem;
    font-size: 2rem;
    color: var(--primary-navy);
}

/* Investment Section */
.investment {
    background: var(--bg-white);
}

.value-stack {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow-light);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.value-item:last-child {
    border-bottom: none;
}

.value-name {
    font-weight: 600;
    color: var(--primary-navy);
}

.value-price {
    color: var(--text-gray);
    font-weight: 500;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 0;
    margin-top: 1rem;
    border-top: 3px solid var(--accent-copper);
}

.total-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-copper);
}

.investment-reveal {
    text-align: center;
}

.investment-intro {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 3rem;
    color: var(--accent-copper);
    margin-right: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
}

.payment-options {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.roi-statement {
    font-size: 1.25rem;
    color: var(--success-green);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
}

.final-cta .section-title {
    color: white;
}

.cta-intro {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--accent-copper-light);
}

.application-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.application-box h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.process-steps {
    list-style: none;
    margin-bottom: 3rem;
}

.process-steps li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
}

.process-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: var(--accent-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-steps {
    counter-reset: step-counter;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-copper);
}

.trust-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.application-form {
    margin-top: 2rem;
}

.application-form h4 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--accent-copper-light);
}

.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    background: white;
    border-color: var(--accent-copper);
    box-shadow: 0 0 0 3px rgba(212, 144, 42, 0.3);
}

/* Enhanced focus indicators for all form elements */
input:focus,
textarea:focus,
select:focus,
button:focus,
.cta-button:not(.nav-link-cta):focus {
    outline: 2px solid var(--accent-copper);
    outline-offset: 2px;
}

/* Keyboard focus for interactive elements */
.cta-button:not(.nav-link-cta):focus-visible,
.submit-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 144, 42, 0.4);
}

/* Navigation CTA Button Focus States */
.nav-link-cta:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.nav-link-cta:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    padding: 24px;
    min-height: 56px;
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.urgency-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--accent-copper-light);
    font-weight: 600;
}

.final-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-testimonial blockquote {
    font-size: 1.75rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--accent-copper-light);
    font-family: 'Pinyon Script', cursive;
}

.final-testimonial cite {
    font-style: normal;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-navy-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    color: var(--accent-copper-light);
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-copper-light);
}

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

/* Form Error Styling */
.form-errors {
    display: none;
    margin-bottom: 2rem;
}

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--error-red);
    border-radius: 5px;
    padding: 1rem;
    color: var(--error-red);
}

.error-message strong {
    display: block;
    margin-bottom: 0.5rem;
}

.error-message ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-message li {
    margin-bottom: 0.25rem;
}

/* Field error state */
.application-form input.error,
.application-form textarea.error,
.application-form select.error {
    border-color: var(--error-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    background: rgba(231, 76, 60, 0.05);
}

.application-form input[type="checkbox"].error {
    outline: 2px solid var(--error-red);
    outline-offset: 2px;
}

/* Enhanced Investment Section Hierarchy */
.value-stack {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1);
    font-size: 1.1rem;
}

.value-item:last-child {
    border-bottom: 2px solid var(--accent-copper);
    padding-top: 2rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 144, 42, 0.1) 0%, rgba(184, 119, 43, 0.1) 100%);
    border-radius: 5px;
    padding: 2rem 1.5rem;
    margin: 1rem -1.5rem 0;
}

.value-amount {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.investment-reveal {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 60px var(--shadow-deep);
    position: relative;
    overflow: hidden;
}

.investment-reveal:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-display {
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 3rem;
    color: #FFFFFF;
    font-weight: 300;
    vertical-align: top;
    margin-right: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    display: inline-block;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.amount:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-copper);
    border-radius: 2px;
}

.investment-intro {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1rem;
        min-height: 50px;
        width: auto;
        min-width: 180px;
    }
    
    .submit-button {
        padding: 20px;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .credentials-grid,
    .matrix-grid,
    .program-features,
    .timeline-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: center;
    }

    .avatar-img {
        width: 56px !important;
        height: 56px !important;
        align-self: center;
        object-position: center;
        flex-shrink: 0;
        max-width: 56px;
        max-height: 56px;
    }

    .testimonial-info {
        text-align: center;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 2rem;
    }
    
    .application-box {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .application-form input,
    .application-form textarea,
    .application-form select {
        padding: 16px;
        font-size: 16px;
        min-height: 50px;
        box-sizing: border-box;
    }
    
    .testimonial-rotator {
        margin-bottom: 2rem;
    }
    
    .video-placeholder {
        padding: 1.5rem;
    }
    
    .video-placeholder blockquote {
        font-size: 1.25rem;
        line-height: 1.5;
    }
    
    /* Investment Reveal Mobile Improvements */
    .investment-reveal {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .amount {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .currency {
        font-size: 2rem;
    }
    
    .investment-intro {
        font-size: 1.2rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    /* Guarantee Details Mobile Improvements */
    .guarantee-details {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .guarantee-details h3 {
        font-size: 1.3rem;
    }
}

/* Star Rating Styling */
.star-rating {
    margin: 0.5rem 0;
}

.stars {
    color: #ffc107;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-video .star-rating {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-video .stars {
    color: rgba(255, 193, 7, 0.9);
    font-size: 1.5rem;
}

.testimonial-info .star-rating {
    margin: 0.3rem 0;
}

.testimonial-info .stars {
    font-size: 2rem;
}

.card-info .star-rating {
    margin: 0.2rem 0;
}

.card-info .stars {
    font-size: 0.9rem;
}

.alumni-testimonial .star-rating {
    text-align: center;
    margin-bottom: 1rem;
}

.alumni-testimonial .stars {
    font-size: 1.3rem;
}

/* Voor Wie Page - Commitment Section Styling */
.commitment-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(184, 115, 51, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(184, 115, 51, 0.5);
    transform: translateY(-2px);
}

.commitment-item h3 {
    color: var(--accent-copper);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.commitment-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.final-question {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid rgba(184, 115, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.final-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.final-question h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-question .question-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Warning Box Styling - Fixed for Accessibility */
.warning-box {
    background: rgba(26, 35, 126, 0.95);
    border: 2px solid var(--accent-copper);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-copper), var(--accent-copper-light), var(--accent-copper));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.warning-box h3 {
    color: var(--accent-copper);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.warning-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Commitment Section */
@media (max-width: 768px) {
    .commitment-requirements {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .commitment-item {
        padding: 1.5rem;
    }
    
    .final-question {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .final-question h3 {
        font-size: 1.8rem;
    }
    
    .final-question .question-subtitle {
        font-size: 1.1rem;
    }
}

/* Book Page - Invloed op Kanker Specific Styling */

/* Book Hero Section */
.book-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.book-cover-container {
    position: relative;
}

.book-cover-hero {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.book-cover-hero:hover {
    transform: scale(1.05) rotateY(-5deg);
}

.book-hero-text .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.book-hero-text .hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.book-achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.achievement-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Endorsements Grid */
.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.endorsement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(184, 115, 51, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.endorsement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 115, 51, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.endorser-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.endorser-photo {
    flex-shrink: 0;
}

.endorser-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-copper);
    object-fit: cover;
}

.endorser-details h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.endorser-title {
    color: var(--primary-navy);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.endorser-country {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.endorsement-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-copper);
    padding-left: 1rem;
    font-weight: 500;
}

.endorsement-highlight {
    background: rgba(184, 115, 51, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-copper);
}

.endorsement-highlight strong {
    color: var(--primary-navy);
    font-weight: 700;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 115, 51, 0.2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Publication Info */
.book-credentials {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.book-credentials h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.publication-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.pub-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-copper);
}

.pub-label {
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pub-value {
    color: white;
}

/* Credibility Summary */
.credibility-summary {
    background: rgba(26, 35, 126, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--accent-copper);
}

.credibility-summary h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.credibility-summary p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.retailer-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 115, 51, 0.2);
    transition: all 0.3s ease;
}

.retailer-item:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 115, 51, 0.4);
}

.retailer-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.retailer-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.retailer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.retailer-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
    color: white;
}

.book-cta-bottom {
    text-align: center;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.book-cta-bottom h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.book-cta-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Mobile Responsiveness for Book Page */
@media (max-width: 768px) {
    .book-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-cover-hero {
        max-width: 320px;
    }
    
    .book-hero-text .hero-title {
        font-size: 2.5rem;
    }
    
    .book-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .endorsements-grid {
        grid-template-columns: 1fr;
    }
    
    .endorsement-card {
        padding: 1.5rem;
    }
    
    .endorser-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .publication-info {
        grid-template-columns: 1fr;
    }
    
    .retailer-grid {
        grid-template-columns: 1fr;
    }
}

/* Theme Items Styling - Matching Timeline Items */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.theme-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--accent-copper);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.theme-item:hover {
    background: var(--accent-copper);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.theme-item:hover .theme-icon {
    transform: scale(1.2);
}

.theme-item:hover h4 {
    color: white;
}

.theme-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.theme-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.theme-item h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.theme-item p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Mobile Responsive for Theme Items */
@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .theme-item {
        padding: 1.5rem;
    }
    
    .theme-icon {
        font-size: 2rem;
    }
    
    .theme-item h4 {
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile Devices (320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    /* Even better touch targets for small screens */
    a, button {
        min-height: 48px;
        padding: 1rem 1.25rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }
    
    /* Prevent hero content overflow */
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    
    /* Better button sizing */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        width: auto;
        max-width: 100%;
    }
}

/* Very Small Mobile Devices (320px) */
@media (max-width: 375px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
    }
    
    .hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    /* Compact navigation */
    .logo-text {
        font-size: 0.8rem;
    }
    
    .logo-name {
        font-size: 0.80rem !important;
    }
    
    .logo-tagline {
        font-size: 0.7rem !important;
    }
    
    .logo-icon {
        width: 60px !important;
    }
}

/* Special Text Styles */
.text-highlighted {
    background: linear-gradient(120deg, rgba(255, 223, 186, 0.8) 0%, rgba(255, 235, 205, 0.9) 50%, rgba(255, 223, 186, 0.8) 100%);
    padding: 0.3rem 1rem;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    color: var(--primary-navy);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(184, 115, 51, 0.3);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.2);
}

.text-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    border-radius: 10px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.text-handwriting {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.3em;
    color: var(--accent-copper);
    font-weight: 600;
    transform: rotate(-1deg);
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.text-handwriting::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-copper) 0%, var(--accent-copper) 80%, transparent 80%, transparent 100%);
    background-size: 8px 2px;
    opacity: 0.6;
}

/* Ultra-small Mobile Devices (320px) - Critical for smallest screens */
@media (max-width: 320px) {
    /* Container adjustments */
    .container {
        padding: 0 0.5rem !important;
        max-width: 100% !important;
    }
    
    /* Typography adjustments for 320px screens */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    /* Force all grid layouts to single column */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1fr 2fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 350px 1fr"],
    [style*="grid-template-columns: 300px 1fr"],
    [style*="grid-template-columns: 280px 1fr"],
    [style*="grid-template-columns: 250px 1fr"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Force all auto-fit grids to single column */
    [style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Fix all flex layouts */
    [style*="display: flex"] {
        flex-wrap: wrap !important;
    }
    
    [style*="gap: 4rem"] {
        gap: 1rem !important;
    }
    
    [style*="gap: 3rem"] {
        gap: 1rem !important;
    }
    
    [style*="gap: 2rem"] {
        gap: 0.8rem !important;
    }
    
    /* Padding reductions for 320px */
    [style*="padding: 4rem 3rem"] {
        padding: 1.5rem 1rem !important;
    }
    
    [style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
    
    [style*="padding: 2.5rem"] {
        padding: 1rem !important;
    }
    
    [style*="padding: 2rem"] {
        padding: 1rem !important;
    }
    
    /* Font size reductions */
    [style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
    }
    
    [style*="font-size: 3rem"] {
        font-size: 1.6rem !important;
    }
    
    [style*="font-size: 2.8rem"] {
        font-size: 1.5rem !important;
    }
    
    [style*="font-size: 2.5rem"] {
        font-size: 1.4rem !important;
    }
    
    [style*="font-size: 2.2rem"] {
        font-size: 1.3rem !important;
    }
    
    [style*="font-size: 2rem"] {
        font-size: 1.2rem !important;
    }
    
    [style*="font-size: 1.8rem"] {
        font-size: 1.1rem !important;
    }
    
    [style*="font-size: 1.6rem"] {
        font-size: 1rem !important;
    }
    
    [style*="font-size: 1.4rem"] {
        font-size: 0.95rem !important;
    }
    
    [style*="font-size: 1.3rem"] {
        font-size: 0.9rem !important;
    }
    
    /* Image sizing adjustments */
    [style*="max-width: 400px"] {
        max-width: 280px !important;
    }
    
    [style*="max-width: 350px"] {
        max-width: 250px !important;
    }
    
    [style*="max-width: 300px"] {
        max-width: 220px !important;
    }
    
    /* Icon sizing */
    [style*="width: 80px; height: 80px"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    [style*="width: 60px; height: 60px"] {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Button adjustments */
    [style*="padding: 1.5rem 3rem"] {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    [style*="padding: 1.2rem 2.5rem"] {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    [style*="padding: 18px 40px"] {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Margin reductions */
    [style*="margin: 4rem auto"],
    [style*="margin: 3rem auto"],
    [style*="margin: 2.5rem auto"] {
        margin: 1rem auto !important;
    }
    
    [style*="margin: 4rem 0"],
    [style*="margin: 3rem 0"],
    [style*="margin: 2.5rem 0"] {
        margin: 1rem 0 !important;
    }
    
    [style*="margin-bottom: 4rem"],
    [style*="margin-bottom: 3rem"],
    [style*="margin-bottom: 2.5rem"] {
        margin-bottom: 1rem !important;
    }
    
    [style*="margin-top: 4rem"],
    [style*="margin-top: 3rem"],
    [style*="margin-top: 2.5rem"] {
        margin-top: 1rem !important;
    }
    
    /* Remove all transform scale effects on smallest screens */
    [style*="transform: scale"] {
        transform: none !important;
    }
    
    /* Navigation adjustments */
    .navigation {
        padding: 0.5rem 0 !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    /* Card adjustments */
    .feature-card,
    .benefit-card,
    .testimonial-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Form adjustments */
    .cutout-form-wrapper {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    /* Hide decorative elements on ultra-small screens */
    [style*="position: absolute"][style*="background: radial-gradient"],
    [style*="position: absolute"][style*="clip-path: polygon"] {
        display: none !important;
    }
}

/* ===== UTILITY CLASSES FOR INLINE STYLE REPLACEMENT ===== */

/* === BACKGROUND UTILITY CLASSES === */
.hero-bg-navy-office {
    min-height: 60vh; 
    background-image: linear-gradient(rgba(26, 35, 126, 0.78), rgba(26, 35, 126, 0.78)), url('/assets/images/backgrounds/luxury-office.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
}

.hero-bg-navy-mountain {
    min-height: 60vh; 
    background-image: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.85)), url('/assets/images/backgrounds/mountain-success.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
}

.hero-bg-navy-default {
    background-image: linear-gradient(rgba(26, 35, 126, 0.75), rgba(26, 35, 126, 0.75)), url('https://images.unsplash.com/photo-1613425629581-ff62ded057e4?w=1600&h=1000&fit=crop'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
}

.hero-bg-cream-office {
    background-image: linear-gradient(rgba(247, 245, 242, 0.95), rgba(247, 245, 242, 0.95)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1600&h=1000&fit=crop'); 
    background-size: cover; 
    background-position: center;
}

.hero-bg-cream-methodology {
    background-image: linear-gradient(rgba(247, 245, 242, 0.9), rgba(247, 245, 242, 0.9)), url('https://images.unsplash.com/photo-1541533260371-b8fc9b596d84?w=1200&h=800&fit=crop'); 
    background-size: cover; 
    background-position: center;
}

.hero-bg-navy-exclusive {
    background-image: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.85)), url('https://plus.unsplash.com/premium_photo-1661938316795-02d427070b15?w=1200&h=800&fit=crop'); 
    background-size: cover; 
    background-position: center;
}

.section-bg-white {
    background: var(--bg-white);
}

.section-bg-cream {
    background: var(--bg-cream);
}

.section-bg-gradient-light {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.cta-bg-gradient {
    background: linear-gradient(135deg, #fafafa 0%, #f5f0e8 100%);
}

/* === COLOR UTILITY CLASSES === */
.text-copper {
    color: var(--accent-copper);
}

.text-copper-font-weight {
    color: var(--accent-copper); 
    font-weight: 600;
}

.text-navy {
    color: var(--primary-navy);
}

.text-white {
    color: white;
}

.text-white-90 {
    color: rgba(255,255,255,0.9);
}

.text-white-95 {
    color: rgba(255,255,255,0.95);
}

.text-gold {
    color: #ffc107;
}

.text-red {
    color: #dc3545;
}

.text-gray {
    color: var(--text-gray);
}

.text-dark {
    color: var(--text-dark);
}

.link-copper {
    color: var(--accent-copper); 
    font-weight: 600;
}

/* === SPACING UTILITY CLASSES === */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-25 { margin-top: 2.5rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-15 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-25 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.section-padding { padding: 60px 0; }
.section-padding-large { padding: 80px 0; }
.section-padding-xl { padding: 100px 0; }

.list-spaced li {
    margin-bottom: 10px;
}

/* === LAYOUT UTILITY CLASSES === */
.text-center { text-align: center; }

.flex-center-gap {
    display: flex; 
    align-items: center; 
    gap: 3rem;
}

.flex-center-gap-2 {
    display: flex; 
    align-items: center; 
    gap: 2rem;
}

.flex-center-gap-1 {
    display: flex; 
    align-items: center; 
    gap: 1rem;
}

.flex-center-wrap {
    display: flex; 
    justify-content: center; 
    gap: 1.5rem; 
    flex-wrap: wrap;
}

.flex-space-between {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.grid-2col-profile {
    display: grid; 
    grid-template-columns: 300px 1fr; 
    gap: 4rem; 
    align-items: center;
}

.grid-2col-testimonial {
    display: grid; 
    grid-template-columns: 200px 1fr; 
    gap: 3rem; 
    align-items: center;
}

.grid-2col-contact {
    display: grid; 
    grid-template-columns: 300px 1fr; 
    gap: 4rem; 
    align-items: center; 
    max-width: 1000px; 
    margin: 0 auto;
}

.grid-2col-authority {
    display: grid; 
    grid-template-columns: 1fr 350px; 
    gap: 3rem; 
    align-items: center;
}

.grid-2col-story {
    display: grid; 
    grid-template-columns: 1fr 300px; 
    gap: 3rem; 
    align-items: start;
}

.container-centered {
    max-width: 900px; 
    margin: 0 auto;
}

.container-centered-700 {
    max-width: 700px; 
    margin: 0 auto;
}

.relative-z1 {
    position: relative; 
    z-index: 1;
}

.absolute-decorative {
    position: absolute;
}

/* === VISUAL EFFECTS UTILITY CLASSES === */
.img-profile {
    width: 100%; 
    max-width: 300px; 
    border-radius: 15px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.img-showcase {
    width: 100%; 
    max-width: 600px; 
    border-radius: 20px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); 
    opacity: 0.95;
}

.img-premium {
    width: 100%; 
    border-radius: 15px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.shadow-light { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.shadow-medium { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); }
.shadow-heavy { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); }

.rounded-8 { border-radius: 8px; }
.rounded-10 { border-radius: 10px; }
.rounded-15 { border-radius: 15px; }
.rounded-20 { border-radius: 20px; }

.backdrop-blur { backdrop-filter: blur(10px); }

/* === TYPOGRAPHY UTILITY CLASSES === */
.heading-large {
    font-size: 2.2rem; 
    color: var(--primary-navy); 
    margin-bottom: 1.5rem;
}

.heading-copper {
    color: var(--accent-copper); 
    font-size: 1.8rem; 
    margin-bottom: 1rem;
}

.heading-section {
    color: #1a237e; 
    font-size: 36px; 
    margin-bottom: 15px;
}

.text-large {
    font-size: 1.2rem; 
    line-height: 1.7; 
    margin-bottom: 2rem; 
    color: var(--text-dark);
}

.text-small {
    font-size: 0.9rem; 
    color: var(--text-gray); 
    font-weight: 600;
}

.text-xs {
    font-size: 0.85rem; 
    color: var(--text-gray); 
    margin-top: 0.5rem;
}

.text-italic {
    font-style: italic; 
    color: var(--text-gray);
}

/* === FAQ SECTION STYLING === */
.faq-section-header {
    text-align: center; 
    margin-bottom: 50px;
}

.faq-section-desc {
    color: #666; 
    font-size: 18px; 
    max-width: 700px; 
    margin: 0 auto;
}

.faq-section-group {
    margin-bottom: 40px;
}

.faq-group-title {
    color: #b87333; 
    font-size: 20px; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #b87333;
}

/* === QUOTE AND BLOCKQUOTE STYLING === */
.quote-highlight {
    background: var(--bg-light-cream); 
    border-left: 4px solid var(--accent-copper); 
    padding: 1.5rem; 
    border-radius: 8px; 
    font-style: italic; 
    color: var(--text-dark); 
    margin: 0;
}

.quote-footer {
    margin-top: 1rem; 
    font-weight: 600; 
    color: var(--accent-copper);
}

/* === CTA AND BUTTON ENHANCEMENTS === */
.cta-geometric-bg {
    position: absolute; 
    background: linear-gradient(45deg, rgba(184, 115, 51, 0.05) 0%, rgba(184, 115, 51, 0.1) 100%); 
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.cta-button-premium {
    display: inline-block; 
    padding: 18px 40px; 
    background: linear-gradient(135deg, #b87333 0%, #d4905f 100%); 
    color: white; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    position: relative; 
    overflow: hidden;
}

.cta-button-outline {
    display: inline-block; 
    padding: 18px 40px; 
    background: transparent; 
    color: #1a237e; 
    text-decoration: none; 
    border: 3px solid #1a237e; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.shine-effect {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); 
    animation: shine 3s infinite;
}

/* === DECORATIVE ELEMENTS === */
.decorative-top-right {
    top: -50px; 
    right: -50px; 
    width: 200px; 
    height: 200px; 
    transform: rotate(15deg);
}

.decorative-bottom-left {
    bottom: -70px; 
    left: -70px; 
    width: 250px; 
    height: 250px; 
    transform: rotate(-20deg);
}

.luxury-showcase-bg {
    background: rgba(255,255,255,0.05); 
    padding: 2.5rem; 
    border-radius: 20px; 
    backdrop-filter: blur(10px);
}

.luxury-image-flex {
    flex: 1; 
    max-width: 400px;
}

.luxury-description-flex {
    flex: 1; 
    color: white;
}

.checklist-unstyled {
    list-style: none; 
    padding: 0;
}

.checklist-item {
    margin-bottom: 0.8rem; 
    padding-left: 1.5rem; 
    position: relative;
}

.checklist-icon {
    position: absolute; 
    left: 0; 
    color: var(--accent-copper);
}

/* === RESPONSIVE LAYOUT OVERRIDES === */
@media (max-width: 768px) {
    .grid-2col-profile,
    .grid-2col-testimonial,
    .grid-2col-contact,
    .grid-2col-authority,
    .grid-2col-story {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .flex-center-gap,
    .flex-center-gap-2 {
        flex-direction: column;
        gap: 2rem;
    }
    
    .container-centered,
    .container-centered-700 {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* ========================================
   BOOK PAGE UTILITY CLASSES
   ======================================== */

/* Layout Grid Classes */
.grid-book-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-stats-showcase {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.grid-pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-testimonials-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.grid-book-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.grid-chapter-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.grid-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.grid-amazon-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Background Classes */
.section-bg-gradient-cream {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #faf8f5 100%);
}

.section-bg-gradient-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
}

.section-bg-gradient-amazon {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e99 100%);
}

.card-pain-point {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.1);
    border-top: 4px solid var(--accent-copper);
    transition: transform 0.3s ease;
}

.card-pain-point:hover {
    transform: translateY(-5px);
}

.card-testimonial-premium {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(26, 35, 126, 0.12);
    border-top: 5px solid var(--accent-copper);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-testimonial-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(26, 35, 126, 0.15);
}

.card-guarantee {
    background: rgba(184, 115, 51, 0.15);
    border: 2px solid rgba(184, 115, 51, 0.5);
    border-radius: 15px;
    padding: 2rem;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.card-amazon-stats {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Typography Classes */
.text-star-rating {
    color: #ffc107;
}

.text-cooper {
    color: var(--accent-copper);
}

.text-cooper-link {
    color: var(--accent-copper);
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin: 0.2rem 0;
}

.text-gray-meta {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.3rem 0;
}

.text-gray-secondary {
    color: #666;
}

.text-gray-content {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

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

.text-section-title {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-copper);
}

.text-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.text-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.text-pain-point-title {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.text-guarantee-main {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

/* Avatar Classes */
.avatar-testimonial-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-copper), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.avatar-testimonial-medium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Quote Classes */
.quote-testimonial {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.quote-highlight {
    color: var(--primary-navy);
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

/* Button Extensions */
.btn-transparent-copper {
    background: transparent;
    border: 2px solid var(--accent-copper);
    color: var(--accent-copper);
}

.btn-copper-large {
    display: inline-block;
    background: var(--accent-copper);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.btn-copper-extra-large {
    display: inline-block;
    background: var(--accent-copper);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.4);
    margin: 0.5rem;
}

.btn-outline-copper {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-copper);
    color: var(--accent-copper);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

/* Positioning Classes */
.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.pos-z-1 {
    position: relative;
    z-index: 1;
}

.pos-decorative-circle-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 50%;
    opacity: 0.5;
}

.pos-decorative-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(184, 115, 51, 0.08);
    border-radius: 50%;
    opacity: 0.7;
}

.pos-list-number {
    position: absolute;
    left: 0;
    color: var(--accent-copper);
    font-weight: bold;
}

/* Spacing Classes */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }

.ml-4 { margin-left: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }
.p-6 { padding: 3rem; }
.p-8 { padding: 4rem; }

.pt-8 { padding-top: 4rem; }
.pb-0 { padding-bottom: 0; }
.pb-8 { padding-bottom: 4rem; }
.pl-4 { padding-left: 2rem; }

/* List Styling */
.list-styled {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

/* Additional Special Classes */
.book-cover-showcase {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-guarantee-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Additional utility classes for remaining patterns */
.text-chapter-number {
    font-size: 3.5rem; 
    color: var(--accent-copper); 
    font-weight: 700; 
    text-shadow: 0 2px 4px rgba(184, 115, 51, 0.3);
}

.text-chapter-subtitle {
    font-size: 1rem; 
    opacity: 0.85; 
    margin-top: 0.5rem; 
    line-height: 1.4;
}

.testimonial-header {
    display: flex; 
    align-items: center; 
    margin-bottom: 2rem;
}

.testimonial-name {
    color: var(--primary-navy); 
    margin: 0; 
    font-size: 1.4rem; 
    font-weight: 600;
}

.testimonial-role {
    color: #777; 
    margin: 0.5rem 0 0 0; 
    font-size: 1rem;
}

.testimonial-quote {
    color: #666; 
    margin: 0; 
    font-size: 1rem; 
    line-height: 1.6; 
    font-style: italic;
}

.testimonial-result {
    color: var(--primary-navy); 
    margin: 0; 
    font-weight: 500; 
    font-size: 1rem; 
    line-height: 1.6;
}

.pricing-card-title {
    color: var(--accent-copper); 
    font-size: 1.3rem; 
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 2.5rem; 
    font-weight: bold; 
    color: white; 
    margin: 0.5rem 0;
}

.pricing-card-subtitle {
    color: white; 
    opacity: 0.7; 
    font-size: 0.9rem;
}

/* Book-specific responsive overrides */
@media (max-width: 768px) {
    .grid-book-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .grid-stats-showcase {
        justify-content: center;
    }
    
    .grid-book-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-testimonials-premium {
        grid-template-columns: 1fr;
    }
    
    .card-pain-point,
    .card-testimonial-premium {
        padding: 2rem;
    }
    
    .text-section-title {
        font-size: 2rem;
    }
    
    .text-section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-guarantee-box {
        padding: 3rem 2rem;
    }
}

/* Additional utility classes for book order page */

/* Hero Background Variants */
.hero-bg-cancer {
    background-image: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.85)), url('/assets/images/backgrounds/medical-research.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
}

/* Glass Card Effect */
.card-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(255,255,255,0.2);
    margin: 2rem auto;
}

.card-glass-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(26, 35, 126, 0.3);
    max-width: 1000px;
}

/* Book Comparison Cards */
.card-comparison {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid #e5e5e5;
    position: relative;
}

.card-comparison-premium {
    background: linear-gradient(135deg, white 0%, #fff8dc 100%);
    border: 3px solid var(--accent-copper);
    box-shadow: 0 25px 60px rgba(184, 115, 51, 0.2);
    transform: scale(1.03);
}

.card-story {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.card-story-book {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-left: 4px solid #ccc;
}

.card-story-coaching {
    background: linear-gradient(135deg, #fff8dc 0%, white 100%);
    border-left: 4px solid var(--accent-copper);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.15);
}

.card-decision {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    margin: 3rem 0;
}

/* Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.icon-circle-navy {
    background: var(--primary-navy);
    color: white;
}

.icon-circle-copper {
    background: linear-gradient(135deg, var(--accent-copper) 0%, #d4a574 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

.icon-circle-copper-outline {
    background: rgba(184, 115, 51, 0.2);
    border: 2px solid var(--accent-copper);
    color: white;
}

.icon-circle-feature {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-circle-success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success-green);
}

.icon-circle-warning {
    background: rgba(220, 53, 69, 0.2);
    color: var(--error-red);
}

/* Badges and Labels */
.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-copper) 0%, #d4a574 100%);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

.badge-category {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-book {
    background: #6c757d;
    color: white;
}

.badge-coaching {
    background: var(--accent-copper);
    color: white;
}

.badge-premium {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--accent-copper);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-next-level {
    display: inline-block;
    background: rgba(184, 115, 51, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid-two-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.grid-two-equal-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-book-cover {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Lists */
.list-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.list-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #555;
}

.list-features-premium li {
    color: var(--primary-navy);
    font-weight: 600;
}

.list-challenges {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.list-challenges li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: #888;
}

.list-outcomes {
    list-style: none;
    padding: 0;
}

.list-outcomes li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.list-outcomes-success li {
    color: var(--primary-navy);
    font-weight: 600;
}

.list-book-benefits {
    line-height: 2;
    font-size: 1.1rem;
    list-style: none;
    padding: 0;
}

.list-book-benefits li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.decorative-circle-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(184, 115, 51, 0.1);
}

.decorative-circle-2 {
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(184, 115, 51, 0.05);
}

.decorative-radial-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.decorative-radial-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
}

.info-box-navy {
    background: rgba(26, 35, 126, 0.05);
    color: var(--primary-navy);
}

.info-box-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
}

.info-box-copper {
    background: rgba(184, 115, 51, 0.1);
    border: 2px solid rgba(184, 115, 51, 0.3);
    color: var(--primary-navy);
}

.info-box-white {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--accent-copper);
}

.info-box-copper-premium {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.2) 0%, rgba(184, 115, 51, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--accent-copper);
    position: relative;
}

/* Spacing Utilities (additional) */
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

.max-w-300 { max-width: 300px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-1000 { max-width: 1000px; }
.max-w-1200 { max-width: 1200px; }
.max-w-1400 { max-width: 1400px; }

/* Text Styles */
.text-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-hero-subtitle {
    color: var(--accent-copper);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.text-hero-description {
    color: rgba(255,255,255,0.95);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-section-large {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-section-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.text-price-large {
    font-size: 2.5rem;
    font-weight: 900;
}

.text-price-package {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.text-choice-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.text-comparison-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-challenge-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-why-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.text-story-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-story-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text-outcome-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-decision-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.text-bridge-title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-bridge-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.text-bridge-section {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Button Variants */
.btn-outline-navy {
    background: transparent;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-copper-gradient {
    background: linear-gradient(135deg, var(--accent-copper) 0%, #d4a574 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .grid-two-equal,
    .grid-two-equal-large,
    .grid-book-cover {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-comparison-premium {
        transform: none;
    }
    
    .text-hero-title {
        font-size: 2.5rem;
    }
    
    .text-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .text-hero-description {
        font-size: 1.1rem;
    }
    
    .text-section-large {
        font-size: 2rem;
    }
    
    .text-comparison-title {
        font-size: 1.5rem;
    }
    
    .text-why-title {
        font-size: 1.5rem;
    }
    
    .text-decision-title {
        font-size: 2rem;
    }
    
    .text-bridge-title {
        font-size: 1.8rem;
    }
    
    .card-glass,
    .card-comparison,
    .card-comparison-premium {
        padding: 2rem;
    }
    
    .card-glass-navy {
        padding: 2rem 1.5rem;
    }
    
    .badge-recommended {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* Icon spacing utilities */
.icon-list-item {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.icon-list-item-large {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

/* Book cover styling */
.img-book-cover {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Text size utilities */
.text-size-11 {
    font-size: 1.1rem;
}

.text-size-12 {
    font-size: 1.2rem;
}

/* Font weight utilities */
.font-weight-600 {
    font-weight: 600;
}

/* Additional positioning */
.relative-z2 {
    position: relative;
    z-index: 2;
}

/* Display utilities */
.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

/* Color utilities for icons in challenges list */
.text-light-gray {
    color: #ccc;
}


.img-light, .img-blue {
    border-radius:20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(184, 115, 51, 0.2) !important;
}

.img-light:hover, .img-blue:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(26, 35, 126, 0.3) !important;
}

.avatar-img {
    border-radius:20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(184, 115, 51, 0.2) !important;
}
.avatar-img:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(26, 35, 126, 0.3) !important;
}

.avatar {
    width: unset !important;
    height: unset !important;
}