/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
    background: linear-gradient(145deg, #fef9f0, #fff5e6);
    min-height: 100vh;
}

/* Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a2f;
    margin: 1rem 0;
}

.contact-title .highlight {
    color: #f4b942;
    position: relative;
}

.contact-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(244, 185, 66, 0.3);
    z-index: -1;
}

.contact-description {
    max-width: 600px;
    margin: 0 auto;
    color: #2d5a4a;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card, .hours-card {
    padding: 2rem;
}

.info-card h3, .hours-card h4 {
    font-size: 1.3rem;
    color: #1e3a2f;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card h3 i, .hours-card h4 i {
    color: #f4b942;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 185, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: #f4b942;
}

.info-content h4 {
    font-size: 1rem;
    color: #1e3a2f;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: #2d5a4a;
    margin-bottom: 0.3rem;
}

.info-content a {
    color: #2d5a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #f4b942;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.hours {
    font-size: 0.8rem;
    color: #f4b942;
}

.email-btn {
    background: #f4b942;
    color: #1e3a2f;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background: #f9d56e;
    transform: translateY(-2px);
}

/* Registration Info */
.registration-info {
    background: rgba(244, 185, 66, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.registration-info i {
    color: #f4b942;
    margin-right: 0.5rem;
}

.registration-info span {
    font-size: 0.85rem;
    color: #2d5a4a;
}

/* Hours Card */
.hours-list {
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.hour-item span {
    color: #2d5a4a;
}

.hour-item strong {
    color: #1e3a2f;
}

.availability-note {
    font-size: 0.8rem;
    color: #f4b942;
    text-align: center;
    margin-top: 1rem;
}

/* Form Card */
.form-card {
    padding: 2rem;
}

.form-card h3 {
    font-size: 1.3rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-card h3 i {
    color: #f4b942;
}

.form-card > p {
    color: #2d5a4a;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a2f;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4b942;
    box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.2);
}

.submit-btn {
    background: #1e3a2f;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #2d5a4a;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.75rem;
    color: #4a6658;
    text-align: center;
    margin-top: 0.5rem;
}

.form-note i {
    color: #f4b942;
}

/* Support Options */
.support-options {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 1rem;
    margin-top: 1.5rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
}

.support-card i {
    font-size: 1.5rem;
    color: #f4b942;
    margin-bottom: 0.5rem;
}

.support-card h4 {
    font-size: 1rem;
    color: #1e3a2f;
    margin-bottom: 0.3rem;
}

.support-card p {
    font-size: 0.8rem;
    color: #2d5a4a;
    margin-bottom: 0.8rem;
}

.support-link {
    display: inline-block;
    color: #f4b942;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #1e3a2f;
}

/* Map Section */
.map-section {
    margin-top: 2rem;
}

.map-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-header i {
    font-size: 2rem;
    color: #f4b942;
    margin-bottom: 0.5rem;
}

.map-header h3 {
    font-size: 1.5rem;
    color: #1e3a2f;
    margin-bottom: 0.3rem;
}

.map-header p {
    color: #2d5a4a;
}

.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .info-card, .form-card, .hours-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
}


.map-link-full {
    display: block;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
}

.map-click-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #2d5a4a;
    margin-top: 0.5rem;
}

.map-click-hint i {
    color: #f4b942;
}