/* ===== Modern Support/List Your Venue Page Styles ===== */

.modern-support-page {
    background: #ffffff;
    overflow-x: hidden;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.support-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    overflow: hidden;
}

.support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(102,126,234,0.03)"/></svg>');
    opacity: 0.5;
}

.support-hero-content {
    position: relative;
    z-index: 2;
}

.support-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.1;
}

.support-hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.support-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.support-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-cta-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.support-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.support-cta-btn.secondary {
    background: white;
    color: #1a1a2e;
    border: 2px solid #667eea;
}

.support-cta-btn.secondary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.support-cta-btn i {
    font-size: 2rem;
}

.support-cta-btn .btn-small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
}

.support-cta-btn .btn-large {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.support-hero-image {
    position: relative;
}

.support-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.support-hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-hero-badge i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.support-hero-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a2e;
}

.support-hero-badge span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Section Headers */
.support-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.support-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Steps Section */
.support-steps-section {
    padding: 100px 0;
    background: white;
}

.support-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-step-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.support-step-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.support-step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(255, 126, 97, 0.4);
}

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

.support-step-card:hover .support-step-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.support-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.support-step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Benefits Section */
.support-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
}

.support-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.support-benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.support-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.support-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.support-benefit-card:hover .support-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.support-benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.support-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-benefit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.support-benefit-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #667eea;
    font-size: 1rem;
}

.support-benefit-list li:last-child {
    margin-bottom: 0;
}

/* Testimonial Section */
.support-testimonial-section {
    padding: 100px 0;
    background: white;
}

.support-testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.support-testimonial-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.support-testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.support-testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.support-testimonial-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.support-testimonial-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.support-testimonial-stars {
    display: flex;
    gap: 5px;
}

.support-testimonial-stars i {
    color: #ffa500;
    font-size: 1rem;
}

.support-testimonial-content {
    position: relative;
    padding: 0 30px;
}

.support-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
}

.support-quote-icon-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
}

.support-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

.support-testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 126, 97, 0.3);
}

.support-testimonial-badge i {
    font-size: 1rem;
}

/* Contact Section */
.support-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.support-contact-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.support-contact-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-contact-icon i {
    font-size: 2.5rem;
    color: #667eea;
}

.support-contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.support-contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.support-contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.support-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.support-contact-item i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #667eea;
    flex-shrink: 0;
}

.support-contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.support-contact-item a {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.support-contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .support-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-hero-title {
        font-size: 2.8rem;
    }

    .support-hero-subtitle {
        font-size: 1.8rem;
    }

    .support-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-benefits-grid {
        grid-template-columns: 1fr;
    }

    .support-section-title {
        font-size: 2.2rem;
    }

    .support-contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-hero-section {
        padding: 80px 0 60px;
    }

    .support-hero-title {
        font-size: 2.2rem;
    }

    .support-hero-subtitle {
        font-size: 1.5rem;
    }

    .support-hero-description {
        font-size: 1rem;
    }

    .support-hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .support-steps-section,
    .support-benefits-section,
    .support-testimonial-section,
    .support-contact-section {
        padding: 60px 0;
    }

    .support-steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-section-title {
        font-size: 1.8rem;
    }

    .support-section-header {
        margin-bottom: 40px;
    }

    .support-benefit-card {
        padding: 30px;
    }

    .support-testimonial-card {
        padding: 30px;
    }

    .support-testimonial-badge {
        position: static;
        margin-bottom: 20px;
        display: inline-flex;
    }

    .support-contact-card {
        padding: 40px 30px;
    }

    .support-contact-content {
        flex-direction: column;
        text-align: center;
    }

    .support-contact-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .support-hero-title {
        font-size: 1.8rem;
    }

    .support-hero-subtitle {
        font-size: 1.3rem;
    }

    .support-hero-buttons {
        flex-direction: column;
    }

    .support-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .support-step-card {
        padding: 30px 20px;
    }

    .support-benefit-card {
        padding: 25px 20px;
    }

    .support-testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .support-contact-card {
        padding: 30px 20px;
    }

    .support-contact-item {
        flex-direction: column;
        text-align: center;
    }
}
