/* Modern OVAI Theme - Advanced Interactive Design */
/* Colors: #12203A (Navy), #EDE7D4 (Cream), #F4C21D (Gold) */

:root {
    /* Color Palette */
    --color-navy: #12203A;
    --color-navy-light: #1a2f4f;
    --color-navy-dark: #0d1628;
    --color-cream: #EDE7D4;
    --color-cream-light: #f5f2e8;
    --color-cream-dark: #d9d1b8;
    --color-gold: #F4C21D;
    --color-gold-light: #f8d14a;
    --color-gold-dark: #d4a517;
    --color-white: #ffffff;
    --color-text-dark: #12203A;
    --color-text-light: #6b7280;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(18, 32, 58, 0.1);
    --shadow-md: 0 4px 6px rgba(18, 32, 58, 0.1);
    --shadow-lg: 0 10px 15px rgba(18, 32, 58, 0.1);
    --shadow-xl: 0 20px 25px rgba(18, 32, 58, 0.15);
    --shadow-gold: 0 8px 16px rgba(244, 194, 29, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all sections are visible */
section {
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: auto;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(18, 32, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 194, 29, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Typography - Clean Professional Fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: 0;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

p {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Hero Tagline - Solid Color, No Fade */
.hero-tagline {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
    font-weight: 500 !important;
    margin-bottom: 1.5rem !important;
    color: var(--color-navy) !important;
    letter-spacing: 0.01em;
    line-height: 1.4;
    background: none !important;
    -webkit-text-fill-color: var(--color-navy) !important;
    animation: none !important;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Services Title - Solid Color, No Fade */
.services-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: var(--color-cream) !important;
    letter-spacing: 0.01em;
    position: relative;
    background: none !important;
    -webkit-text-fill-color: var(--color-cream) !important;
    animation: none !important;
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .hero-tagline {
        color: var(--color-navy) !important;
        background: none !important;
        -webkit-text-fill-color: var(--color-navy) !important;
    }
    .services-title {
        color: var(--color-cream) !important;
        background: none !important;
        -webkit-text-fill-color: var(--color-cream) !important;
    }
}

/* Navigation Styles - Modern Glassmorphism */
.navbar {
    background: rgba(237, 231, 212, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(18, 32, 58, 0.1);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(237, 231, 212, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-navy) !important;
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
    text-decoration: none;
    letter-spacing: 0;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.brand-text {
    font-family: 'Roboto', sans-serif;
    color: var(--color-navy);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0;
    background: none;
    -webkit-text-fill-color: var(--color-navy);
}

.navbar-nav .nav-link {
    color: var(--color-navy) !important;
    font-weight: 600;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.2;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 300px;
    height: 300px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-navy) !important;
    background: rgba(244, 194, 29, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.navbar-nav .btn-nav {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy) !important;
    padding: 0.625rem 1.75rem;
    border-radius: 30px;
    margin-left: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.navbar-nav .btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.navbar-nav .btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.navbar-nav .btn-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(244, 194, 29, 0.4);
    color: var(--color-navy) !important;
}

.navbar-nav .btn-nav::after {
    display: none;
}

.navbar-toggler {
    border: 2px solid var(--color-navy);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.navbar-toggler:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(244, 194, 29, 0.25);
}

/* Hero Section - Modern Animated */
.hero--home {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 50%, var(--color-cream) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    will-change: transform;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.hero--home .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero--home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero--home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18, 32, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}


.hero--home h1 {
    margin-bottom: 1rem;
    opacity: 1;
    animation: fadeInUp 1s ease 0.3s forwards;
    color: var(--color-navy);
    font-family: 'Roboto', sans-serif;
    background: none;
    -webkit-text-fill-color: var(--color-navy);
}

.hero--home.hero--about h1 {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.hero--home p {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    animation: fadeInUp 1s ease 0.5s forwards;
    font-weight: 400;
    line-height: 1.7;
}

.hero--home p:not(.hero-tagline) {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 2.5rem;
}

.hero--home.hero--about p {
    color: rgba(255, 255, 255, 0.85);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    animation: fadeInUp 1s ease 0.7s forwards;
}

/* Advanced Button Styles */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(244, 194, 29, 0.5);
    color: var(--color-navy);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-cream);
    box-shadow: var(--shadow-lg);
}

.btn--secondary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(18, 32, 58, 0.4);
    color: var(--color-cream);
}

/* Section Styles - Modern with Animations */
.section--brown {
    background: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-white) 100%);
    padding: 6rem 0;
    position: relative;
    visibility: visible;
    opacity: 1;
    display: block;
}

.section--brown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section--brown h2 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-navy);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
}

.section--brown h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: 2px;
}

