:root {
    --primary-blue: #4e51f7;
    --secondary-blue: #10157c;
    --light-blue: #2a23ab;
    --dark-blue: #003580;
    --white: #ffffff;
    --light-gray: rgba(255, 255, 255, 0.1);
    --medium-gray: rgba(255, 255, 255, 0.2);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--white);
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--light-blue) !important;
}

.btn-free-trial {
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-free-trial:hover {
    background-color: var(--light-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero and Page Header */
.hero-section,
.page-header {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-title,
.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle,
.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
}

.page-subtitle {
    margin: 0 auto 30px;
}

.breadcrumb-item {
    color: var(--white);
}

.breadcrumb-item a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    opacity: 0.6;
}

/* Buttons */
.btn-primary {
    background-color: #6800ff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: hsl(240, 73%, 56%);
    margin: 15px auto 0;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.section-padding {
    padding: 10px 0;
}

/* Glassmorphism */
.glassmorphism {
    background-color: var(--light-gray);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Stats */
.stats-container {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img,
.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Radio Player */
.radio-player {
    background-color: var(--light-gray);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.now-playing {
    display: flex;
    align-items: center;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    background-color: var(--medium-gray);
    overflow: hidden;
}

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

.track-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.track-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.play-btn {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary-blue);
}

.play-btn:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 100px;
}

/* Program Cards */
.program-card {
    margin-bottom: 30px;
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.program-time {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.program-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Presenter/Team Cards */
.presenter-card,
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.presenter-image,
.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--medium-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-image {
    width: 180px;
    height: 180px;
}

.presenter-image img,
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presenter-card:hover .presenter-image,
.team-member:hover .team-image {
    transform: scale(1.05);
    border-color: #ff8800;
}

.presenter-name,
.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.presenter-role,
.team-role {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.team-role {
    color: #ff8800;
    font-weight: 600;
}

/* Social Links */
.social-links,
.team-social,
.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social {
    margin-top: 15px;
    gap: 15px;
}

.footer-social {
    gap: 15px;
    margin-top: 30px;
}

.social-link,
.team-social-link,
.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover,
.team-social-link:hover,
.footer-social-link:hover {
    background-color: #ff8800;
    transform: translateY(-3px);
}

.footer-social-link:hover {
    transform: translateY(-5px);
}

/* About Section */
.about-content,
.about-story {
    position: relative;
}

.about-text {
    padding-right: 30px;
}

.about-text p,
.about-story p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-story p {
    line-height: 1.8;
}

.about-story {
    padding: 50px 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.about-stats {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-stat-item {
    background-color: var(--light-gray);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    background-color: var(--medium-gray);
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #f7f6f8;
}

.about-stat-text {
    font-size: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--medium-gray);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: var(--light-gray);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: var(--light-gray);
    top: 30px;
    transform: rotate(45deg);
}

.timeline-date {
    display: inline-block;
    background-color: #ff8800;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff8800;
    border-radius: 50%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 5px solid var(--medium-gray);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
}

/* Partners Section */
.partners-section {
    background-color: var(--medium-gray);
    padding: 30px 0;
    margin-top: 80px;
}

.partners-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    color: #ff8800;
}

.partner-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Values */
.value-item {
    text-align: center;
    margin-bottom: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: #ff8800;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: #ff8800;
    color: var(--white);
    transform: rotateY(180deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 80px 0;
}

.testimonial-item {
    text-align: center;
    padding: 40px 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    line-height: 0;
}

.testimonial-text:before {
    top: 30px;
    left: -20px;
}

.testimonial-text:after {
    bottom: -10px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--medium-gray);
}

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

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(255, 136, 0, 0.25);
    color: var(--white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(255, 136, 0, 0.25);
    color: var(--white);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #ff8800;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: #ff8800;
    color: var(--white);
    transform: rotateY(180deg);
}

.contact-info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Studio Tour */
.studio-tour {
    text-align: center;
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-top: 50px;
}

.studio-tour h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.studio-tour p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0 30px;
    position: relative;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-text {
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 400px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: #1546e6;
}

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

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

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

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

.footer-bottom p {
    opacity: 0.7;
}

/* Utility Classes */
.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title,
    .page-title {
        font-size: 2.8rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-image,
    .contact-info {
        margin-top: 40px;
    }
    
    .radio-player {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .now-playing {
        flex-direction: column;
    }
    
    .album-art {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .partners-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content {
        width: 85%;
        float: right !important;
    }
    
    .timeline-content:before {
        left: -10px !important;
        right: auto !important;
    }
    
    .timeline-marker {
        left: 30px !important;
        transform: translateX(0) !important;
    }
    
    .contact-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title,
    .page-title {
        font-size: 2.2rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .presenter-image {
        width: 140px;
        height: 140px;
    }
    
    .timeline-content {
        padding: 20px;
    }
}