/**
 * Contact Page Styles - Premium Radio Station Full Width Design
 *
 * @package SMX_Pages
 */

/* Contact Page Specific Styles */
.premium-contact-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    background: #090213;
    line-height: 1.7;
    overflow-x: hidden;
}

.container-xl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.full-width-hero {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0;
    padding-bottom: 30px;
    transform: translateZ(0);
    will-change: transform;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(9, 2, 19, 0.95) 0%, 
        rgba(138, 43, 226, 0.7) 50%, 
        rgba(9, 2, 19, 0.98) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px;
}

.hero-text-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b5e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.contact-hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 30px auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1cb8 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6a1cb8 0%, #8a2be2 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(138, 43, 226, 0.5);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.15);
    transform: translateY(-3px);
    border-color: #8a2be2;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

/* Sections */
.contact-section {
    padding: 80px 0;
    position: relative;
    background: #090213;
}

.dark-section {
    background: #0a041c;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.center-align {
    text-align: center;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.dark-section .section-badge {
    background: rgba(138, 43, 226, 0.15);
    color: #8a2be2;
    border-color: rgba(138, 43, 226, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px;
    color: white;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.dark-section .divider-line {
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.contact-icon {
    font-size: 20px;
    color: #8a2be2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #6a1cb8);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
}

.card-icon {
    margin-bottom: 25px;
    color: #8a2be2;
    text-align: center;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 30px;
    color: white;
    text-align: center;
}

/* Contact List */
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.contact-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-list-item:first-child {
    padding-top: 0;
}

.contact-list-item:hover {
    padding-left: 5px;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.contact-link {
    display: inline-block;
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #b5e0ff;
    text-decoration: underline;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Social List */
.social-list .contact-list-item {
    border-bottom: none;
    padding: 15px 0;
}

.social-list .contact-list-item:hover {
    background: rgba(138, 43, 226, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin: 0 -15px;
}

.social-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.social-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.social-handle, .social-url {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-all;
}

.social-list .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8a2be2, #6a1cb8);
    color: white;
    border: none;
}

/* Map Section */
.map-section {
    background: #0a041c;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Footer */
.contact-footer {
    background: #0a041c;
    color: white;
    padding: 60px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-note {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-note p {
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-xl {
        padding: 0 30px;
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .contact-list-item {
        padding: 15px 0;
        gap: 15px;
    }
    
    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .container-xl {
        padding: 0 20px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge, .section-badge {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .contact-link, .contact-text {
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 11px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

/* Fix for contact page specific */
.smx-contact-page--radio-station {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure compatibility with existing styles */
.smx-contact-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
}