.section--brown ul {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.section--brown ul li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    opacity: 1;
    animation: fadeInLeft 0.6s ease forwards;
}

.section--brown ul li:nth-child(1) { animation-delay: 0.1s; }
.section--brown ul li:nth-child(2) { animation-delay: 0.2s; }
.section--brown ul li:nth-child(3) { animation-delay: 0.3s; }
.section--brown ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section--brown ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 194, 29, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.section--brown ul li:hover {
    padding-left: 3.5rem;
    color: var(--color-navy);
}

.section--brown ul li:hover::before {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: scale(1.2) rotate(360deg);
}

/* Modern Image Frame Wrapper with Attractive Gradients and Circles */
.image-frame-wrapper {
    position: relative;
    padding: 2rem;
    border-radius: 40px;
    opacity: 0;
    overflow: hidden;
    /* Animated gradient background */
    background: linear-gradient(135deg, 
        rgba(18, 32, 58, 0.08) 0%, 
        rgba(244, 194, 29, 0.12) 25%,
        rgba(18, 32, 58, 0.08) 50%,
        rgba(244, 194, 29, 0.12) 75%,
        rgba(18, 32, 58, 0.08) 100%);
    background-size: 300% 300%;
    animation: gradientFlow 8s ease infinite, fadeInRight 1s ease 0.3s forwards;
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Decorative circles in background */
.image-frame-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 15s ease-in-out infinite;
    z-index: 0;
}

.image-frame-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(18, 32, 58, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px rgba(18, 32, 58, 0.2),
        inset 0 0 0 2px rgba(237, 231, 212, 0.8);
    transition: all var(--transition-slow);
    z-index: 2;
    border: 2px solid rgba(244, 194, 29, 0.15);
}

/* Border ring is handled by .frame-border-ring element */

/* Glowing circle on image frame - decorative element */
.image-frame::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, 
        rgba(244, 194, 29, 0.5) 0%,
        rgba(244, 194, 29, 0.3) 30%,
        rgba(244, 194, 29, 0.1) 60%,
        transparent 80%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
    box-shadow: 
        0 0 40px rgba(244, 194, 29, 0.4),
        inset 0 0 20px rgba(244, 194, 29, 0.2);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Additional Decorative Circles */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.2) 0%, transparent 70%);
    animation-duration: 18s;
}

.circle-2 {
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(18, 32, 58, 0.15) 0%, transparent 70%);
    animation-duration: 15s;
    animation-direction: reverse;
}

.circle-3 {
    top: 50%;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.15) 0%, transparent 70%);
    animation-duration: 12s;
    transform: translateY(-50%);
}

/* Animated Border Ring - Rotating Gradient Border */
.frame-border-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 26px;
    z-index: -1;
    opacity: 0.8;
    /* Fallback for browsers that don't support conic-gradient */
    background: linear-gradient(135deg, 
        var(--color-gold) 0%,
        var(--color-navy) 25%,
        var(--color-gold) 50%,
        var(--color-navy) 75%,
        var(--color-gold) 100%);
    background-size: 300% 300%;
    animation: borderGlow 10s ease-in-out infinite;
    filter: blur(1px);
    transition: all var(--transition-base);
}

/* Use conic-gradient if supported for smoother rotation */
@supports (background: conic-gradient(from 0deg, red, blue)) {
    .frame-border-ring {
        background: conic-gradient(
            from 0deg,
            var(--color-gold) 0deg,
            var(--color-navy) 90deg,
            var(--color-gold) 180deg,
            var(--color-navy) 270deg,
            var(--color-gold) 360deg
        );
        background-size: auto;
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.35;
        transform: scale(0.98);
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
        background-position: 100% 50%;
    }
    100% {
        opacity: 0.4;
        transform: scale(0.99);
        background-position: 0% 50%;
    }
}

.image-frame:hover .frame-border-ring {
    opacity: 1;
    filter: blur(0px);
    animation-duration: 6s;
    box-shadow: 0 0 40px rgba(244, 194, 29, 0.45);
}


.image-frame:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 35px 70px rgba(18, 32, 58, 0.3),
        0 0 0 4px rgba(244, 194, 29, 0.5),
        inset 0 0 0 2px rgba(237, 231, 212, 1),
        0 0 40px rgba(244, 194, 29, 0.4);
}

