/* Contact Page Specific Styles */

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 6rem;
}

/* Hero Section */
.contact-hero {
    position: relative;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: 'Cardot', 'Avenir', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    line-height: 1.4;
    font-weight: 400;
    color: #f3f3f3;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(242, 101, 34, 0.1), rgba(242, 101, 34, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(242, 101, 34, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 101, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #f26522;
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: #f7951d43;
    transform: scale(1.1);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: #f26522;
    transition: color 0.3s ease;
}

.contact-card:hover .card-icon svg {
    color: 000000;
}

.contact-card h3 {
    font-family: 'Avenir', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: 000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card p {
    font-family: 'Avenir', sans-serif;
    font-size: 1.1rem;
    color: #f3f3f3;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.contact-link {
    display: inline-block;
    color: #f26522;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f26522;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Special styling for directions link */
.location-card .contact-link::after {
    content: ' ↗';
    position: static;
    width: auto;
    height: auto;
    background: none;
    font-size: 0.8em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.location-card .contact-link:hover::after {
    opacity: 1;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 101, 34, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f26522, #e55a1a, #f26522);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: 000000;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.form-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #f26522;
    font-weight: 500;
    line-height: 1.3;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.input-group,
.select-group {
    position: relative;
}

.input-group input,
.input-group textarea,
.select-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(242, 101, 34, 0.3);
    color: 000000;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.select-group select:focus {
    border-bottom-color: #f26522;
}

.input-group label,
.select-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #f3f3f3;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.select-group label {
    top: 1rem;
    color: #f3f3f3;
    font-size: 1rem;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label,
.select-group select:focus+label,
.select-group select:valid+label,
.select-group select:not([value=""])+label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: #f26522;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f26522;
    transition: width 0.3s ease;
}

.input-group input:focus~.input-line,
.input-group textarea:focus~.input-line {
    width: 100%;
}

.select-group select {
    appearance: none;
    cursor: pointer;
    color: 000000;
}

.select-group select:invalid {
    color: transparent;
}

.select-group select option {
    color: 000000;
    background: #333132;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f26522;
    pointer-events: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Avenir', sans-serif;
    color: #f3f3f3;
    font-size: 0.9rem;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(242, 101, 34, 0.3);
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: 000000;
    font-size: 12px;
    font-weight: bold;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(45deg, #f26522, #e55a1a);
    color: 000000;
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Avenir', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
}

.button-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: 000000;
    text-transform: lowercase;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 101, 34, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(242, 101, 34, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #f3f3f3;
    font-family: 'Avenir', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(242, 101, 34, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: #f26522;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #f3f3f3;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.contact-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.1), rgba(242, 101, 34, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(242, 101, 34, 0.3);
}

.cta-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: 000000;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-text {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #f3f3f3;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: #f26522;
    color: 000000;
    padding: 1.2rem 2.5rem;
    font-family: 'Avenir', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #e55a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #333132;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(242, 101, 34, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.modal-icon {
    width: 60px;
    height: 60px;
    background: #f26522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: 000000;
    font-weight: bold;
}

.modal-content h3 {
    font-family: 'Avenir', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: 000000;
    margin-bottom: 1rem;
}

.modal-content p {
    font-family: 'Avenir', sans-serif;
    color: #f3f3f3;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.modal-close {
    background: #f26522;
    color: 000000;
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Avenir', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e55a1a;
    transform: translateY(-1px);
}

/* Active Menu Link */
.menu-link.active {
    color: #f26522;
    background: rgba(242, 101, 34, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page {
        padding: 1rem;
        margin-top: 5rem;
    }

    .contact-hero {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .faq-section {
        margin-bottom: 3rem;
    }

    .contact-cta {
        padding: 3rem 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        margin-top: 4rem;
    }

    .contact-hero {
        padding: 1.5rem 0;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }
}