/* Contact Section */
.contact-section {
    margin-bottom: 5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-details i {
    margin-right: 1.2rem;
    color: var(--accent);
    width: 20px;
    font-size: 1.2rem;
}

.business-hours {
    margin-bottom: 3rem;
}

.business-hours h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 5px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: var(--white);
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 4px;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    border-radius: 4px;
}

.form-btn:hover {
    background: var(--accent);
    color: var(--black);
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-light);
    padding: 5rem 0;
    margin-bottom: 5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Visit Our Cattery Section */
.visit-section {
    margin-bottom: 5rem;
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visit-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.visit-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.visit-image {
    position: relative;
}

.visit-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}