.image-frame:hover::after {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 
        0 0 60px rgba(244, 194, 29, 0.7),
        inset 0 0 30px rgba(244, 194, 29, 0.3);
    animation-duration: 2s;
}

.section--brown img,
.section-image {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    transition: all var(--transition-slow);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(18, 32, 58, 0.1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section--brown img:hover,
.section-image:hover {
    transform: scale(1.02);
}

/* Image Placeholder with Modern Frame */
.image-frame .image-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, rgba(18, 32, 58, 0.05) 0%, rgba(244, 194, 29, 0.05) 100%);
    border: 2px dashed rgba(18, 32, 58, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    opacity: 1;
    position: relative;
    z-index: 1;
}


.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-content i {
    display: block;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-content p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.placeholder-content small {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.section--black {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 6rem 0;
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    display: block;
}

.section--black::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.section--black h2 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-cream);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.section--black h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

/* Advanced Services Cards - 3D Interactive */
.services-card {
    background: rgba(237, 231, 212, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all var(--transition-base);
    border: 2px solid rgba(244, 194, 29, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
    visibility: visible;
}

.services-card:nth-child(1) { animation-delay: 0.1s; }
.services-card:nth-child(2) { animation-delay: 0.2s; }
.services-card:nth-child(3) { animation-delay: 0.3s; }

.services-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.services-card:hover::before {
    opacity: 1;
}

.services-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    background: rgba(237, 231, 212, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(244, 194, 29, 0.3);
}

.services-card .icon {
    color: var(--color-gold);
    margin-bottom: 2rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.services-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--color-gold-light);
}

.services-card h5 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-cream) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0;
}

.services-card p {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Portfolio Styles */
.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 194, 29, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding-top: 1.5rem;
}

.portfolio-content h3 {
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Styles - Enterprise Design */
.footer {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    color: var(--color-cream);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-main {
    margin-bottom: 3rem;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 100%;
}

.footer-brand-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(237, 231, 212, 0.9);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
}

.footer-contact-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.footer-contact-item:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-item:hover i {
    transform: scale(1.2);
    color: var(--color-gold-light);
}

/* Footer Section Titles */
.footer-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer p {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.8);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    background: none !important;
    -webkit-text-fill-color: rgba(237, 231, 212, 0.8) !important;
    animation: none !important;
}

.footer .text-center p {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.6) !important;
    font-size: 0.9rem;
    background: none !important;
    -webkit-text-fill-color: rgba(237, 231, 212, 0.6) !important;
    animation: none !important;
}


/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    display: inline-block;
    font-weight: 400;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 4px;
}

/* Footer Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(244, 194, 29, 0.15);
    margin: 3rem 0 2rem;
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 194, 29, 0.1);
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.6);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-family: 'Roboto', sans-serif;
    color: rgba(237, 231, 212, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    font-weight: 400;
}

.footer-legal-link:hover {
    color: var(--color-gold);
}

.footer-separator {
    color: rgba(237, 231, 212, 0.3);
    margin: 0 0.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main {
        margin-bottom: 2rem;
    }
    
    .footer-brand-title {
        font-size: 1.75rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero--home {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero--home h1 {
        font-size: 2.5rem;
    }
    
    .hero--home p {
        font-size: 1.1rem;
    }
    
    .btn-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .navbar-nav .btn-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .section--brown,
    .section--black {
        padding: 4rem 0;
    }
    
    .services-card {
        margin-bottom: 2rem;
    }
}

/* About Page Enhancements */
.hero--about {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: #0d1628 url('../images/banner.jpg') center/cover no-repeat;
}

.hero--about.hero--home::before,
.hero--about.hero--home::after {
    display: none;
}

.hero--about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(13, 22, 40, 0.98), rgba(13, 22, 40, 0.9) 55%, rgba(13, 22, 40, 0.8));
    z-index: 0;
}

.hero--about__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero--about h1,
.hero--about p,
.hero--about .text-light {
    color: #ffffff;
}

.hero--about .text-gold {
    color: var(--color-gold);
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
}

.letter-spaced {
    letter-spacing: 0.4em;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
}

.hero-impact-card {
    margin: 1.75rem auto 1rem;
    padding: 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-navy);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.hero-cta-row .btn {
    min-width: 180px;
}

