/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 52, 9, 0.9), rgba(45, 80, 22, 0.8)), 
                url('public/pictures/1000288435.jpg') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 52, 9, 0.3), rgba(45, 80, 22, 0.3));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.contact-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-method i {
    font-size: 1.3rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details h2 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details > p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.contact-item-large:hover::before {
    left: 100%;
}

.contact-item-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
}

.contact-icon {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.contact-content h3 {
    color: #1a3409;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-content a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #4a7c59;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #1a3409;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.contact-form > p {
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1a3409;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(45, 80, 22, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fdf2f2;
}

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

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #666;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(45, 80, 22, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    border-color: #4a7c59;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form button {
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

/* Service Areas Contact */
.service-areas-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a3409;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.areas-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.areas-map {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.3);
    width: 100%;
    max-width: 350px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    margin: 0;
    opacity: 0.8;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.area-group {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
}

.area-group h4 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

.area-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-group ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.area-group ul li:hover {
    color: #4a7c59;
}

.area-group ul li:last-child {
    border-bottom: none;
}

.area-group ul li i {
    color: #4a7c59;
    font-size: 0.8rem;
}

.coverage-note {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.note-content i {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: #1a3409;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.note-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.note-content a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
}

.note-content a:hover {
    color: #4a7c59;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
}

.faq-item h4 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h4 i {
    color: #4a7c59;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Alternative Contact */
.alternative-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
}

.alternative-contact h2 {
    text-align: center;
    color: #1a3409;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alternative-contact > p {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.contact-option {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.contact-option i {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.contact-option h3 {
    color: #1a3409;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-option p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .areas-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-contact-methods {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-method {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-item-large {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-options {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .contact-option {
        padding: 2rem;
    }
    
    .contact-option i {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-item-large,
    .contact-form-container,
    .area-group,
    .faq-item,
    .contact-option {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 3rem 2rem;
    }
    
    .coverage-note {
        padding: 2rem;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}