/* Contact & Support Page Styles */

/* Contact Hero Section */
.fees-hero {
    background: url('../images/pages/contact-hero.jpg');
    background-image: url('../images/pages/contact-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a5c75;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.fees-hero__title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fees-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.fees-hero .hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .fees-hero__title {
        font-size: 2.5rem;
    }
    
    .fees-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .fees-hero .hero-description {
        font-size: 1rem;
    }
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offices-grid .office-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offices-grid .office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(12, 74, 96, 0.15);
    border-color: #0c4a60;
}

.office-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c4a60 0%, #1a5c75 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.offices-grid .office-card h3 {
    font-family: 'Merriweather', serif;
    color: #0c4a60;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.offices-grid .office-address {
    color: #374151;
    line-height: 1.6;
}

.offices-grid .office-address p {
    margin: 8px 0;
}

.offices-grid .office-address strong {
    color: #0c4a60;
    font-weight: 600;
}

/* Send Message Section */
.message-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #0c4a60;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(12, 74, 96, 0.1);
}

.message-section h2 {
    color: #0c4a60;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.message-section p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.message-button {
    background: linear-gradient(135deg, #0c4a60 0%, #1a5c75 100%) !important;
    color: white !important;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(12, 74, 96, 0.2);
}

.message-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 96, 0.3);
    color: white !important;
    text-decoration: none !important;
}

.message-button:link,
.message-button:visited,
.message-button:focus,
.message-button:active {
    color: white !important;
    text-decoration: none !important;
}

.message-button i {
    margin-right: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-card h3 {
    color: #2c5282;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h3 i {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info i {
    color: #2c5282;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.office-card h4 {
    color: #2c5282;
    margin-bottom: 15px;
    font-size: 20px;
}

.office-address {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.office-hours {
    background: #f7fafc;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #2c5282;
}

.office-hours h5 {
    margin: 0 0 8px 0;
    color: #2c5282;
}

.faq-section {
    background: #f7fafc;
    padding: 50px 0;
    margin-top: 20px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2d3748;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f7fafc;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #4a5568;
    line-height: 1.6;
}

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

.faq-icon {
    transition: transform 0.3s ease;
}

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

.emergency-contact {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message {
    background: #c6f6d5;
    color: #22543d;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #9ae6b4;
    margin-bottom: 20px;
    display: none;
}