/* About Us & Contact Us Pages Styling */

/* Page Section */
.verdeno-page-section {
    padding: 80px 0;
    min-height: 600px;
}

/* Page Content Wrapper */
.page-content-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Page Content - Gutenberg Blocks */
.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 20px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 15px;
}

.page-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content blockquote {
    border-left: 4px solid #4a7c59;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #6c757d;
}

/* Gutenberg Image Blocks */
.page-content .wp-block-image {
    margin: 30px 0;
}

.page-content .wp-block-image img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content .wp-block-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

/* Gutenberg Gallery */
.page-content .wp-block-gallery {
    margin: 30px 0;
}

/* Gutenberg Columns */
.page-content .wp-block-columns {
    margin: 30px 0;
}

/* Gutenberg Button */
.page-content .wp-block-button__link {
    background: #4a7c59;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.page-content .wp-block-button__link:hover {
    background: #5a8c69;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #f0f0f0;
}

.contact-form-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Contact Form */
.verdeno-contact-form {
    max-width: 800px;
}

.verdeno-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.verdeno-contact-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.verdeno-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.verdeno-contact-form .form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.verdeno-contact-form .form-control:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.verdeno-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.verdeno-contact-form .btn-verdeno {
    background: #4a7c59;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.verdeno-contact-form .btn-verdeno:hover {
    background: #5a8c69;
}

/* Contact Info Section */
.contact-info-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.contact-info-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 36px;
    color: #4a7c59;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-content-wrapper {
        padding: 30px;
    }
    
    .page-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .verdeno-page-section {
        padding: 60px 0;
    }
    
    .page-content-wrapper {
        padding: 20px;
        border-radius: 8px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .page-content h2 {
        font-size: 24px;
    }
    
    .page-content h3 {
        font-size: 20px;
    }
    
    .verdeno-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .verdeno-contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .contact-info-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-card i {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .page-content-wrapper {
        padding: 15px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .verdeno-contact-form .btn-verdeno {
        width: 100%;
        justify-content: center;
    }
}