/* Contacts Page Styles */

/* Hero Section */
.dk-contacts-hero-wrapper {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.dk-contacts-hero-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.dk-contacts-hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.dk-contacts-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dk-contacts-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content Styles */
.dk-contacts-section {
    padding: 60px 20px;
    background: white;
}

.dk-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Methods Grid */
.dk-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.dk-contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.dk-contact-card:hover {
    transform: translateY(-5px);
}

.dk-contact-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    fill: #1a2a6c;
}

.dk-contact-card-title {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.dk-contact-card-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dk-contact-link {
    color: #1a2a6c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dk-contact-link:hover {
    color: #b21f1f;
}

/* Contact Form Styles */
.dk-contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dk-form-group {
    margin-bottom: 25px;
}

.dk-form-label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 500;
}

.dk-form-input,
.dk-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.dk-form-input:focus,
.dk-form-textarea:focus {
    outline: none;
    border-color: #1a2a6c;
}

.dk-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.dk-form-button {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dk-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Support Hours Section */
.dk-support-hours {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.dk-support-hours-title {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.dk-support-hours-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dk-contacts-section {
        padding: 40px 20px;
    }
    
    .dk-contact-form {
        padding: 30px 20px;
    }
    
    .dk-contact-card {
        padding: 25px;
    }
    
    .dk-contact-card-title {
        font-size: 1.2rem;
    }
    
    .dk-form-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dk-contacts-hero-wrapper {
        min-height: 30vh;
        padding: 40px 15px;
    }
    
    .dk-contact-form {
        padding: 20px 15px;
    }
    
    .dk-support-hours {
        padding: 20px;
    }
} 