/* Contact Page Specific Styles */

.main-content.contact-page {
    padding-top: 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #a8d8ea 0%, #a8e6cf 100%);
    position: relative;
    overflow: hidden;
}

.page-header::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="waves" x="0" y="0" width="40" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q10 0 20 10 T40 10" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.5;
}

.page-title {
    font-family: 'RocknRoll One', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 10px 0 0;
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section-title {
    font-family: 'RocknRoll One', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #a8d8ea, #a8e6cf);
    border-radius: 2px;
}

/* Contact Methods */
.contact-methods {
    width: 100%;
}

.methods-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.method-item {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    gap: 30px;
    width: 100%;
}

.method-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.method-item.primary {
    border-color: #a8e6cf;
    background: linear-gradient(135deg, #f8fff8, #ffffff);
}

.method-item.primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(168, 230, 207, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.method-icon {
    font-size: 4rem;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.method-content {
    flex: 1;
}

.method-title {
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.method-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
    font-size: 1rem;
}

.method-status {
    display: inline-block;
    background: linear-gradient(135deg, #a8e6cf, #a8d8ea);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.method-link {
    display: inline-block;
    color: #a8e6cf;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #a8e6cf;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.method-link:hover {
    background: #a8e6cf;
    color: white;
}

/* Contact Form */
.contact-form-section {
    width: 100%;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.required {
    color: #ff6b6b;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #a8e6cf;
    background: white;
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #a8e6cf;
    border-color: #a8e6cf;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label a {
    color: #a8e6cf;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #a8e6cf, #a8d8ea);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
    width: 100%;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.faq-question:hover {
    background: linear-gradient(135deg, #a8e6cf, #a8d8ea);
    color: white;
}

.faq-icon {
    background: linear-gradient(135deg, #a8e6cf, #a8d8ea);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px;
}

.faq-answer p {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
    color: #666;
}

.faq-answer li {
    margin: 5px 0;
}

.faq-answer a {
    color: #a8e6cf;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Response Info */
.response-info {
    text-align: center;
    width: 100%;
}

.response-card {
    display: inline-block;
    background: linear-gradient(135deg, #fff2a8, #ffe0b3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.response-title {
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
}

.response-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.response-text strong {
    color: #333;
    font-weight: 700;
}

.response-text small {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .method-icon {
        width: auto;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    
    .response-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .container {
        gap: 40px;
    }
    
    .method-item {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .faq-text {
        font-size: 0.95rem;
    }
}
