/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgb(31 132 90 / 59%), rgb(42 157 143 / 59%)), url(../images/transformation.jpg) no-repeat center center / cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeIn 1.5s ease;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-infoo h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-infoo p {
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-details p, 
.contact-details a {
    color: var(--text-color);
    margin-bottom: 5px;
    display: block;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.social-contact .social-icons {
    display: flex;
    gap: 15px;
}

.social-contact .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.social-contact .social-icons a:hover {
    background-color: var(--text-color);
    transform: translateY(-3px);
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 104, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    border: none;
    background-color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}
.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    font-family: montserrat;
    border: none;
    background-color: white;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex
;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.philosophy-content {
    max-width: 1400px !important;
    margin: 0 auto;
    text-align: center;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
    color: var(--white);
    text-align: center;
}

.experience-badge {
    display: none !important;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 154, 118, 0.3);
    z-index: 2;
}
