/* 
 * Andrew Simmons Wrestling - Custom Styles
 * Color Scheme: Black, White, Orange (#f37021)
 * Mobile-first responsive design
 */

/* CSS Variables for consistent theming */
:root {
    --primary-orange: #f37021;
    --primary-black: #000000;
    --primary-white: #ffffff;
    --grey-dark: #6c757d;
    --grey-light: #f8f9fa;
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Button Styles */
.btn-orange {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #d85e1a;
    border-color: #d85e1a;
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.3);
}

/* Header Section */
.header-section {
    background-color: var(--primary-white);
    border-bottom: 1px solid #eee;
}

.logo-container {
    width: 60px;
    height: 60px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Styles */
.navbar {
    padding: 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem !important;
    color: var(--primary-white) !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.bg-black {
    background-color: var(--primary-black) !important;
}

.bg-grey {
    background-color: var(--grey-dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--grey-light);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-coach.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-button-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Text Bar */
.hero-text-bar {
    padding: 2rem 0;
}

.hero-bar-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero-bar-subtitle {
    font-size: 1.2rem;
    color: var(--grey-dark);
    font-weight: 400;
}

/* Legacy hero styles for other pages */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    text-align: center;
}

.coach-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    margin-top: 1.5rem;
}

.hero-welcome {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Media Section */
.media-section {
    background-color: var(--grey-light);
}

.section-header {
    padding: 1.5rem 0;
}

.media-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    display: none !important;
    opacity: 0 !important;
}

.media-card:hover .card-overlay {
    opacity: 1;
}

.play-icon,
.gallery-icon {
    font-size: 3rem;
    color: var(--primary-orange);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    text-align: center;
}

.card-description {
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Event Ticker Styles */
.event-ticker-container {
    background-color: var(--primary-black);
    color: var(--primary-white);
    overflow: hidden;
    white-space: nowrap;
    border-top: 3px solid var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
}

.event-ticker {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
}

.ticker-content {
    display: inline-block;
    animation: scroll-left 60s linear infinite;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.ticker-item {
    margin-right: 100px;
    color: var(--primary-white);
}

.ticker-item:nth-child(odd) {
    color: var(--primary-orange);
}

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

/* Events Section */
.events-section {
    background-color: var(--primary-white);
}

.calendar-section {
    position: relative;
    background-color: var(--grey-light);
}

.calendar-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f5f5f5" width="1200" height="600"/><text x="600" y="300" font-family="Arial" font-size="20" fill="%23aaa" text-anchor="middle">Calendar Background Image</text></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.calendar-container {
    position: relative;
    z-index: 2;
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.5rem;
}

.calendar-grid {
    max-width: 100%;
    margin: 0 auto;
}

.calendar-day-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 1rem;
}

.day-label {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 0.75rem;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.calendar-date {
    aspect-ratio: 1;
    background-color: var(--primary-white);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-date:hover {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.calendar-date.has-event {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    font-weight: 700;
}

.calendar-date.has-event::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-white);
    border-radius: 50%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-black), #333);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.contact-item p {
    color: #ccc;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a !important;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-orange);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .event-ticker-container {
        height: 40px;
    }
    
    .event-ticker {
        height: 40px;
        line-height: 40px;
    }
    
    .ticker-content {
        font-size: 0.9rem;
    }
    
    .ticker-item {
        margin-right: 80px;
    }
    
    .brand-title {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .biography-content {
        padding: 2rem;
    }
    
    .bio-section {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .custom-tabs .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin: 0 0.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .quote-icon i {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .logo-container {
        width: 50px;
        height: 50px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .coach-image-container {
        width: 150px;
        height: 150px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        text-align: center;
    }
    
    .calendar-container {
        padding: 1.5rem;
    }
    
    .day-label {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .calendar-date {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .calendar-background {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .event-ticker-container {
        height: 35px;
    }
    
    .event-ticker {
        height: 35px;
        line-height: 35px;
    }
    
    .ticker-content {
        font-size: 0.8rem;
    }
    
    .ticker-item {
        margin-right: 60px;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .biography-content {
        padding: 1.5rem;
    }
    
    .bio-section {
        padding-left: 1rem;
        margin-left: 0.25rem;
    }
    
    .about-cta {
        padding: 1.5rem;
    }
    
    .custom-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin: 0 0.1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .quote-icon i {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .btn-orange {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    
    .calendar-grid {
        font-size: 0.8rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* About Page Styles */
.about-section {
    background-color: var(--grey-light);
}

.page-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto;
}

.coach-profile-image img {
    border: 4px solid var(--primary-orange);
    border-radius: 15px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biography-content {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.bio-section {
    border-left: 4px solid var(--primary-orange);
    padding-left: 2rem;
    margin-left: 1rem;
}

.bio-heading {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-heading i {
    color: var(--primary-orange);
}

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

.achievement-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.achievement-list li:before {
    content: '🏆';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.achievement-list li:last-child {
    border-bottom: none;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-black), #333);
    color: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.about-cta h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-white);
}

/* Custom Tabs */
.custom-tabs {
    border-bottom: 3px solid var(--primary-orange);
    margin-bottom: 2rem;
}

.custom-tabs .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-dark);
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.custom-tabs .nav-link.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    background: none;
}

/* Testimonials Styles */
.testimonials-container {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-orange);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--grey-light);
    padding-top: 1rem;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-title {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d85e1a;
}

/* Instruction Page Styles */
.instruction-section {
    background-color: var(--grey-light);
}

.video-section {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-description {
    color: var(--grey-dark);
    font-size: 1.1rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-black), #333);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0" opacity="0.1"/></svg>');
    background-size: 20px 20px;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.video-placeholder h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.premium-section {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.premium-header {
    border-bottom: 2px solid var(--grey-light);
    padding-bottom: 1rem;
}

.premium-description {
    color: var(--grey-dark);
    font-size: 1.1rem;
}

.premium-video-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.premium-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.premium-video-card.locked {
    border-color: var(--primary-orange);
    position: relative;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.lock-overlay {
    display: none !important;
    opacity: 0 !important;
}

.lock-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.card-content {
    padding: 1.5rem;
}

.video-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.schedule-section {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.schedule-card {
    background: linear-gradient(135deg, var(--grey-light), var(--primary-white));
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid var(--primary-orange);
    position: relative;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.lock-badge {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.schedule-description {
    font-size: 1.1rem;
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
}

.schedule-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.schedule-actions {
    border-top: 2px solid var(--grey-light);
    padding-top: 1.5rem;
}

/* Modal Customization */
.modal-content {
    border-radius: 15px;
    border: 2px solid var(--primary-orange);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-orange), #d85e1a);
    color: var(--primary-white);
    border-radius: 13px 13px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-title {
    font-family: var(--font-primary);
    font-weight: 600;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 112, 33, 0.25);
}

/* Mobile Responsive for Instruction Page */
@media (max-width: 768px) {
    .video-placeholder {
        padding: 2rem;
    }
    
    .video-icon {
        font-size: 3rem;
    }
    
    .video-placeholder h4 {
        font-size: 1.3rem;
    }
    
    .premium-section {
        padding: 1.5rem;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .schedule-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .lock-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .video-placeholder {
        padding: 1.5rem;
    }
    
    .video-icon {
        font-size: 2.5rem;
    }
    
    .premium-section {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .schedule-card {
        padding: 1rem;
    }
    
    .btn-orange,
    .btn-outline-orange {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Athlete Portal Styles */
.portal-body {
    background-color: var(--grey-light);
}

.combined-header {
    background: var(--primary-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.combined-header .navbar {
    padding: 0.75rem 0;
}

.brand-logo {
    width: 35px;
    height: 35px;
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-white);
}

.athlete-profile-nav {
    margin-left: auto;
}

.profile-info {
    display: flex;
    align-items: center;
}

.profile-picture-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    object-fit: cover;
}

.profile-details-sm {
    line-height: 1.2;
}

.athlete-name-sm {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-white);
    margin-bottom: 0;
}

.athlete-level-sm {
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 0;
}

.quick-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px 6px;
    min-width: 16px;
    text-align: center;
}

.portal-nav-section {
    background: linear-gradient(135deg, var(--primary-white), var(--grey-light));
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 0 0;
}

.portal-header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.portal-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.portal-subtitle {
    color: var(--grey-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.portal-tabs {
    border-bottom: 2px solid var(--primary-orange);
    justify-content: center;
    background: transparent;
}

.portal-tabs .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--grey-dark);
    border: none;
    padding: 1rem 1.5rem;
    margin: 0 0.25rem;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.portal-tabs .nav-link:hover {
    color: var(--primary-orange);
    background: rgba(243, 112, 33, 0.1);
    border-bottom-color: var(--primary-orange);
}

.portal-tabs .nav-link.active {
    color: var(--primary-orange);
    background: var(--primary-white);
    border-bottom-color: var(--primary-orange);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.portal-main {
    padding: 1.5rem 0;
    min-height: 75vh;
    background: var(--grey-light);
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--grey-dark);
    margin-bottom: 0;
}

/* Session Styles */
.session-header {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.session-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sessions-grid {
    margin-top: 1rem;
}

.session-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.session-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.session-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-white);
    font-size: 3rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.session-card:hover .play-overlay {
    opacity: 1;
}

.session-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-white);
}

.session-tag.technique { background: #28a745; }
.session-tag.live { background: #dc3545; }
.session-tag.strategy { background: #6f42c1; }
.session-tag.competition { background: var(--primary-orange); }

.session-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: var(--primary-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.session-info {
    padding: 1.5rem;
}

.session-title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.session-date {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.session-notes {
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.session-actions {
    display: flex;
    gap: 0.5rem;
}

.completed {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: var(--primary-white) !important;
}

/* Goals & Focus Styles */
.goals-section {
    padding: 1rem 0;
}

.goals-card, .focus-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--grey-light);
    gap: 1rem;
}

.card-header .section-title {
    margin-bottom: 0;
    flex: 1;
}

.card-header .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.goal-item, .focus-item {
    background: var(--grey-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.goal-item:hover, .focus-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.goal-content, .focus-content {
    flex: 1;
}

.goal-title, .focus-title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.goal-description, .focus-description {
    color: var(--grey-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.goal-progress {
    margin-bottom: 0.5rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    margin-bottom: 0.5rem;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.focus-item.active {
    border-left: 4px solid var(--primary-orange);
}

.focus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.focus-period {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.focus-metrics {
    display: flex;
    gap: 1rem;
}

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

.metric-label {
    font-weight: 500;
    color: var(--grey-dark);
    text-align: center;
}

.metric-value {
    font-weight: 600;
    color: var(--primary-orange);
    text-align: center;
}

/* Center metrics on camps and media pages */
.metrics-container,
.event-metrics,
.media-metrics,
.stats-container,
.statistics-section {
    text-align: center;
}

.metric-item,
.stat-card,
.event-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.focus-status.completed {
    color: #28a745;
    font-weight: 600;
}

/* Strategy Styles */
.strategy-section {
    padding: 1rem 0;
}

.strategy-main {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.strategy-card .card-header {
    border-bottom: none;
    margin-bottom: 0;
    padding: 1.5rem;
}

.strategy-card .card-header .d-flex {
    gap: 1.5rem;
    flex-wrap: wrap;
}

.strategy-card .card-header h4 {
    flex: 1;
    min-width: 200px;
}

.strategy-card .card-body {
    padding: 1.5rem;
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--grey-light);
}

.strategy-controls {
    display: flex;
    gap: 0.5rem;
}

.strategy-card {
    background: var(--grey-light);
    border-radius: 10px;
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
}

.scouting-item, .match-plan-item {
    background: var(--primary-white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-orange);
}

.opponent-info h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.opponent-details {
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.scouting-notes p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-date {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.strategy-phase {
    margin-bottom: 1rem;
}

.strategy-phase h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.strategy-phase ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.strategy-phase li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Sidebar Styles */
.strategy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.upcoming-competitions, .past-competitions {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.upcoming-competitions h4, .past-competitions h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.competition-item {
    background: var(--grey-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.competition-item h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.competition-date, .competition-location {
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.competition-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.competition-status.prep {
    background: #ffc107;
    color: #000;
}

.competition-status.upcoming {
    background: var(--primary-orange);
    color: var(--primary-white);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--grey-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.result-outcome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.outcome-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.outcome-badge.win {
    background: #28a745;
    color: var(--primary-white);
}

.outcome-badge.loss {
    background: #dc3545;
    color: var(--primary-white);
}

/* Strategy Library Styles */
.strategy-library {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8533 100%);
}

.strategy-quick-card {
    background: var(--primary-white);
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.strategy-quick-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
    transform: translateY(-5px);
}

.strategy-quick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--grey-light);
}

.strategy-quick-header h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
}

.strategy-quick-meta {
    margin-bottom: 0.75rem;
    color: var(--grey-dark);
}

.strategy-quick-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-quick-stats .stat-item {
    font-size: 0.875rem;
    color: var(--grey-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strategy-quick-stats .stat-item i {
    color: var(--primary-orange);
}

.match-details h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.match-details p {
    margin-bottom: 0;
    color: var(--grey-dark);
    font-size: 0.9rem;
}

.result-date {
    color: var(--grey-dark);
    font-size: 0.8rem;
}

/* Questions Styles */
.questions-section {
    padding: 1rem 0;
}

.question-form-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.question-form .form-label {
    font-weight: 600;
    color: var(--primary-black);
}

.question-history-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.question-history-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.question-item {
    background: var(--grey-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
}

.question-item.answered {
    border-left-color: #28a745;
}

.question-item.pending {
    border-left-color: #ffc107;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.question-header h6 {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0;
}

.question-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.question-status.answered {
    color: #28a745;
}

.question-status.pending {
    color: #ffc107;
}

.question-preview {
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.question-date {
    color: var(--grey-dark);
    font-size: 0.8rem;
}

/* Notification Styles */
.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--grey-light);
    transition: background-color 0.3s ease;
}

.notification-item:hover {
    background-color: var(--grey-light);
}

.notification-item.unread {
    background-color: rgba(243, 112, 33, 0.1);
    border-left: 4px solid var(--primary-orange);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-content h6 {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.notification-content p {
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.text-orange {
    color: var(--primary-orange) !important;
}

/* Camps & Events Page Styles */
.camps-hero-section {
    background: linear-gradient(135deg, var(--primary-black), var(--grey-dark));
    color: var(--primary-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.camps-hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background-image: url('../images/wrestling-action-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: 1;
    transform: rotate(-20deg);
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem 0 2rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Event Ticker */
.event-ticker-container {
    background: var(--primary-orange);
    color: var(--primary-white);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.75rem 0;
}

.event-ticker {
    display: inline-block;
    animation: scroll-left 60s linear infinite;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
}

.ticker-item {
    display: inline-block;
    margin-right: 4rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Event Cards */
.events-grid {
    margin-top: 2rem;
}

.event-card {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-event {
    border: 3px solid var(--primary-orange);
    background: linear-gradient(145deg, var(--primary-white), #fafafa);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date-overlay {
    display: none !important;
    opacity: 0 !important;
}

.date-month {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--grey-dark);
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
}

.event-description {
    color: var(--grey-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.event-price {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-orange);
}

.price-note {
    font-size: 0.9rem;
    color: var(--grey-dark);
    font-weight: 400;
}

.event-spots {
    color: var(--grey-dark);
    font-size: 0.9rem;
}

/* Calendar Styles for Events Page */
.calendar-section {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calendar-container {
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-black);
    margin: 0;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--grey-dark);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.calendar-day:hover {
    background: var(--grey-light);
}

.calendar-day.today {
    background: var(--primary-orange);
    color: var(--primary-white);
}

.calendar-day.has-event {
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary-orange);
    font-weight: 700;
}

.calendar-day.empty {
    cursor: default;
    color: transparent;
}

.event-dot {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
}

/* Quick Info Section */
.quick-info-section .info-card {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.info-header {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1rem;
    text-align: center;
}

.info-header h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0;
}

.info-content {
    padding: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.info-item strong {
    color: var(--primary-black);
    font-weight: 700;
}

/* Results Section */
.results-grid {
    margin-top: 1.5rem;
}

.result-card {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-header h5 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

.result-date {
    color: var(--grey-dark);
    font-size: 0.9rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.result-stats .stat {
    text-align: center;
}

.result-stats .stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-orange);
    line-height: 1;
}

.result-stats .stat-label {
    font-size: 0.8rem;
    color: var(--grey-dark);
    margin-top: 0.25rem;
}

.result-summary {
    color: var(--grey-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section for Events */
.contact-section .contact-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

.contact-section h5 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}


/* Wrestling Background Elements */
.wrestling-bg-element {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

/* Instruction Section Background */
.instruction-hero {
    position: relative;
    overflow: hidden;
}

.instruction-hero::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -8%;
    width: 300px;
    height: 300px;
    background-image: url('../images/wrestling-action-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    z-index: 1;
    transform: rotate(15deg);
}

/* Portal Background Elements */
.combined-header {
    position: relative;
}

.combined-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 250px;
    height: 250px;
    background-image: url('../images/wrestling-action-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    transform: rotate(-25deg);
}

/* Ensure content is above background elements */
.hero-content,
.container,
.row,
.col-lg-6,
.col-md-6,
.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Media Gallery Styles */
.media-hero {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(243, 112, 33, 0.3)), url('../images/media-hero-bg.png?v=2');
    background-size: 120%;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.media-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 350px;
    height: 350px;
    background-image: url('../images/wrestling-action-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
    transform: rotate(-10deg);
}

.featured-gallery {
    background: var(--primary-white);
}

.media-card {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 250px;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--grey-light), var(--grey-medium));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey-dark);
    position: relative;
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.media-placeholder p {
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 0 1rem;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(243, 112, 33, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card.clickable:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 2rem;
    color: var(--primary-white);
}

.category-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    border: 2px solid var(--grey-dark);
    color: var(--grey-dark);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

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

.gallery-item {
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Lightbox Modal Styles */
.lightbox-container {
    text-align: center;
}

.lightbox-image {
    margin-bottom: 2rem;
}

.lightbox-image img {
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-counter {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.lightbox-description h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.lightbox-description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Carousel Customizations */
.carousel-control-prev,
.carousel-control-next {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-orange);
    border-radius: 50%;
    padding: 10px;
}

/* Highlight of the Week Section */
.highlight-week-section {
    background: var(--grey-light);
}

.video-container-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: var(--primary-white);
}

.video-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.video-play-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-icon:hover {
    transform: scale(1.1);
}

.video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.video-description {
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.video-duration,
.video-level {
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-card h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--grey-dark);
    margin: 0;
    font-size: 0.9rem;
}

/* Media Upload Section */
.media-upload-section {
    background: var(--grey-light);
}

.upload-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.upload-card .form-control,
.upload-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.upload-card .form-control:focus,
.upload-card .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 112, 33, 0.25);
}

.upload-card .form-label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

#uploadProgress .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

#uploadProgress .progress-bar {
    background-color: var(--primary-orange);
    border-radius: 4px;
}

/* Optimized Media Header */
.media-header {
    padding: 2rem 0;
}

/* Featured Highlight Section */
.featured-highlight {
    background: var(--primary-white);
}

.featured-media-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-media-card:hover {
    transform: translateY(-5px);
}

.media-container-new {
    position: relative;
    background: linear-gradient(135deg, var(--grey-light), #e9ecef);
}

.media-placeholder-new {
    padding: 3rem 2rem;
    text-align: center;
}

.media-play-icon-new {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-play-icon-new:hover {
    transform: scale(1.1);
}

.media-title-new {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.media-description-new {
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media-meta-new {
    margin-bottom: 1.5rem;
}

.media-badge {
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Featured Video Player Styling */
.featured-video {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--primary-black);
}

.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-media-card:hover .video-info-overlay {
    opacity: 1;
}

.video-overlay-title {
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-info-overlay .media-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
}

/* Media Gallery Grid */
.media-gallery-section {
    background: var(--grey-light);
}

.media-card-new {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.media-thumbnail {
    position: relative;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-light));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card-new:hover .media-thumbnail img {
    transform: scale(1.05);
}

.media-thumbnail i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.media-card-new:hover .media-thumbnail i {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.media-type {
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.media-info {
    padding: 1rem;
}

.media-info h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.media-info p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Photo Gallery Optimization */
.photo-gallery {
    background: var(--primary-white);
}

.gallery-item {
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .media-card {
        height: 200px;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .video-play-icon {
        font-size: 3rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .media-placeholder i {
        font-size: 2rem;
    }
}

/* Subscription Page Styles */
.subscription-hero {
    background: linear-gradient(135deg, var(--primary-black), var(--grey-dark));
}

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

.pricing-card {
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.pricing-header .plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.price {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1.5rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price .period {
    font-size: 1.2rem;
    color: var(--grey-dark);
}

.plan-description {
    color: var(--grey-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey-light);
    font-size: 1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.features-showcase {
    background: var(--grey-light);
}

.feature-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

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

.free-tier-info {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.free-tier-info h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-black);
}

.btn-outline-orange {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    background: transparent;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Contact Page Improvements */
.action-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    background: var(--primary-white);
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.action-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.action-card .d-flex {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quick-actions h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.proof-icon {
    font-size: 2.5rem;
}

/* Login/Register Form Styles */
.login-container,
.register-container {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--grey-light);
}

.login-form,
.register-form {
    margin-top: 2rem;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 112, 33, 0.25);
}

.input-group-text {
    background: var(--grey-light);
    border-color: var(--grey-light);
    color: var(--primary-black);
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grey-light);
}

.divider span {
    background: var(--primary-white);
    padding: 0 1rem;
    color: var(--grey-dark);
    font-size: 0.9rem;
}

/* Payment & Subscription Styles */
.subscription-section {
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--primary-white) 100%);
    min-height: 100vh;
}

.subscription-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--grey-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.subscription-card.popular {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(243, 112, 33, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-light);
}

.plan-name {
    color: var(--primary-black);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-price {
    color: var(--primary-orange);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.2rem;
    color: var(--grey-dark);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--primary-black);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.plan-action {
    margin-top: 2rem;
}

/* Success/Cancel Pages */
.success-section, .cancel-section {
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--primary-white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-container, .cancel-container {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--grey-light);
}

.success-icon i, .cancel-icon i {
    font-size: 4rem;
}

.step-card {
    background: var(--grey-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.step-card i {
    color: var(--primary-orange);
    font-size: 2rem;
}

.action-buttons .btn {
    margin: 0.5rem;
}

/* Subscription CTA Updates */
.subscription-prompt {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d45a0f 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--primary-white);
    margin: 2rem 0;
}

.subscription-prompt h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.subscription-prompt .btn {
    background: var(--primary-white);
    color: var(--primary-orange);
    border: none;
    font-weight: 600;
}

.subscription-prompt .btn:hover {
    background: var(--grey-light);
    color: var(--primary-orange);
}

/* Session Specific Styles */
.session-duration {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.session-description {
    font-size: 0.95rem;
    color: var(--grey-dark);
    margin-bottom: 0;
}

.original-price {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.savings-badge {
    background: #28a745;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.session-info-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--grey-light);
}

.info-item {
    padding: 1rem 0;
}

.info-item h5 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--grey-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.disclaimer {
    border-left: 4px solid var(--primary-orange);
}

/* Event Specific Styles */
.popular-package {
    border: 2px solid var(--primary-orange);
    position: relative;
}

.popular-package .event-badge {
    background: var(--primary-orange);
    color: var(--primary-white);
}

.event-disclaimer small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--grey-dark);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Schedule Block Styles */
.schedule-block {
    margin-top: 0.5rem;
}

.schedule-item {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    line-height: 1.4;
}

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

/* Calendar Enhancements */
.calendar-day.available {
    background: #d4edda;
    color: #155724;
    cursor: pointer;
}

.calendar-day.booked {
    background: #f8d7da;
    color: #721c24;
}

.calendar-day.personal-practice {
    background: var(--primary-orange);
    color: var(--primary-white);
    font-weight: bold;
}

.calendar-day:hover.available {
    background: #c3e6cb;
}
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .lightbox-image img {
        max-height: 50vh;
    }
    
    .lightbox-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-filters {
        text-align: center;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
}

/* Mobile Responsive for Portal */
@media (max-width: 768px) {
    .athlete-profile-nav {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .profile-details-sm {
        display: block !important;
    }
    
    .profile-picture-sm {
        width: 30px;
        height: 30px;
    }
    
    .athlete-name-sm {
        font-size: 0.8rem;
    }
    
    .athlete-level-sm {
        font-size: 0.7rem;
    }
    
    .portal-title {
        font-size: 1.8rem;
    }
    
    .portal-subtitle {
        font-size: 1rem;
    }
    
    .portal-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        margin: 0 0.1rem;
    }
    
    .portal-header-content {
        margin-bottom: 1.5rem;
    }
    
    .session-controls {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    /* Events Page Mobile Styles */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .event-card .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .info-content {
        padding: 1rem;
    }
    
    .result-stats {
        gap: 1rem;
    }
    
    .ticker-item {
        font-size: 0.9rem;
        margin-right: 3rem;
    }
    
    /* Hide background elements on mobile for better performance and readability */
    .hero-section::before,
    .hero-section::after,
    .camps-hero-section::before,
    .instruction-hero::before,
    .combined-header::before {
        display: none;
    }
    
    .search-filter {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .strategy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .strategy-controls {
        width: 100%;
        justify-content: flex-start;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .goal-item, .focus-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .portal-main {
        padding: 1rem 0;
    }
    
    .session-header {
        padding: 1.5rem;
    }
    
    .goals-card, .focus-card, .strategy-main, .question-form-card {
        padding: 1.5rem;
    }
    
    .session-info {
        padding: 1rem;
    }
    
    .portal-tabs .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Album Gallery Styles - CRITICAL VISIBILITY FIXES */
.media-gallery-section,
.media-gallery-section * {
    display: block !important;
    visibility: visible !important;
}

.media-gallery-section .container,
.media-gallery-section .row,
.media-gallery-section .col-lg-4,
.media-gallery-section .col-md-6 {
    display: block !important;
    visibility: visible !important;
    width: auto !important;
    float: left !important;
    margin: 0 1% 2rem 1% !important;
    width: 30% !important;
}

.album-card {
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    border-radius: 15px !important;
    overflow: visible !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto !important;
    min-height: 350px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
}

/* EMERGENCY CSS FIX - FORCE BOOTSTRAP OVERRIDE */
@media (min-width: 1px) {
    .media-gallery-section .col-lg-4,
    .media-gallery-section .col-md-6 {
        display: inline-block !important;
        width: 32% !important;
        vertical-align: top !important;
        margin-right: 1% !important;
        margin-bottom: 2rem !important;
    }
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.album-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.album-thumbnail img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
}

/* CRITICAL: Force album cards to always be visible regardless of images */
.album-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 350px !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    margin-bottom: 2rem !important;
}

.media-gallery-section .row .col-lg-4,
.media-gallery-section .row .col-md-6 {
    display: block !important;
    visibility: visible !important;
}

.album-thumbnail {
    display: block !important;
    visibility: visible !important;
    height: 250px !important;
    min-height: 250px !important;
    background-color: #f8f9fa !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250' viewBox='0 0 250 250'><rect fill='%23f8f9fa' width='250' height='250'/><text x='125' y='125' font-family='Arial' font-size='16' fill='%236c757d' text-anchor='middle' dominant-baseline='middle'>📸 Album Preview</text></svg>") !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.album-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background-color: #f8f9fa !important;
}

.album-details {
    display: block !important;
    visibility: visible !important;
    padding: 1.5rem !important;
    background: white !important;
}

/* Fallback for broken images */
.album-thumbnail img[src=""],
.album-thumbnail img:not([src]),
.album-thumbnail img[src="#"] {
    display: none;
}

.album-thumbnail img[src=""]:after,
.album-thumbnail img:not([src]):after,
.album-thumbnail img[src="#"]:after {
    content: "📸 Album Preview";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 1.2rem;
}

.album-overlay {
    display: none !important;
    opacity: 0 !important;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-info {
    color: var(--primary-white);
    padding: 2rem;
}

.album-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.album-title {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-count {
    color: #ccc;
    margin-bottom: 1rem;
}

.album-details {
    padding: 1.5rem;
}

.album-placeholder .placeholder-content {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grey-light);
    color: var(--grey-dark);
}

.album-placeholder .placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Competition Gallery Modal Styles */
.modal-fullscreen .modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-slide-container {
    background: var(--primary-black);
}

.carousel-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.thumbnail-section {
    flex-shrink: 0;
    max-height: 200px;
    overflow-y: auto;
}

.thumbnail-grid {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) var(--primary-black);
}

.thumbnail-grid::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-grid::-webkit-scrollbar-track {
    background: var(--primary-black);
}

.thumbnail-grid::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.thumbnail-item {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(243, 112, 33, 0.5);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    display: none !important;
    opacity: 0 !important;
}

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

.thumbnail-number {
    color: var(--primary-white);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Enhanced Media Styles */
.media-container-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featured-video {
    width: 100%;
    border-radius: 15px;
}

.video-info-overlay {
    display: none !important;
    opacity: 0 !important;
    background: transparent !important;
    position: static !important;
}

/* Force disable any modal backdrops */
.modal-backdrop {
    display: none !important;
}

/* Ensure album section is visible above any overlays */
.media-gallery-section, .album-card {
    position: relative;
    z-index: 2;
    background: var(--grey-light) !important;
}

/* Emergency visibility rules for albums */
.album-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: white !important;
}

.album-thumbnail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.album-thumbnail img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.media-badge {
    background: rgba(243, 112, 33, 0.9);
    color: var(--primary-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile Responsive Album Styles */
@media (max-width: 768px) {
    .album-thumbnail {
        height: 200px;
    }
    
    .album-info {
        padding: 1.5rem;
    }
    
    .album-icon {
        font-size: 2.5rem;
    }
    
    .carousel-slide-container {
        height: 50vh !important;
    }
    
    .thumbnail-section {
        max-height: 150px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .video-info-overlay {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .album-thumbnail {
        height: 180px;
    }
    
    .album-details {
        padding: 1rem;
    }
    
    .carousel-slide-container {
        height: 40vh !important;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 38px;
    }
}

/* ===== CLEAN ALBUM SECTION - REBUILT FROM SCRATCH ===== */
.clean-albums-section {
    background: var(--grey-light);
    padding: 4rem 0;
}

.albums-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.albums-subtitle {
    color: var(--grey-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.clean-album-card {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 2rem;
}

.clean-album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.clean-album-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.clean-album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clean-album-card:hover .clean-album-image img {
    transform: scale(1.05);
}

.clean-album-info {
    padding: 1.5rem;
    text-align: center;
}

.clean-album-info h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clean-album-info p {
    color: var(--grey-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .albums-title {
        font-size: 2rem;
    }
    
    .clean-album-image {
        height: 200px;
    }
    
    .clean-album-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .clean-album-image {
        height: 180px;
    }
    
    .albums-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   HOMEPAGE REDESIGN - HURGHADA EDITION
   ============================================ */

/* Sticky Header */
.home-header {
    background: var(--primary-white);
    border-bottom: 2px solid var(--primary-orange);
    z-index: 1030;
}

.home-brand-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-black);
    text-decoration: none;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.home-nav-link:hover {
    color: var(--primary-orange);
}

.home-nav-link-mobile {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-black);
    text-decoration: none;
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.home-nav-link-mobile:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-coach.png') center center / cover no-repeat;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    max-width: 900px;
}

.home-hero-headline {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.home-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

/* Credibility Strip */
.cred-strip {
    border-bottom: 1px solid #222;
}

.cred-item {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-white);
    display: inline-block;
    padding: 0.5rem 0;
}

.cred-item i {
    color: var(--primary-orange);
}

/* Train in Hurghada */
.hurghada-section {
    background: var(--primary-white);
}

.hurghada-check {
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hurghada-check i {
    margin-top: 3px;
    flex-shrink: 0;
}

.location-card {
    background: var(--grey-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
    padding: 2rem;
}

.location-card-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.location-card-row i {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.location-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px 2px 2px 0;
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
}

/* Services Section */
.services-section {
    background: var(--primary-black);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(243, 112, 33, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-6px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.service-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Training for Travelers */
.travelers-section {
    background: var(--grey-light);
}

.travelers-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 30px;
}

.highlight-card {
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.highlight-card h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Media Section */
.home-media-section {
    background: var(--primary-white);
}

.media-card-link {
    text-decoration: none;
    display: block;
}

.home-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .home-card-overlay {
    opacity: 1;
}

.overlay-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Athlete Portal Preview */
.portal-preview-section {
    background: var(--primary-black);
}

.portal-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: border-color 0.3s ease;
}

.portal-feature-item:hover {
    border-color: var(--primary-orange);
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #c94e0f 100%);
}

/* Footer */
.home-footer {
    background: #0a0a0a;
}

.footer-social {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social:hover {
    color: var(--primary-orange);
}

.footer-link {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: block;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.footer-seo-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .home-hero {
        min-height: 80vh;
    }

    .cred-strip .col-6 {
        padding: 0.25rem 0;
    }

    .location-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .home-hero-headline {
        font-size: 1.9rem;
    }

    .home-hero-sub {
        font-size: 1rem;
    }
}

/* Mobile hamburger button */
.home-hamburger {
    background: none;
    border: 2px solid var(--primary-orange);
    border-radius: 6px;
    color: var(--primary-black);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-hamburger:hover {
    background: var(--primary-orange);
    color: white;
}

/* Who cards - Train in Hurghada section */
.who-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--grey-light);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
}

.who-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
}

.who-card-body {
    flex: 1;
}

.who-card-body strong {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--primary-black);
    margin-bottom: 2px;
}

.who-card-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--grey-dark);
    line-height: 1.5;
}

/* ========================================
   TRAIN IN HURGHADA PAGE
   ======================================== */

.tih-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0a0a0a 100%);
    overflow: hidden;
}

.tih-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.tih-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.tih-location-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

.tih-headline {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.tih-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Credential cards */
.tih-cred-card {
    background: var(--grey-light);
    border-radius: 12px;
    border-top: 3px solid var(--primary-orange);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tih-cred-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tih-cred-card h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Who section */
.tih-who-section {
    background: var(--primary-black);
}

.tih-who-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-top: 4px solid var(--primary-orange);
    color: white;
    transition: background 0.2s ease;
}

.tih-who-card:hover {
    background: rgba(255,255,255,0.08);
}

.tih-who-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.tih-who-card h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tih-who-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.6;
}

.tih-checklist li {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

/* Location section */
.tih-location-section {
    background: var(--grey-light);
}

.tih-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tih-location-detail i {
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

/* SEO tag block */
.tih-seo-tag-block {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--grey-light);
}

.tih-tag {
    display: inline-block;
    background: var(--grey-light);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-black);
}

/* FAQ */
.tih-faq {
    border-left: 4px solid var(--primary-orange);
    padding-left: 1.25rem;
}

.tih-faq h5 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.tih-faq p {
    color: var(--grey-dark);
    line-height: 1.7;
    margin: 0;
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: white;
}

/* Service cards on light/white backgrounds */
.service-card-light {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-light:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card-light .service-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.service-card-light .service-title {
    color: var(--primary-black);
}

.service-card-light .service-desc {
    color: #555;
}
