/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero-primary {
    background-color: #f4c430;
    border: none;
    color: #333;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #e6b32d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
    color: #333;
    text-decoration: none;
}

/* Why Online Section */
.why-online-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.device-mockup {
    text-align: center;
    margin-bottom: 50px;
}

.device-mockup img {
    max-width: 100%;
    height: auto;
}

.why-online-content {
    padding-left: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.2;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: #e3f2fd;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: #f4c430;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Golf Course Section */
.golf-course-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/golf-course-bg.jpg') center/cover;
    color: white;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #f4c430;
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: serif;
}

.testimonial-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: white;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-title a:hover {
    color: #f4c430;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.blog-read-more {
    color: #f4c430;
    text-decoration: none;
    font-weight: 500;
}

.blog-read-more:hover {
    color: #e6b32d;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/golf-faq-bg.jpg') center/cover;
}

.faq-accordion {
    background: transparent;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4c430;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer-content {
    padding: 20px 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.faq-admin-controls {
    padding: 10px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-online-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .step-card {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }

    .quote-icon {
        top: 15px;
        right: 20px;
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .step-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 15px 20px;
    }
}