/* Contact Page Styling - Premium Design */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(30,30,30,0.6) 50%, rgba(15,15,15,0.85) 100%), 
                url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-bottom: 0;
}

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Main Content */
.contact-main {
    padding: 6rem 0;
    background: #fafafa;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Contact Information Section */
.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.contact-details span {
    font-size: 0.9rem;
    color: #666;
}

/* Business Hours */
.business-hours {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.business-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-item span:first-child {
    font-weight: 500;
    color: #333;
}

.hour-item span:last-child {
    color: #666;
}

/* Social Links */
.social-links-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid #e9ecef;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-link {
    margin-top: 2rem;
}

/* Animations */
.contact-method,
.contact-form-section,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }
.contact-form-section { animation-delay: 0.4s; }
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-main {
        padding: 5rem 0;
    }
    
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 6rem 0 4rem;
        background-attachment: scroll;
    }
    
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-main {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-section {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-main {
        padding: 3rem 0;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .business-hours,
    .contact-method {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 5rem 0 3rem;
    }
    
    .contact-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero .hero-content p {
        font-size: 1rem;
    }
    
    .contact-main {
        padding: 2rem 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .contact-method,
    .contact-form-section,
    .faq-item {
        animation: none;
        transition: none;
    }
    
    .contact-method:hover,
    .btn:hover {
        transform: none;
    }
}



.contact-info-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info-section .contact-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: white;
    width: 18px;
    text-align: center;
}

.contact-info-section .contact-item span {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}