/* ============================================
   CONTACT PAGE STYLES
   Sawdust, Inc. - Start a Project
   ============================================ */

.contact-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-wrapper {
    padding: 60px 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Section Header */
.contact-content .section-header {
    margin-bottom: 50px;
}

.contact-content .section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--color-brown);
    text-transform: uppercase;
   
}

.section-title-script {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    font-style: normal;
    color: var(--color-brown-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: var(--color-brown);
    margin: 0 auto 25px;
}

.section-description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-brown);
    margin: 0;
}

/* Contact Cards */
.contact-cards {
    margin-top: 40px;
}

.contact-card {
    height: 100%;
}

.card-frame {
    position: relative;
    background: url('../assets/images/my.png') center center;
    background-size: cover;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}



.card-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    text-align: center;
    
    background-size: 100% 100%, 100% 100%, 200% 200%;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--color-cream);
    opacity: 0.9;
}

.card-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-cream);
    opacity: 0.8;
    margin-bottom: 10px;
}

.card-value {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.card-info {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-cream);
    opacity: 0.7;
    margin: 0;
}

/* Hover Effects */
.contact-card:hover .card-frame {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card-frame {
    transition: all 0.3s ease;
}

/* Clickable Cards */
.contact-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-title-script {
        font-size: 3rem;
    }
    
    .contact-wrapper {
        padding: 40px 15px;
    }
    
    .card-content {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .section-title-script {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .card-value {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 35px 25px;
    }
}
