/* Contact Information Section Styles */

/* Section Wrapper */
.contact-info-section {
    position: relative;
    padding: 4rem 0;
    background-color: #f9f9f9;
}

/* Main Container Box */
.contact-info-box {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Decorative Gradient Border (Full Box) */
.contact-info-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px; 
    padding: 3px; /* Border thickness */
    background: linear-gradient(135deg, var(--color-primary, #23120B), var(--color-accent, #FDB827), var(--color-primary, #23120B));
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Contact Card */
.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 184, 39, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent, #FDB827);
}

.contact-card:hover::after {
    opacity: 1;
}

/* Icon Wrapper */
.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(253, 184, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent, #FDB827);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--color-accent, #FDB827);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(253, 184, 39, 0.3);
}

/* Typography */
.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary, #23120B);
}

.contact-card p, .contact-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--color-accent, #FDB827);
}

/* Social Media Links in Contact Card */
.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #23120B);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

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

.contact-social-link:hover {
    background: var(--color-accent, #FDB827);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 184, 39, 0.3);
}
