/* Contact Us Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 50%, var(--light-green) 100%);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.contact-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Content Section */
.contact-content {
    padding: 60px 20px 80px;
    background-color: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Section Headings */
.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
}

.section-heading.center {
    text-align: center;
}

/* Get in Touch Section */
.get-in-touch-section {
    margin-bottom: 60px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.contact-method-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-gray);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
    border-color: var(--light-green);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-method-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-method-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.method-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white) !important;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.method-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.method-note {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

/* Support Form Section */
.support-form-section {
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 60px;
    border: 2px solid var(--primary-green);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.form-description {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.google-form-container {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.google-form-container iframe {
    display: block;
    width: 100%;
    min-height: 800px;
    border: none;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
    border-color: var(--light-green);
}

.faq-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Business Section */
.business-section {
    margin-bottom: 60px;
}

.business-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
}

.business-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.business-card .section-heading {
    color: var(--white);
}

.business-card .section-heading .highlight {
    color: var(--light-green);
}

.business-card > p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
}

.business-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--dark-green) !important;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.business-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.email-icon {
    font-size: 22px;
}

.business-note {
    margin-top: 30px;
    padding: 25px 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.business-note p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--light-green) 100%);
    padding: 40px 50px;
    border-radius: 24px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--light-green);
}

.contact-cta .cta-content {
    max-width: 60%;
}

.contact-cta .cta-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-cta .cta-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.contact-cta .cta-mascot {
    position: absolute;
    right: 30px;
    bottom: 0;
}

.contact-cta .cta-mascot img {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Contact Copyright */
.contact-copyright {
    text-align: center;
    padding: 30px 0 0;
    border-top: 1px solid var(--border-gray);
}

.contact-copyright p {
    font-size: 14px;
    color: var(--gray);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 15px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .contact-content {
        padding: 40px 15px 60px;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: 30px 25px;
    }
    
    .support-form-section {
        padding: 30px 20px;
    }
    
    .google-form-container iframe {
        min-height: 700px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .business-card {
        padding: 40px 30px;
    }
    
    .business-icon {
        font-size: 50px;
    }
    
    .business-email {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .business-note {
        padding: 20px;
    }
    
    .contact-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .contact-cta .cta-content {
        max-width: 100%;
    }
    
    .contact-cta .cta-content h3 {
        font-size: 24px;
    }
    
    .contact-cta .cta-mascot {
        position: relative;
        right: auto;
        margin-top: 25px;
    }
    
    .contact-cta .cta-mascot img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .section-heading {
        font-size: 22px;
    }
    
    .contact-method-card {
        padding: 25px 20px;
    }
    
    .method-icon {
        font-size: 40px;
    }
    
    .contact-method-card h3 {
        font-size: 18px;
    }
    
    .support-form-section {
        padding: 25px 15px;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .form-description {
        font-size: 14px;
    }
    
    .google-form-container iframe {
        min-height: 600px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-icon {
        font-size: 28px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 13px;
    }
    
    .business-card {
        padding: 30px 20px;
    }
    
    .business-icon {
        font-size: 45px;
    }
    
    .business-card .section-heading {
        font-size: 22px;
    }
    
    .business-card > p {
        font-size: 15px;
    }
    
    .business-email {
        font-size: 14px;
        padding: 10px 20px;
        flex-direction: column;
        gap: 5px;
    }
    
    .business-note {
        padding: 15px;
    }
    
    .business-note p {
        font-size: 13px;
    }
    
    .contact-cta {
        padding: 25px 20px;
    }
    
    .contact-cta .cta-content h3 {
        font-size: 20px;
    }
    
    .contact-cta .cta-content p {
        font-size: 14px;
    }
    
    .contact-cta .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-cta .cta-mascot img {
        width: 100px;
    }
}

/* ==========================================
   CONTACT PAGE ANIMATION ENHANCEMENTS
   ========================================== */

/* Method icon animation on card hover */
.method-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Method link shine effect */
.method-link {
    position: relative;
    overflow: hidden;
}

.method-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-method-card:hover .method-link::after {
    left: 100%;
}

/* FAQ icon bounce on hover */
.faq-section .faq-icon {
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Business icon animation */
.business-icon {
    transition: transform 0.4s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.15);
}

/* Business email hover enhancement */
.business-email {
    position: relative;
    overflow: hidden;
}

.business-email::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.business-email:hover::after {
    left: 100%;
}

/* CTA mascot hover */
.cta-mascot img {
    transition: transform 0.4s ease;
}

.contact-cta:hover .cta-mascot img {
    transform: scale(1.05);
}

/* CTA button shine */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* Form icon animation */
.form-icon {
    transition: transform 0.4s ease;
}

.support-form-section:hover .form-icon {
    transform: scale(1.05) rotate(-3deg);
}
