/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 95, 60, 0.8), rgba(15, 95, 60, 0.6));
}

.header-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-yellow);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-family: 'Amiri', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--secondary-yellow);
    color: var(--text-dark);
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Form Section */
/* Keep your original layout */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-header h2 .highlight-green {
    color: var(--primary-green);
}

.form-header h2 .highlight-orange {
    color: var(--secondary-yellow);
}

.form-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================= */
/* 📌 Contact Form 7 Styling */
/* ========================= */

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpcf7-form p {
    margin: 0;
}

/* Form field wrappers (Name + Email side by side) */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Ensure each form group works well inside form-row */
.wpcf7-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
.wpcf7-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Inputs, Textareas, Selects */
.wpcf7-form-control {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(15, 95, 60, 0.1);
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.wpcf7-submit {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wpcf7-submit:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 95, 60, 0.3);
}

/* Optional: if you want to support two fields in one row */
@media (min-width: 768px) {
    .wpcf7-form .form-row-two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.quick-contact-item div strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.quick-contact-item div p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.social-link i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-link.facebook i {
    background: #3b5998;
    color: white;
}

.social-link.twitter i {
    background: #1da1f2;
    color: white;
}

.social-link.youtube i {
    background: #ff0000;
    color: white;
}

.social-link.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.office-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hour-item span:last-child {
    color: var(--text-muted);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header h2 .highlight-green {
    color: var(--primary-green);
}

.section-header h2 .highlight-orange {
    color: var(--secondary-yellow);
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 95, 60, 0.8), rgba(15, 95, 60, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: white;
    padding: 30px;
}

.map-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.directions-btn {
    background: var(--secondary-yellow);
    color: var(--orange-text);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.directions-btn:hover {
    background: var(--secondary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 199, 68, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: white;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 0l-15 15V15l15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    padding: 40px 0;
}

.contact-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.contact-cta-section h2 .highlight-green {
    color: var(--secondary-yellow);
}

.contact-cta-section h2 .highlight-orange {
    color: white;
}

.contact-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-primary {
    background: var(--secondary-yellow);
    color: var(--orange-text);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-primary:hover {
    background: var(--secondary-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(246, 199, 68, 0.3);
}

.cta-secondary {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 18px 20px;
    border: 2px solid white;
    border-radius: 12px;
    background: transparent;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

.cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(15, 95, 60, 0.2);
}

.cta-circle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--secondary-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.cta-inner {
    text-align: center;
    color: white;
}

.cta-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange-text);
}

.cta-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .page-header {
        height: 35vh;
        min-height: 350px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .faq-section,
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-circle {
        width: 250px;
        height: 250px;
    }
    
    .cta-number {
        font-size: 40px;
    }
    
    .contact-cta-section h2 {
        font-size: 36px;
    }
    
    .contact-cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
        min-height: 300px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-section .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-circle {
        width: 200px;
        height: 200px;
    }
    
    .cta-number {
        font-size: 32px;
    }
    
    .cta-label {
        font-size: 14px;
    }
    
    .contact-cta-section h2 {
        font-size: 28px;
    }
    
    .contact-cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 25vh;
        min-height: 250px;
    }
    
    .page-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .page-subtitle {
        font-size: 14px;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    .sidebar-card {
        padding: 15px 10px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .contact-cta-section {
        padding: 50px 0;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .cta-circle {
        width: 180px;
        height: 180px;
    }
    
    .cta-number {
        font-size: 28px;
    }
    
    .contact-cta-section h2 {
        font-size: 24px;
    }
    
    .contact-cta-section p {
        font-size: 15px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .page-header {
        min-height: 220px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    .sidebar-card {
        padding: 15px 10px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .cta-text h2 {
        font-size: 20px;
    }
}