/* Contact Page Styles */

:root {
    --sunset-primary: #E5802D;
    --sunset-dark: #2C3E50;
    --sunset-darker: #1a252f;
    --sunset-teal: #1ABC9C;
}

.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--sunset-darker) 100%);
    padding: 40px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header h1 {
    color: #ffffff;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E5802D, #f39c12);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-card-icon.teal {
    background: linear-gradient(135deg, #1ABC9C, #16a085);
}

.contact-card h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    line-height: 1.8;
    margin: 0;
}

.contact-card .address-line {
    display: block;
}

.contact-card .phone-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E5802D;
    font-weight: 600;
    font-size: 1.15em;
    margin-top: 15px;
}

/* Email CTA Card */
.email-card {
    background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1ABC9C, #16a085, #E5802D);
}

.email-card h3 {
    color: #ffffff;
    font-size: 1.6em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.email-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 25px;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1ABC9C, #16a085);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.3);
}

.email-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, #16a085, #1ABC9C);
    color: white;
    text-decoration: none;
}

.email-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Support Promise */
.support-promise {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(229, 128, 45, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(229, 128, 45, 0.2);
}

.support-promise p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-promise .highlight {
    color: #E5802D;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2em;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .email-card {
        padding: 25px;
    }
}
