/* Contact Page Styles - Redesigned */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1B2A49 0%, #2a3f5f 100%);
    padding: 120px 20px 80px;
    color: white;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-email-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #F5A623;
    color: #1B2A49;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.hero-email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.6);
    background: white;
}

.hero-email-link i {
    font-size: 1.6rem;
}

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

.contact-hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 5px solid rgba(245, 166, 35, 0.3);
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 20px;
    background: white;
}

.contact-cards-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F5A623 0%, #f39c12 100%);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F5A623 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #1B2A49;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-card-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Social Links - Compact Version */
.social-links-compact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-compact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link-compact.twitter {
    background: #1DA1F2;
}

.social-link-compact.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.social-link-compact.linkedin {
    background: #0077B5;
}

.social-link-compact:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.services-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F5A623;
    font-weight: bold;
}

/* Podcast CTA Section */
.podcast-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1B2A49 0%, #2a3f5f 100%);
}

.podcast-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.podcast-cta-icon {
    width: 80px;
    height: 80px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.podcast-cta-text {
    flex: 1;
    min-width: 250px;
}

.podcast-cta-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.podcast-cta-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1.05rem;
}

.podcast-cta-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.podcast-link {
    background: #F5A623;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-link:hover {
    background: white;
    color: #1B2A49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.podcast-link i {
    font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-hero-content {
        gap: 3rem;
    }

    .contact-hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-cards-grid-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 60px;
    }

    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero-text {
        text-align: center;
    }

    .contact-hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-email-link {
        font-size: 1.1rem;
        padding: 15px 30px;
        display: inline-flex;
        margin: 0 auto;
    }

    .hero-email-link i {
        font-size: 1.3rem;
    }

    .contact-hero-image {
        text-align: center;
    }

    .contact-hero-image img {
        max-width: 100%;
    }

    .contact-methods {
        padding: 60px 20px;
    }

    .contact-cards-grid-compact {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
        text-align: center;
    }

    .contact-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card h3,
    .contact-card p {
        text-align: center;
    }

    .social-links-compact {
        justify-content: center;
    }

    .services-list {
        text-align: left;
        display: inline-block;
    }

    .podcast-cta {
        padding: 40px 20px;
    }

    .podcast-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .podcast-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .podcast-cta-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .podcast-cta-text p {
        text-align: center;
    }

    .podcast-cta-links {
        justify-content: center;
    }
}