﻿/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@supports (padding-top: calc(6rem + var(--navbar-height, 80px))) {
    body {
        padding-top: calc(4rem + var(--navbar-height, 0px)) !important;
        padding-bottom: 1rem;
    }
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-breadcrumb {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

/* Contact Card Styles */
.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Styles */
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    padding: 15px;
}

.contact-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.email-icon {
    background-color: #e67e22;
}

.phone-icon {
    background-color: #e67e22;
}

.location-icon {
    background-color: #e67e22;
}

/* Card Content */
.contact-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.contact-card-description {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.contact-link {
    color: #3498db;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.contact-address {
    line-height: 1.6;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    margin-top: 60px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #666;
    background: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.facebook-icon:hover {
    background-color: #3b5998;
    color: white;
    border-color: #3b5998;
}

.linkedin-icon:hover {
    background-color: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    border-color: transparent;
}

.twitter-icon:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 40px 15px;
    }

    .contact-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .contact-icon-img {
        width: 36px;
        height: 36px;
    }

    .contact-card-title {
        font-size: 20px;
    }

    .contact-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}