.hero-cta-meta {
    flex-basis: 100%;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.about-stats {
    position: relative;
}

.about-stat-card {
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--color-navy);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(18, 32, 58, 0.08);
    pointer-events: none;
}

.stat-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(244, 194, 29, 0.15);
    color: var(--color-gold);
    font-size: 1.4rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--color-navy);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-dark);
}

.stat-caption {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.about-content-grid {
    position: relative;
}

.about-card {
    background: var(--color-cream-light);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 194, 29, 0.05), transparent 60%);
    pointer-events: none;
}

.about-card--quote {
    background: linear-gradient(135deg, rgba(237, 231, 212, 0.95), rgba(244, 194, 29, 0.15));
}

.about-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.about-checklist li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.about-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-pill {
    border: 1px solid rgba(18, 32, 58, 0.2);
    border-radius: 999px;
    padding: 0.4rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.6);
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-highlight-card {
    background: rgba(18, 32, 58, 0.9);
    color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.about-highlight-card .label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.about-highlight-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-roadmap {
    position: relative;
    overflow: hidden;
}

.about-roadmap__timeline {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.roadmap-phase {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.roadmap-phase h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.roadmap-phase h3 span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin-left: 0.5rem;
}

.roadmap-phase ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.phase-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(244, 194, 29, 0.15);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-security-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1.5rem;
}

.about-security-card ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
    color: var(--color-text-dark);
}

.about-bottom-cta {
    margin-top: 3rem;
}

@media (max-width: 991.98px) {
    .hero-cta-row {
        flex-direction: column;
    }
    
    .hero-cta-meta {
        text-align: center;
    }
    
    .roadmap-phase {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero--about {
        padding: 4rem 0 3rem;
    }
    
    .about-card,
    .about-stat-card {
        padding: 1.5rem;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .fade-in-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-gold {
    color: var(--color-gold) !important;
}

.text-navy {
    color: var(--color-navy) !important;
}

.text-cream {
    color: var(--color-cream) !important;
}

/* Contact Page Styles */
.hero--contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 22, 40, 0.96), rgba(13, 22, 40, 0.88)), url('../images/hero-texture.jpg') center/cover no-repeat;
    animation: fadeIn 1.5s ease-in-out;
    padding-top: 6.5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.hero--contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(244, 194, 29, 0.35), transparent 60%);
    pointer-events: none;
    opacity: 0.8;
}

.hero--contact .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.hero--contact .hero-impact-card {
    margin: 2rem auto;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero--contact .hero-cta-row {
    justify-content: center;
    gap: 1rem;
}

.hero--contact .hero-cta-meta {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero--contact__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-metric-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(244, 194, 29, 0.15);
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-metric-card__value {
    color: var(--color-cream);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.hero-metric-card__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.hero--services {
    background: linear-gradient(135deg, rgba(13, 22, 40, 0.95), rgba(13, 22, 40, 0.85)), url('../images/hero-texture.jpg') center/cover no-repeat;
    padding: 6rem 0 5rem;
    position: relative;
}

.hero--services .hero-cta-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero--services .hero-cta-row .btn {
    min-width: 190px;
}

.services-overview__list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--color-text-light);
}

.services-overview__list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.7;
}

.services-overview__list li::before {
    content: '\2713';
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
    margin-top: 0.2rem;
}

.services-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-overview .chip {
    background: rgba(244, 194, 29, 0.15);
    color: var(--color-navy);
    font-weight: 600;
}

.services-spotlight {
    position: relative;
}

.services-spotlight__card {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--color-white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-xl);
    max-width: 260px;
}

.services-spotlight__card h4 {
    color: var(--color-navy);
    font-size: 1.1rem;
}

.services-spotlight__card p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.section--black .services-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    color: var(--color-cream);
    min-height: 100%;
}

.section--black .services-card h3 {
    color: var(--color-white);
}

.section--black .services-card .icon {
    color: var(--color-gold);
}

.section--black .services-card p {
    color: rgba(237, 231, 212, 0.9);
}

