/* Contact Page - Modern Hexagon Design */
/* Using Logo Colors: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.contact-page-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.8);
    position: relative;
}

.contact-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 154, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Page Header */
.contact-page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-page-hex-icon {
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #fff;
    animation: contact-page-hex-float 4s ease-in-out infinite;
}

@keyframes contact-page-hex-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Contact Card */
.contact-hex-card {
    transition: all 0.3s ease;
}

.contact-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    padding: 2px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-hex-card:hover .contact-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.4), rgba(255, 77, 125, 0.4));
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.3);
    transform: translateY(-5px);
}

.contact-hex-content {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 18px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Wrapper */
.contact-icon-wrapper {
    margin-bottom: 1.5rem;
}

.contact-hex-icon {
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-hex-card:hover .contact-hex-icon {
    transform: rotate(180deg) scale(1.1);
}

.contact-hex-orange {
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
}

.contact-hex-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

/* Card Content */
.contact-card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    word-break: break-all;
}

/* Button */
.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 154, 60, 0.4);
    color: #fff;
}

.contact-btn-hex {
    width: 25px;
    height: 25px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.contact-card-btn:hover .contact-btn-hex {
    transform: translateX(5px);
}

/* Info Card */
.contact-info-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.contact-info-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    padding: 2px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.3), rgba(139, 92, 246, 0.3));
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.2);
}

.contact-info-hex-content {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 18px;
    padding: 2.5rem;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-hex-icon {
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-header h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.contact-info-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.contact-info-feature i {
    font-size: 2rem;
    color: #FF9A3C;
}

.contact-info-feature span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-page-section {
        padding: 4rem 0;
    }
    
    .contact-page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-page-hex-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .contact-info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 3rem 0;
    }
    
    .contact-page-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-hex-content {
        padding: 2rem;
    }
    
    .contact-info-hex-content {
        padding: 2rem;
    }
}

/* Loading Animation */
@keyframes contact-card-load {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hex-card,
.contact-info-card {
    animation: contact-card-load 0.5s ease forwards;
}
