body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('Apple Link.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

.contact-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-card a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card a:hover {
    opacity: 0.8;
}

.location-item,
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.location-details,
.contact-details {
    flex: 1;
}

.location-item i,
.contact-item i {
    font-size: 1.5rem;
    color: #007AFF;
    margin-top: 0.25rem;
}

.location-details h3,
.contact-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.location-details p,
.contact-details p {
    margin: 0.25rem 0;
    font-size: 1rem;
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background-color: white;
}

.business-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
        margin-top: 60px;
    }

    .contact-container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .contact-info-section,
    .contact-form-section {
        width: 100%;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .contact-card p {
        font-size: 1rem;
    }

    .location-item,
    .contact-item {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .location-item i,
    .contact-item i {
        font-size: 1.3rem;
    }

    .location-details h3,
    .contact-details h3 {
        font-size: 1.1rem;
    }

    .location-details p,
    .contact-details p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .business-hours h3 {
        font-size: 1.2rem;
    }

    .hours-list li {
        font-size: 1rem;
    }
    .contact-container {
        padding: 1rem;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-section,
    .contact-form-section {
        width: 100%;
    }
}