.section--coaches {
    background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.section--coaches::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(244, 194, 29, 0.15), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.section--coaches .container {
    position: relative;
    z-index: 1;
}

.coach-section__header h2 {
    color: var(--color-white);
    max-width: 720px;
    margin: 0 auto 1rem;
}

.coach-section__lead {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.coach-section__eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.coach-section__cta .btn-light {
    color: var(--color-navy);
    font-weight: 600;
    border: none;
}

.coach-section__cta .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.coach-section__cta .btn-outline-light:hover {
    background: var(--color-cream);
    color: var(--color-navy);
}

.coach-filter .practice-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-cream);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.coach-filter .practice-filter-btn.active,
.coach-filter .practice-filter-btn:hover {
    background: rgba(244, 194, 29, 0.25);
    color: var(--color-navy);
    border-color: rgba(244, 194, 29, 0.4);
}

.coach-card-grid {
    margin-top: 2rem;
}

.coach-profile-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.coach-profile-card__top {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.coach-profile-card h4 {
    color: var(--color-white);
}

.coach-role {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.coach-profile-card__bio {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.coach-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coach-pill {
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 194, 29, 0.2);
    color: var(--color-cream);
    font-size: 0.85rem;
    font-weight: 600;
}

.coach-profile-card__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.coach-profile-card__list li {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.6;
}

.coach-profile-card__list li::before {
    content: '\2713';
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
    margin-top: 0.2rem;
}

.coach-profile-card__footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: auto;
    width: 100%;
}

.coach-stat {
    min-width: 120px;
}

.coach-stat__value {
    margin: 0;
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.4rem;
}

/* Portfolio Page */
.hero--portfolio {
    background: linear-gradient(135deg, rgba(18, 32, 58, 0.95), rgba(13, 22, 40, 0.9));
    padding: 6rem 0 5rem;
}

.hero--portfolio .hero-cta-row .btn {
    min-width: 190px;
}

.section--portfolio {
    background: linear-gradient(160deg, var(--color-navy-dark), var(--color-navy));
    color: var(--color-cream);
}

.section--portfolio h2 {
    color: var(--color-white);
}

.section--portfolio .lead {
    color: rgba(255, 255, 255, 0.85);
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.portfolio-card__body p {
    color: rgba(255, 255, 255, 0.85);
}

.portfolio-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.portfolio-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.portfolio-list li::before {
    content: '\2713';
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
    margin-top: 0.1rem;
}

.portfolio-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.portfolio-pill {
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 194, 29, 0.2);
    color: var(--color-cream);
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.portfolio-stat__value {
    margin: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.portfolio-stat__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-card .btn-outline-light {
    border-radius: 999px;
    padding-inline: 1.5rem;
}

.portfolio-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.coach-stat__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.coach-profile-card .btn--primary {
    white-space: nowrap;
    margin-left: auto;
}
.contact-cta-card .btn-primary,
.coach-card .btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: none;
    color: var(--color-navy);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.contact-cta-card .btn-primary:hover,
.coach-card .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 28px rgba(244, 194, 29, 0.45);
    color: var(--color-navy);
}

.contact-cta-card .btn-outline-primary {
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    font-weight: 600;
}

.contact-cta-card .btn-outline-primary:hover {
    background: var(--color-navy);
    color: var(--color-cream);
}

.contact-cta-card {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(18, 32, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-cta-card__actions .btn {
    border-radius: 12px;
}

.contact-cta-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(18, 32, 58, 0.1);
}

.kicker {
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.letter-spacing-sm {
    letter-spacing: 0.08em;
}

.section--cream {
    background: var(--color-cream-light);
}

.contact-overview__list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.contact-overview__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.contact-overview__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.contact-overview__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 194, 29, 0.15);
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.contact-detail-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(18, 32, 58, 0.06);
    min-height: 230px;
}

.contact-detail-card a {
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
}

.contact-detail-card a:hover {
    color: var(--color-gold);
}

.contact-detail-card h4 {
    margin-bottom: 0.25rem;
}

.contact-detail-card__value {
    font-weight: 700;
    color: var(--color-navy);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(18, 32, 58, 0.08);
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section-heading {
    text-align: center;
}

.section-heading p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.contact-form-section .card {
    border: 1px solid rgba(18, 32, 58, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form__list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.contact-form__list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.contact-form__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.contact-form__badge {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(18, 32, 58, 0.06);
    border: 1px solid rgba(18, 32, 58, 0.08);
}

.contact-form__badge i {
    font-size: 1.2rem;
    color: var(--color-navy);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(18, 32, 58, 0.15);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(244, 194, 29, 0.25);
}

.coach-card .services-card {
    background: var(--color-white);
    border: 1px solid rgba(18, 32, 58, 0.08);
    box-shadow: var(--shadow-lg);
    color: var(--color-text-dark);
}

.coach-card .services-card p,
.coach-card .services-card ul li {
    color: var(--color-text-light);
}

.coach-card .services-card ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.coach-card .services-card ul li {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.6;
}

.coach-card .services-card ul li::before {
    content: '\2713';
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    display: inline-block;
    text-align: center;
}

.contact-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.contact-step-card {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 1px solid rgba(18, 32, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.contact-step-card__index {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(244, 194, 29, 0.2);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .hero--contact .hero-cta-row {
        flex-direction: column;
    }

    .hero--contact .hero-cta-row .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .contact-cta-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-detail-card {
        min-height: auto;
    }

    .hero--contact__stats {
        grid-template-columns: 1fr;
    }
}

.coach-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-cream);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    box-shadow: 0 6px 18px rgba(18, 32, 58, 0.12);
    font-size: 1.1rem;
}

.practice-filter-btn {
    min-width: 120px;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
}

.practice-filter-btn.active {
    background: linear-gradient(135deg, rgba(244,194,29,0.15), rgba(244,194,29,0.05));
    border: 1px solid rgba(244,194,29,0.15);
    color: var(--color-navy);
}

.practice-filter-btn:hover {
    background: rgba(244, 194, 29, 0.2);
    color: #12203A;
}

/* Improve visibility of Start 4-Step AI Readiness button */
.section--brown .btn-outline-light {
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    font-weight: 600;
    background-color: rgba(18, 32, 58, 0.1);
    transition: all var(--transition-base);
}

.section--brown .btn-outline-light:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 8px 16px rgba(244, 194, 29, 0.4);
    transform: translateY(-2px);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Service Cards 3D Transform */
.services-card {
    transform-style: preserve-3d;
    transition: transform var(--transition-base);
}

/* Glassmorphism Enhancement */
.glass-effect {
    background: rgba(237, 231, 212, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.coach-card .services-card.glass-effect {
    background: var(--color-white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(18, 32, 58, 0.08);
}

.coach-card .services-card h4 {
    color: var(--color-navy);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Glow Effect */
.hover-glow {
    transition: all var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(244, 194, 29, 0.5);
}

/* Services Page Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: var(--color-text-dark);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 194, 29, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.feature-list li:hover {
    padding-left: 3.5rem;
    color: var(--color-navy);
}

.feature-list li:hover::before {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: scale(1.2) rotate(360deg);
}

.services-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(244, 194, 29, 0.2);
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 194, 29, 0.15);
    border-color: var(--color-gold);
}

.services-card .icon {
    font-size: 2rem;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.services-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--color-gold-light);
}

.services-card h3 {
    color: var(--color-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Roadmap Generator Styles */
.hero--roadmap {
    background: linear-gradient(130deg, rgba(13, 22, 40, 0.98), rgba(13, 22, 40, 0.9)), url('../images/banner.jpg') center/cover no-repeat;
}

.roadmap-container {
    max-width: 900px;
    margin: 0 auto;
}

.generator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.roadmap-input {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid rgba(18, 32, 58, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    font-size: 1rem !important;
    min-height: 150px;
    transition: all var(--transition-base);
    color: var(--color-text-dark) !important;
}

.roadmap-input:focus {
    outline: none !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 4px rgba(244, 194, 29, 0.15) !important;
}

.roadmap-result {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.roadmap-content {
    color: var(--color-text-dark);
}

.roadmap-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.roadmap-list li {
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

/* Coming Soon Page */
.hero--coming-soon {
    background: linear-gradient(135deg, rgba(18, 32, 58, 0.96), rgba(10, 18, 34, 0.9));
    padding: 6rem 0 5rem;
}

.coming-countdown {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-box {
    width: 150px;
    padding: 1.25rem 1rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.countdown-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(244, 194, 29, 0.25), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.countdown-ring {
    width: 110px;
    height: 110px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    --progress-angle: 0deg;
    background:
        conic-gradient(var(--color-gold) var(--progress-angle), rgba(255, 255, 255, 0.15) var(--progress-angle) 360deg),
        radial-gradient(circle at center, rgba(18, 32, 58, 0.9) 65%, transparent 66%);
}

.countdown-ring::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: rgba(5, 10, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-value {
    position: relative;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.08em;
}

.countdown-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.coming-form .form-control,
.coming-form .form-select {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(18, 32, 58, 0.15);
}

.coming-form .form-control:focus,
.coming-form .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(244, 194, 29, 0.2);
}
