/* Contact Page - Modern Design */

.contact-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-header h2 .highlight {
    color: #8B1538;
    position: relative;
    display: inline-block;
}

.contact-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    border-radius: 2px;
}

.contact-header .subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    margin-bottom: 50px;
}

.contact-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    border-radius: 2px;
}

/* Phone Cards */
.phone-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.phone-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.15);
}

.phone-card:hover::before {
    transform: scaleX(1);
}

.phone-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B1538, #A91D4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(139, 21, 56, 0.3);
}

.phone-card:hover .phone-icon {
    transform: rotate(360deg) scale(1.1);
}

.phone-icon i {
    font-size: 32px;
    color: white;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #8B1538;
}

/* Social Cards */
.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 21, 56, 0.15);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #8B1538, #A91D4A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: rotate(5deg) scale(1.05);
}

.social-icon i {
    font-size: 24px;
    color: white;
}

.social-info {
    flex: 1;
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.social-handle {
    font-size: 14px;
    color: #6c757d;
}

.social-card:hover .social-name {
    color: #8B1538;
}

/* Company Info */
.company-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
}

.company-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(169, 29, 74, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.company-icon i {
    font-size: 36px;
    color: #8B1538;
}

.company-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.company-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

.company-info strong {
    color: #8B1538;
    font-weight: 600;
}

.info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef 15%, #e9ecef 85%, transparent);
    margin: 20px 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-header h2 {
        font-size: 36px;
    }

    .phone-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: 30px;
    }

    .contact-header .subtitle {
        font-size: 16px;
    }

    .contact-section-title {
        font-size: 24px;
    }

    .phone-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .company-info {
        padding: 30px 25px;
    }

    .company-info h4 {
        font-size: 20px;
    }

    .company-info p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contact-header h2 {
        font-size: 26px;
    }

    .phone-card {
        padding: 25px 15px;
    }

    .phone-icon {
        width: 60px;
        height: 60px;
    }

    .phone-icon i {
        font-size: 28px;
    }

    .phone-number {
        font-size: 16px;
    }

    .social-card {
        padding: 20px 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon i {
        font-size: 22px;
    }

    .social-name {
        font-size: 15px;
    }

    .social-handle {
        font-size: 13px;
    }
}
