/* Contact Page CSS */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #Ffffff 0%, #FFFFFF 100%);
    padding: 140px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: #2E3B2C;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header-content p {
    font-size: 1.25rem;
    color: #444444;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Contact Options Section */
.contact-options-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: #F5F5F5;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: #93B47E;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.option-icon img {
    width: 60px;
    height: 60px;
}

.option-card h3 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.option-card p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.option-card .btn {
    width: 100%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

.form-intro a {
    color: #93B47E;
    text-decoration: none;
    font-weight: 600;
}

.form-intro a:hover {
    color: #35A854;
    text-decoration: underline;
}

.form-container {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0E0E0;
}

/* Support Info Section */
.support-info-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-card {
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #93B47E;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h4 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-card > p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-details {
    text-align: left;
}

.support-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-details p:last-child {
    margin-bottom: 0;
}

.support-details strong {
    color: #2E3B2C;
    font-weight: 700;
}

.support-details a {
    color: #93B47E;
    text-decoration: none;
    font-weight: 600;
}

.support-details a:hover {
    color: #35A854;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .options-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2.25rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .contact-options-section,
    .contact-form-section,
    .support-info-section {
        padding: 60px 0;
    }
    
    .option-card,
    .support-card {
        padding: 2rem 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-intro h2 {
        font-size: 2rem;
    }
    
    .form-intro p {
        font-size: 1rem;
    }
    
    .support-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 1.875rem;
    }
    
    .option-card,
    .support-card {
        padding: 1.5rem 1rem;
    }
    
    .form-container {
        padding: 1rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .form-intro h2 {
        font-size: 1.75rem;
    }
    
    /* Make iframe responsive */
    .form-container iframe {
        height: 600px !important;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.option-card:focus,
.support-card:focus {
    outline: 3px solid #93B47E;
    outline-offset: 2px;
}

/* Loading state for iframe */
.form-container {
    position: relative;
    min-height: 539px;
}

.form-container::before {
    content: "Loading contact form...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #93B47E;
    font-weight: 600;
    z-index: -1;
}