/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.12;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.hero-desc {
    font-size: 1.05rem;
    color: #d4d4d8;
    margin-bottom: 0.9rem;
    max-width: 640px;
    line-height: 1.7;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: var(--secondary-color);
    padding: 1.4rem 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    border: none;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.hero-video-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.video-play-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-video-link:hover .video-play-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Feature Cards */
.feature-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem 1.6rem;
    border: 1px solid var(--border-color);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.feature-heading .section-subtitle {
    margin-bottom: 0.7rem;
}

.feature-heading .section-title {
    margin-bottom: 0.8rem;
}

.feature-heading-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(28, 29, 38, 0.95) 0%, rgba(20, 21, 29, 0.98) 100%);
    padding: 3.8rem 2rem 3.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -70%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0) 70%);
    transform: translateX(-50%);
    transition: 0.6s;
}

.feature-card:hover::before {
    opacity: 0.9;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.feature-icon {
    font-size: 2.4rem;
    color: #ffe27a;
    margin-bottom: 2rem;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.28);
}

.feature-card h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 1rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background-color: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 2.5rem;
    font-size: 3rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.check-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Services */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.service-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-card));
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

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

.service-info {
    padding: 3rem;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.btn-read-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 2rem;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-item:hover {
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.05));
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.15;
    transition: var(--transition);
}

.step-item:hover .step-num {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.step-content h3 {
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-size: 1.4rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 5rem;
}

.project-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

.project-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Quote Section */
.quote-section {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.quote-form-container {
    background: var(--bg-card);
    padding: 4rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.quote-form input, .quote-form select, .quote-form textarea {
    padding: 1.2rem;
    background: #000;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: inherit;
    transition: var(--transition);
}

.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-submit {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: var(--secondary-color);
    padding: 1.4rem;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-section);
}

.testimonial-card {
    background: var(--bg-card);
    padding: 5rem;
    max-width: 900px;
    margin: 5rem auto 0;
    position: relative;
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-card i {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    display: block;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.testimonial-user h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .about-grid, .how-it-works-grid, .quote-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-desc, .about-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .check-list {
        justify-content: center;
    }
}

/* Stats, Winners, FAQ Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .final-cta h2 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .faq-item {
        padding: 1.5rem !important;
    }
    
    .faq-item h3 {
        font-size: 1.1rem !important;
    }
    
    .final-cta {
        padding: 4rem 0 !important;
    }
    
    .final-cta h2 {
        font-size: 2rem !important;
    }
    
    .final-cta p {
        font-size: 1.1rem !important;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-signup {
        width: 100%;
        padding: 1.2rem 2rem !important;
    }
    
    .winners-ticker {
        animation: ticker 20s linear infinite !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .check-list {
        grid-template-columns: 1fr;
    }
}

/* Inline section overrides for better mobile layout */
.cta-banner > .container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner > .container > div:first-child {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 280px;
}

.cta-banner > .container > div:first-child > div:first-child {
    flex-shrink: 0;
}

.partners-section .container {
    justify-content: center;
}

@media (max-width: 992px) {
    .service-info {
        padding: 2.2rem 1.6rem;
    }

    .step-item {
        padding: 1.8rem;
        gap: 1.2rem;
        text-align: left;
    }

    .step-num {
        font-size: 2.6rem;
    }

    .testimonial-card {
        padding: 3rem 1.6rem;
    }

    .winners-section .container > div:first-child {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .feature-heading {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .feature-heading-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-card {
        padding: 2.6rem 1.5rem;
    }

    .service-img {
        height: 220px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 2rem 1.2rem;
    }

    .quote-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group.full-width,
    .btn-submit {
        grid-column: auto;
    }

    .cta-banner > .container {
        padding: 2rem 1.2rem !important;
    }

    .cta-banner > .container > div:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        min-width: 0;
    }

    .cta-banner h2 {
        font-size: 1.5rem !important;
    }

    .cta-banner p {
        font-size: 1rem !important;
    }

    .winners-ticker .winner-card {
        min-width: 220px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
        gap: 1rem !important;
    }

    .partners-section .container > div {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }

    .video-play-icon {
        width: 54px;
        height: 54px;
    }

    .btn-primary {
        padding: 1.1rem 1.6rem;
    }

    .cta-banner > .container > a.btn-primary {
        width: 100%;
        text-align: center;
    }
}