/* ==========================================
   Contact Page Styles
   ========================================== */

/* Hero Section - Same as location pages */
.location-hero {
    background-color: var(--background-white);
    min-height: calc(95vh - 77px);
    padding: 80px 20px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.location-hero h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Word animation */
.location-hero .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50vh);
    animation: slideDown 0.8s ease forwards;
}

.location-hero .word-1 {
    animation-delay: 0s;
}

.location-hero .word-2 {
    animation-delay: 0.3s;
}

.location-hero .word-3 {
    animation-delay: 0.6s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-hero .accent-text {
    color: var(--accent-color);
}

.location-hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--background-light);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "→";
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info - Left Column */
.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-text p {
    color: var(--text-light);
    margin: 2px 0;
    font-size: 0.95rem;
}

/* Contact Form - Right Column */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--background-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--background-white);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.contact-form .btn {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-wrapper {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
}

/* Highlight styling */
.highlight {
    position: relative;
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-color);
    z-index: -1;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 60px 20px;
    }

    .location-hero-content {
        padding: 0 20px;
    }

    .location-hero h1 {
        font-size: 2.5rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-section {
        padding: 60px 20px;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .location-hero h1 {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
    }
}
