/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background-color: #000;
    color: #fff;
}

.section-light {
    background-color: #f8f8f8;
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #E31B23;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #E31B23;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #E31B23;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    color: #E31B23;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #333;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0,0,0,0.9);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #E31B23;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #E31B23;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #E31B23;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
}

.hero-btn {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
}

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

/* About Section */
.about {
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    text-align: left;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #E31B23;
}

.about-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.credentials {
    margin-top: 40px;
}

.credentials-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.credential-item {
    margin-bottom: 15px;
}

.credential-degree {
    font-weight: 600;
    font-size: 1.1rem;
}

.credential-institution {
    font-style: italic;
    color: #666;
}

.awards {
    margin-top: 40px;
}

.awards-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.award-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.award-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31B23;
}

/* H.E.L.P. Program Section */
.help-program {
    background-color: #f8f8f8;
}

.workbooks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0;
}

.workbook-item {
    width: 250px;
    margin: 20px;
    transition: transform 0.3s ease;
}

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

.workbook-image {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #E31B23;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.benefit-text {
    font-size: 1rem;
    color: #666;
}

.testimonials {
    margin: 60px 0;
    padding: 60px 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #000;
}

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

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #000;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #666;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
}

/* Consultation Services Section */
.consultation {
    background-color: #000;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
}

.service-item {
    width: 350px;
    margin: 20px;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #E31B23;
    transition: width 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E31B23;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.booking-system {
    margin: 60px 0;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.booking-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
}

.booking-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ccc;
}

.booking-calendar {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.calendar-header {
    background-color: #E31B23;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.calendar-body {
    padding: 20px;
    min-height: 400px;
    background-color: #fff;
    color: #333;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item-dark {
    width: 350px;
    margin: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    position: relative;
}

.testimonial-text-dark {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.testimonial-author-dark {
    font-weight: 600;
    color: #fff;
}

.testimonial-position-dark {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(227, 27, 35, 0.2);
}

/* Music Section */
.music {
    background-color: #111;
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.music-container {
    position: relative;
    z-index: 2;
}

.music-player {
    max-width: 800px;
    margin: 60px auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.player-header {
    padding: 20px;
    background-color: #E31B23;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-title {
    font-size: 1.3rem;
    font-weight: 600;
}

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

.control-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    color: #000;
}

.player-body {
    padding: 20px;
}

.track-list {
    list-style: none;
}

.track-item {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.track-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.track-item.active {
    background-color: rgba(227, 27, 35, 0.2);
}

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

.track-number {
    width: 30px;
    font-size: 0.9rem;
    color: #999;
}

.track-title {
    font-weight: 600;
    margin-right: 10px;
}

.track-album {
    font-size: 0.9rem;
    color: #999;
}

.track-duration {
    color: #999;
    font-size: 0.9rem;
}

.track-play {
    color: #E31B23;
    font-size: 1.1rem;
    margin-right: 10px;
}

.albums {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
}

.album-item {
    width: 250px;
    margin: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.album-cover {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.album-item:hover .album-cover {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: opacity 0.3s ease;
}

.album-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.album-year {
    font-size: 0.9rem;
    color: #999;
}

.streaming-platforms {
    margin: 60px 0;
    text-align: center;
}

.platforms-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.platform-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background-color: #E31B23;
    transform: translateY(-3px);
}

/* Business Automation Section */
.automation {
    background-color: #f8f8f8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
}

.feature-item {
    width: 350px;
    margin: 20px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    color: #E31B23;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.feature-benefits {
    margin-top: 20px;
    text-align: left;
}

.benefit-item-list {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: #666;
}

.benefit-item-list::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E31B23;
    font-weight: bold;
}

.demo-section {
    margin: 80px 0;
    padding: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.demo-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #000;
}

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

.demo-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.demo-image {
    flex: 1;
    min-width: 300px;
}

.demo-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.demo-features {
    margin: 30px 0;
}

.demo-feature {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    color: #333;
}

.demo-feature::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E31B23;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #E31B23;
}

.contact-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #E31B23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-value {
    color: #666;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #E31B23;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #E31B23;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-text span {
    color: #E31B23;
}

.footer-description {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #E31B23;
}

.footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #E31B23;
}

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

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E31B23;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact-icon {
    margin-right: 15px;
    color: #E31B23;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-image {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .booking-system {
        padding: 40px;
    }
    
    .demo-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .demo-container {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .service-item, .feature-item, .testimonial-item-dark {
        width: 100%;
    }
    
    .workbook-item, .album-item {
        width: 200px;
        margin: 15px;
    }
    
    .booking-system {
        padding: 30px;
    }
    
    .demo-section {
        padding: 30px;
    }
    
    .benefit-item {
        min-width: 100%;
    }
    
    .platform-link {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .workbook-item, .album-item {
        width: 150px;
        margin: 10px;
    }
}
