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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow Semi Condensed", Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #0D1B2A;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb-item.active {
    color: white !important;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation & Header --- */
.main-header {
    transition: background-color 0.4s ease, padding 0.4s ease;
}

nav {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease-out;
    padding: 5px 0;
}

nav.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: padding 0.4s ease;
}

.nav-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: all 0.4s ease;
}

nav.scrolled .nav-logo img {
    width: 100px;
    height: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff414b;
    transition: width 0.4s ease-out;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-item.dropdown a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .nav-item.dropdown a i {
        margin-left: 5px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        font-size: 12px;
        opacity: 0.7;
        color: #ffffff;
    }
    
    @media (max-width: 768px) {
        .nav-item.dropdown a i {
            font-size: 16px;
            margin-left: 10px;
        }
    }

.nav-item.dropdown:hover a i,
.nav-item.dropdown a.active i,
.nav-item.dropdown.show a i {
    transform: rotate(180deg);
    opacity: 1;
    font-weight: bold;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ff414b;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    max-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item.dropdown:last-child .dropdown-menu {
    right: 0;
    left: auto;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownFadeIn 0.3s ease-out;
}

.nav-item.dropdown:hover .dropdown-menu {
    animation: none;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    margin: 2px 8px;
}

.dropdown-menu a:hover {
    background-color: #ff414b;
    color: #ffffff;
    padding-left: 25px;
    transform: translateX(5px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 2px 8px;
    padding-right: 15px;
}

.dropdown-menu a span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a::after {
    content: '›';
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.dropdown-menu a:hover::after {
    opacity: 1;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
}

.language-switcher select {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 8px 30px 8px 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    color: #ff414b;
    border-color: #ff414b;
    background-color: rgba(255, 65, 75, 0.1);
}

.language-switcher option {
    background-color: #0D1B2A;
    color: white;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    background-image: url('../images/media/upload/2025/08/Football-Republic-Johan-Cruijff-Arena-Johan-Cruyff.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    align-items: center;
    position: relative;
}

/* General hero sections for all pages */
.services-hero,
.recommends-hero,
.projects-hero,
.news-hero,
.contact-hero,
.page-hero,
.youngstars-hero {
    height: 550px;
    background: url('../images/media/upload/2025/08/Football-Republic-Johan-Cruijff-Arena-Johan-Cruyff.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    margin-bottom: 0px;
}

.services-hero::before,
.recommends-hero::before,
.projects-hero::before,
.news-hero::before,
.contact-hero::before,
.page-hero::before,
.youngstars-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(205, 32, 43, 0.5) 100%);
    z-index: 1;
}

.services-hero .container,
.recommends-hero .container,
.projects-hero .container,
.news-hero .container,
.contact-hero .container,
.page-hero .container,
.youngstars-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.services-hero h1,
.recommends-hero h1,
.projects-hero h1,
.news-hero h1,
.contact-hero h1,
.page-hero h1,
.youngstars-hero h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 900 !important;
    font-size: 60px !important;
    margin-top: 100px !important;
}

.services-hero p,
.recommends-hero p,
.projects-hero p,
.news-hero p,
.contact-hero p,
.page-hero p,
.youngstars-hero p {
    color: #e0e0e0 !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
}

.services-hero .subtitle,
.recommends-hero .subtitle,
.projects-hero .subtitle,
.news-hero .subtitle,
.contact-hero .subtitle,
.page-hero .subtitle,
.youngstars-hero .subtitle {
    color: #ff414b !important;
}

.services-hero + .container,
.recommends-hero + .container,
.projects-hero + .container,
.news-hero + .container,
.contact-hero + .container,
.page-hero + .container,
.youngstars-hero + .container {
    margin-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(205, 32, 43, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 20px;
}

.hero-content {
    padding-top: 50px;
    max-width: 60%;
}

.hero-content .subtitle {
    color: #ff414b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 75px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.wavy-line {
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero-content .description {
    color: #e0e0e0;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #3a00ff;
    color: #ffffff;
    border-color: #3a00ff;
}

.btn-primary:hover {
    background-color: #2a00c5;
    border-color: #2a00c5;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0D1B2A;
}


/* --- Young Stars & Quote Section --- */
.youngstars-quote-section {
    min-height: 100vh;
    padding: 100px 4% 300px 4%;
    background: linear-gradient(135deg, #2912b4 0%, #7e0963 50%, rgb(217, 0, 13) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.youngstars-quote-section .section-header {
    margin-bottom: 30px;
}

.youngstars-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff941;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.player-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    color: #fff941;
    font-size: 24px;
    transition: all 0.3s ease;
}

.card:hover .play-overlay {
    background: rgba(255, 249, 65, 0.9);
}

.card:hover .play-overlay i {
    color: #0D1B2A;
}

/* --- Services & Quote Section --- */
.services-quote-section {
    min-height: 100vh;
    padding: 100px 4% 300px 4%;
    background: linear-gradient(135deg, #2912b4 0%, #7e0963 50%, rgb(217, 0, 13) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.youngstars-quote-section .cards-container {
    margin-top: 30px;
}

.card {
    min-height: 350px;
    height: auto;
    padding: 40px;
    border-radius: 7px 7px 30px 7px;
    background: url('../images/media/upload/2025/08/wp4913129.jpg') center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
    transition: height 0.4s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}

.card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.card a:hover {
    color: inherit;
    text-decoration: none;
}

.card-1 {
    background-image: url('../images/media/upload/2025/08/image_689a228a3d05e.jpg');
}

.card-2 {
    background-image: url('../images/media/upload/2025/08/image_689a228a3d05e.jpg');
}

.card-3 {
    background-image: url('../images/media/upload/2025/08/image_689a228a3d05e.jpg');
}

.card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.card-content .subtext {
    color: #fff941;
    font-size: 18px;
    font-weight: 600;
}

.quote-section {
    margin-top: 150px;
    text-align: center;
    color: #ffffff;
}

.quote-section blockquote {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto;
}

.quote-section .wavy-line {
    margin: 30px auto;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quote-attribution img {
    height: 150px;
}

.quote-attribution span {
    font-size: 18px;
    font-weight: 600;
}


/* --- Full Width Feature Section --- */
.full-width-feature {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-top: -150px;
    position: relative;
    z-index: 6;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.feature-image-half {
    flex: 0 0 50%;
    height: 750px;
    position: relative;
    margin-top: -50px;
    overflow: hidden;
}

.feature-image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.full-width-feature:hover .feature-image-half img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #fff;
    animation-play-state: paused;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}


.play-button svg {
    margin-left: 5px;
    color: #3a00ff;
    width: 30px;
    height: 30px;
}

.feature-content-half {
    flex: 0 0 50%;
    padding: 50px 8% 50px 6%;
}

.section-subtitle {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-content-half h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content-half p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.btn-danger {
    background-color: #ff414b;
    color: #fff;
    border: 2px solid #ff414b;
    border-radius: 50px;
}

.btn-danger:hover {
    background-color: #e4303a;
    border-color: #e4303a;
}


/* --- Method Section --- */
.method-section {
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 79%) 25%, rgb(45 40 119 / 70%) 50%, rgb(112 0 0 / 80%) 100%), url(../images/media/upload/2025/08/wp4913129.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
}


.method-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.method-text-column {
    flex-basis: 50%;
    max-width: 50%;
}

.method-text-column p {
    max-width: 80%;
}

.method-text-column .section-subtitle {
    color: #fff941;
    text-transform: uppercase;
}

.method-text-column h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.method-text-column p {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
}

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

.method-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.method-list-icon {
    flex-shrink: 0;
    color: #fff941;
    font-size: 24px;
}

.method-image-column {
    flex-basis: 40%;
    max-width: 40%;
}

.method-image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.method-image-column img:hover {
    transform: scale(1.05);
}


/* --- News Section --- */
.contained-news-section {
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: #fff;
}

.contained-news-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card .news-image-wrapper {
    overflow: hidden;
}

.news-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.4s ease;
}

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

.news-card .news-content-wrapper {
    padding: 25px;
}

.news-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0D1B2A;
}

.news-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    font-weight: 600;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
}

.news-card-link:hover {
    text-decoration: none;
    color: inherit;
}


/* --- CTA Section --- */
.cta-section {
    padding: 150px 20px;
    color: #ffffff;
    position: relative;
    text-align: center;
    overflow: hidden; 
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 79%) 25%, rgb(45 40 119 / 70%) 50%, rgb(112 0 0 / 80%) 100%),
        url('../images/media/upload/2022/06/footballrepublic-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.cta-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.cta-section .wavy-line {
    margin: 25px auto;
}

.cta-section .cta-subheading {
    font-size: 22px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    margin-top: 40px;
}

/* --- Footer --- */
footer {
    background-color: #0D1B2A;
    color: #a9a9a9;
    padding: 80px 0px 10px 0px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-about .logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about .logo-text svg {
    width: 20px;
    height: 20px;
    fill: #7E0963;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-icons a {
    color: #a9a9a9;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #ff414b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '> ';
    color: #a9a9a9;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: #ff414b;
}

.footer-contact p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 14px;
}

.footer-bottom a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #ff414b;
}

.gallery-img {
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

video-container {
    position: relative;
    width: 100%;
    height: 550px;
    padding-bottom: 56.25%;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    width: 100%;
    height: 550px;
    border: none;
}

@media (max-width: 768px) {
    .video-container {
        margin: 1.5rem 0;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 1rem 0;
        border-radius: 6px;
    }
}

.close-video {
    position: absolute;
    top: -45px;
    right: -10px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-video:hover {
    transform: rotate(90deg);
    color: #ff414b;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 10px;
    }
    .nav-menu a {
        font-size: 16px;
    }
    .hero-content h1 {
        font-size: 60px;
    }
    .cards-container, .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .method-content-wrapper {
        flex-direction: column;
    }
    .method-text-column, .method-image-column,
    .method-text-column, .method-image-column {
        flex-basis: 100%;
        max-width: 100%;
    }
    .method-image-column {
        margin-top: 40px;
    }
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger {
        width: 30px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0px 0;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 20px;
        padding: 1px 0;
        display: block;
        color: #ffffff;
    }
    
    .nav-menu a:hover {
        color: #ffffff;
    }
    
    .nav-menu a:hover i {
        color: #ffffff;
    }
    
    .nav-menu a:hover::after {
        width: 0;
    }
    
    .nav-menu a::after {
        width: 0;
    }
    
    .dropdown-menu {
        position: static;
        background-color: transparent;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        margin-top: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-item.dropdown.show .dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item.dropdown.show a i {
        transform: rotate(180deg);
        opacity: 1;
        color: #ffffff;
        font-weight: bold;
    }
    
    .nav-item.dropdown.show a {
        color: #ffffff !important;
    }
    
    .nav-item.dropdown.show a::after {
        width: 0;
    }
    
    .nav-item.dropdown a {
        cursor: pointer;
    }
    
    .dropdown-menu a {
        font-size: 16px;
        padding: 8px 0;
        margin: 3px 0;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 3px 15px;
        width: 80%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: none;
        padding-left: 8px;
        padding-right: 8px;
        color: #ffffff;
    }
    
    .nav-item.dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item.dropdown a {
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }
    
    .nav-item.dropdown a i {
        color: #ffffff;
        opacity: 0.7;
    }
    
    .nav-item.dropdown.show a i {
        color: #ffffff !important;
    }
    
    .dropdown-menu li {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .language-switcher {
        margin: 20px 0 0 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    .hero-section {
        background-attachment: scroll; /* Parallax can be jerky on mobile */
        text-align: center;
        padding-top: 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .services-hero,
    .recommends-hero,
    .projects-hero,
    .news-hero,
    .contact-hero,
    .page-hero,
    .youngstars-hero {
        background-attachment: scroll;
        text-align: center;
        padding-top: 100px;
        height: 100vh;
        display: flex;
        align-items: center;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero .container {
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content .description {
        font-size: 18px;
    }
    
    .page-hero h1 {
        font-size: 48px;
        color: #ffffff;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    
    .page-hero p {
        font-size: 18px;
        color: #e0e0e0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn {
        width: 80%;
        justify-content: center;
    }
    .cards-container, .news-grid {
        margin-top: -80px;
        grid-template-columns: 1fr;
    }
    .full-width-feature {
        flex-direction: column;
        margin-top: -80px;
    }
    .feature-image-half {
        width: 100%;
        height: 400px;
        margin-top: 0;
    }
    .feature-content-half {
        padding: 40px 20px;
    }
    .feature-content-half h2,
    .method-text-column h2,
    .cta-section h2 {
        font-size: 36px;
    }
    .quote-section {
        margin-top: 80px;
    }
    .quote-section blockquote {
        font-size: 28px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        margin-top: 20px;
    }
}

.content-card .card-body {
    padding: 30px 60px 60px 60px;
}

.page-content .content-featured-image img {
    margin-top: -90px !important;
}



.content-card {
    overflow: visible !important;
}

.related-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-content-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.related-content-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.related-content-section .project-card,
.related-content-section .advice-card,
.related-content-section .news-card,
.related-content-section .service-card,
.related-content-section .video-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-content-section .project-card:hover,
.related-content-section .advice-card:hover,
.related-content-section .news-card:hover,
.related-content-section .service-card:hover,
.related-content-section .video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-content-section .project-image,
.related-content-section .advice-image,
.related-content-section .news-image,
.related-content-section .service-image,
.related-content-section .video-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related-content-section .project-image img,
.related-content-section .advice-image img,
.related-content-section .news-image img,
.related-content-section .service-image img,
.related-content-section .video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-content-section .project-card:hover .project-image img,
.related-content-section .advice-card:hover .advice-image img,
.related-content-section .news-card:hover .news-image img,
.related-content-section .service-card:hover .service-image img,
.related-content-section .video-card:hover .video-container img {
    transform: scale(1.1);
}

.related-content-section .project-content,
.related-content-section .advice-content,
.related-content-section .news-content,
.related-content-section .service-content,
.related-content-section .video-content {
    padding: 25px;
}

.related-content-section .project-content h3,
.related-content-section .advice-content h3,
.related-content-section .news-content h3,
.related-content-section .service-content h3,
.related-content-section .video-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.related-content-section .project-content p,
.related-content-section .advice-content p,
.related-content-section .news-content p,
.related-content-section .service-content p,
.related-content-section .video-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.related-content-section .player-info {
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.related-content-section .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 123, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-content-section .play-overlay i {
    color: #ffffff;
    font-size: 24px;
}

.related-content-section .video-card:hover .play-overlay {
    background: rgba(0, 123, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .related-content-section {
        padding: 60px 0;
    }
    
    .related-content-section .section-title h2 {
        font-size: 28px;
    }
    
    .related-content-section .project-content h3,
    .related-content-section .advice-content h3,
    .related-content-section .news-content h3,
    .related-content-section .service-content h3,
    .related-content-section .video-content h3 {
        font-size: 18px;
    }
    
    .related-content-section .project-content,
    .related-content-section .advice-content,
    .related-content-section .news-content,
    .related-content-section .service-content,
    .related-content-section .video-content {
        padding: 20px;
    }
}

.youngstars-hero {
    margin-bottom: 0px !important;
}


.page-content {
    padding-top: 0px !important;
}

.about-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.about-hero-section > h2 {
    grid-column: 1 / -1;
    margin-top: 10px;
    margin-bottom: 10px;
}

.about-hero-section > .services-grid {
    grid-column: 1 / -1;
}

.about-hero-section > .about-legacy-section {
    grid-column: 1 / -1;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero-content .lead {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-hero-image img:hover {
    transform: scale(1.05);
}

.about-hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 40px;
}

.about-hero-header h1 {
    margin-bottom: 0;
    flex: 1;
}

.about-hero-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-logo img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-legacy-section {
    margin-top: 40px;
}

.about-legacy-section img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 20px;
    color: white;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff941;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.services-grid .service-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.services-grid .service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.service-item a:hover {
    text-decoration: none;
    color: inherit;
}

.service-item a h4 {
    text-decoration: none;
    color: #0D1B2A;
}

.service-item a p {
    text-decoration: none;
    color: #666;
}

.service-item a:hover h4 {
    text-decoration: none;
    color: #0D1B2A;
}

.service-item a:hover p {
    text-decoration: none;
    color: #666;
}

@media (max-width: 768px) {
    .about-hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content .lead {
        font-size: 1.2rem;
    }
    
    .about-hero-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-hero-header h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-logo img {
        width: 200px;
        height: 200px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
}