/**
 * Contact Us Page Styles
 */

.contactpage {
    background: rgba(32, 33, 38, 1);
    min-height: 100vh;
    padding-top:0;
}

/* Container */
.contact-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    padding-bottom: 84px;
}

/* Breadcrumbs - matching About page */
.contact-breadcrumbs {
    background: transparent;
    /* Header: 48px top padding + 72px logo height + 24px gap = 144px */
    padding-top: 144px;
    padding-bottom: 54px;
    margin: 0;
}

.contact-breadcrumbs .breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-breadcrumbs .crumb {
    font-family: 'Reddit Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-breadcrumbs .crumb--home {
    color: rgba(244, 244, 244, 1);
    font-weight: 300;
}

.contact-breadcrumbs .crumb--current {
    color: rgba(244, 244, 244, 1);
    font-weight: 500;
}

.contact-breadcrumbs .crumb-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Page Title */
.contact-title {
    font-family: 'Aboreto', serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 1);
    text-align: left;
    margin: 0 0 64px 0;
}

/* Contact Card */
.contact-card {
    background: rgba(244, 244, 244, 0.05);
    border-radius: 0;
    padding: 48px;
    backdrop-filter: blur(10px);
}

/* Contact Messages */
.contact-message {
    padding: 16px 24px;
    border-radius: 0;
    margin-bottom: 32px;
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.contact-message--success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #81C784;
}

.contact-message--error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #E57373;
}

/* Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Form Columns */
.contact-form-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-col--left {
    gap: 12px;
}

.contact-form-col--right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Form Field */
.form-field {
    display: flex;
    flex-direction: column;
}

.form-field--message {
    flex: 0 0 auto;
}

/* Form Label (hidden, accessibility only) */
.form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(244, 244, 244, 0.3);
    border-radius: 0;
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: rgba(244, 244, 244, 1);
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.6);
}

.form-input::-webkit-input-placeholder {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.6);
}

.form-input::-moz-placeholder {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.6);
}

.form-input:-ms-input-placeholder {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: rgba(244, 244, 244, 0.6);
    background: transparent;
}

/* Textarea */
.form-textarea {
    height: 188px;
    resize: vertical;
}

/* Select Dropdown */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23F4F4F4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a;
    color: rgba(244, 244, 244, 1);
}

/* Submit Button */
.contact-submit-btn {
    height: 52px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(244, 244, 244, 0.3);
    border-radius: 0;
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-sizing: border-box;
}

.contact-submit-btn:hover {
    background: rgba(244, 244, 244, 0.1);
    border-color: rgba(244, 244, 244, 0.5);
}

.contact-submit-btn:active {
    background: rgba(244, 244, 244, 0.05);
}

/* Large Desktop Optimization */
@media (min-width: 1920px) {
    .contact-inner,
    .contact-info-map-wrapper {
        max-width: 1800px;
    }
}

@media (min-width: 2560px) {
    .contact-inner,
    .contact-info-map-wrapper {
        max-width: 2200px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-inner {
        padding: 48px clamp(2rem, 4vw, 3rem);
    }

    .contact-card {
        padding: 32px;
    }

    .contact-form-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contactpage {
        padding-top: 80px;
    }

    .contact-inner {
        padding: 32px clamp(1.5rem, 4vw, 2rem);
    }

    .contact-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 48px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-col--left {
        gap: 12px;
    }

    .contact-form-col--right {
        gap: 16px;
    }

    .form-textarea {
        min-height: 150px;
    }

    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
        line-height: 36px;
    }

    .contact-inner {
        padding: 24px 16px;
    }

    .contact-card {
        padding: 20px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
}

/* Contact Info Section with Map */
.contact-info-section {
    position: relative;
    background: transparent;
    padding: 84px 0;
}

.contact-info-map-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    min-height: 600px;
}

.contact-info-map-bg {
    position: absolute;
    top: 0;
    left: clamp(1.5rem, 5vw, 5rem);
    right: clamp(1.5rem, 5vw, 5rem);
    bottom: 0;
    background-image: url('../images/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-info-map-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.contact-info-container {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 48px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 48px;
    align-items: center;
}

/* Contact Info Card */
.contact-info-card {
    width: 100%;
    max-width: 371px;
    min-height: 515px;
    height: auto;
    background: rgba(244, 244, 244, 0.2);
    backdrop-filter: blur(10px);
    padding: clamp(32px, 4vw, 54px);
    margin: 32px clamp(0px, 6vw, 78px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-label {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 1);
}

.contact-info-value {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: rgba(244, 244, 244, 1);
}

.contact-info-value a {
    color: rgba(244, 244, 244, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: rgba(244, 244, 244, 0.8);
}

/* Get Directions Button */
.contact-directions-btn {
    height: 52px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(244, 244, 244, 1);
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.contact-directions-btn:hover {
    background: rgba(244, 244, 244, 0.1);
}

/* Responsive Contact Info Section */
@media (max-width: 1024px) {
    .contact-info-map-wrapper {
        padding: 0 clamp(2rem, 4vw, 3rem);
    }

    .contact-info-map-bg {
        left: clamp(2rem, 4vw, 3rem);
        right: clamp(2rem, 4vw, 3rem);
    }

    .contact-info-card {
        width: 100%;
        max-width: 371px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-map-wrapper {
        padding: 0 clamp(1.5rem, 4vw, 2rem);
        min-height: auto;
    }

    .contact-info-map-bg {
        left: clamp(1.5rem, 4vw, 2rem);
        right: clamp(1.5rem, 4vw, 2rem);
    }

    .contact-info-container {
        padding: 32px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;
        padding: 32px 24px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-map-wrapper {
        padding: 0 16px;
    }

    .contact-info-map-bg {
        left: 16px;
        right: 16px;
    }

    .contact-info-container {
        padding: 24px 0;
    }

    .contact-info-card {
        padding: 24px 20px;
        gap: 24px;
    }

    .contact-info-value {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-directions-btn {
        width: 100%;
    }
}


