/* ========================================== 
   Contact Us Page - Premium Enhanced Design
   ========================================== */

:root {
    --primary: #003E73;
    --secondary: #FF9F28;
}

/* Page Layout */
.simple-contact-page {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.simple-contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #0056b3);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 62, 115, 0.3);
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.method-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.method-box:hover::before {
    transform: scaleX(1);
}

.method-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 62, 115, 0.2);
}

.method-box:hover .method-icon {
    background: linear-gradient(135deg, var(--secondary), #ffb347);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 159, 40, 0.4);
}

.method-box i {
    font-size: 2.2rem;
    color: white;
}

.method-box h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.method-box p {
    color: #6c757d;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.method-box a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.method-box a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.form-title p {
    color: #6c757d;
    font-size: 1.05rem;
}

.simple-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.simple-form-group {
    display: block;
}

.simple-form-group.full-width {
    grid-column: 1 / -1;
}

.simple-form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.simple-form-group input,
.simple-form-group select,
.simple-form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.simple-form-group input:focus,
.simple-form-group select:focus,
.simple-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,62,115,0.1);
}

.simple-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(0,62,115,0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,62,115,0.4);
    background: linear-gradient(135deg, #0056b3 0%, var(--primary) 100%);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button i {
    font-size: 1.2rem;
}

/* Alerts */
.alert {
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 1.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

/* Map Section */
.map-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.map-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-contact-page {
        padding-top: 100px;
    }
    
    .contact-container {
        padding: 1rem;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .method-box {
        padding: 2rem 1.5rem;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
    }
    
    .method-box i {
        font-size: 1.8rem;
    }
    
    .method-box h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-title h2 {
        font-size: 1.8rem;
    }
    
    .form-title p {
        font-size: 0.95rem;
    }
    
    .simple-form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .simple-form-group input,
    .simple-form-group select,
    .simple-form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .map-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .method-box {
        padding: 1.5rem 1rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-box i {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-title h2 {
        font-size: 1.5rem;
    }
    
    .simple-form-group label {
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}
