/* Additional styles for Contact and Services pages */

/* Hero sections for different pages */
.contact-hero {
    background: linear-gradient(135deg, 
        rgba(17, 19, 24, 0.9) 0%, 
        rgba(14, 26, 42, 0.8) 100%),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.services-hero {
    background: linear-gradient(135deg, 
        rgba(17, 19, 24, 0.9) 0%, 
        rgba(14, 26, 42, 0.8) 100%),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(247, 247, 245, 0.05);
    border: 1px solid rgba(196, 160, 98, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 160, 98, 0.4);
    box-shadow: 0 8px 32px rgba(196, 160, 98, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C4A062, #D4B072);
    border-radius: 50%;
    color: #111318;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F7F7F5;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(247, 247, 245, 0.8);
    line-height: 1.6;
}

.contact-details a {
    color: #C4A062;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #D4B072;
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(196, 160, 98, 0.1), 
        rgba(196, 160, 98, 0.05));
    border: 1px solid rgba(196, 160, 98, 0.3);
    border-radius: 12px;
    text-align: center;
}

.emergency-contact h3 {
    font-family: 'Playfair Display', serif;
    color: #C4A062;
    margin-bottom: 1rem;
}

.emergency-contact i {
    margin-right: 0.5rem;
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(247, 247, 245, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 98, 0.1);
    backdrop-filter: blur(10px);
}

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

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

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

.form-group label {
    font-weight: 500;
    color: #F7F7F5;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(247, 247, 245, 0.05);
    border: 1px solid rgba(196, 160, 98, 0.2);
    border-radius: 8px;
    color: #F7F7F5;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A062;
    box-shadow: 0 0 0 3px rgba(196, 160, 98, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(247, 247, 245, 0.8);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #F7F7F5;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(196, 160, 98, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #C4A062;
    border-color: #C4A062;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #111318;
    font-size: 12px;
    font-weight: bold;
}

/* Contact Map */
.map-section {
    margin-top: 4rem;
}

.contact-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(196, 160, 98, 0.2);
}

.map-popup h3 {
    font-family: 'Playfair Display', serif;
    color: #111318;
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(247, 247, 245, 0.03);
    border: 1px solid rgba(196, 160, 98, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card.featured {
    border-color: #C4A062;
    background: rgba(196, 160, 98, 0.05);
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 160, 98, 0.4);
    box-shadow: 0 12px 40px rgba(196, 160, 98, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C4A062, #D4B072);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #111318;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F7F7F5;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(247, 247, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(247, 247, 245, 0.8);
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: #C4A062;
    font-size: 0.8rem;
}

/* AI Features Section */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-feature {
    text-align: center;
    padding: 2rem;
}

.ai-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C4A062, #D4B072);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #111318;
    margin: 0 auto 1.5rem;
}

.ai-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #F7F7F5;
    margin-bottom: 1rem;
}

.ai-feature p {
    color: rgba(247, 247, 245, 0.8);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #C4A062, rgba(196, 160, 98, 0.2));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C4A062, #D4B072);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111318;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #F7F7F5;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(247, 247, 245, 0.8);
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(247, 247, 245, 0.03);
    border: 1px solid rgba(196, 160, 98, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 160, 98, 0.3);
    box-shadow: 0 8px 32px rgba(196, 160, 98, 0.1);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card .stars i {
    color: #C4A062;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: rgba(247, 247, 245, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(196, 160, 98, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #F7F7F5;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(247, 247, 245, 0.6);
    font-size: 0.9rem;
}

/* Form Success State */
.btn.success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border-color: #28a745 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}