/* Contact Page - Premium Redesign */

.contact-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../../assets/images/get_in_touch.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(249, 247, 242, 0.4) 0%,
            rgba(194, 168, 117, 0.05) 50%,
            rgba(249, 247, 242, 0.4) 100%);
    z-index: 1;
    animation: shimmer 10s infinite linear;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

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

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

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-divider .line {
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-divider i {
    font-size: 10px;
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Main Section Spacing */
.contact-main {
    padding: 120px 0;
    background: #fff;
    /* Clean white background for the content as in image */
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 120px;
}

/* Client Care Info */
.client-care h2,
.contact-form-section h2 {
    font-size: 44px;
    margin-bottom: 35px;
    font-weight: 400;
    color: var(--text-dark);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 70px;
}

.method-item {
    display: flex;
    gap: 30px;
}

.method-icon {
    font-size: 26px;
    color: var(--primary-color);
    padding-top: 5px;
}

.method-details h5 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.method-details a,
.method-details address {
    font-size: 16px;
    color: var(--text-dark);
    font-style: normal;
    display: block;
    margin-bottom: 6px;
}

.method-details p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.directions-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 6px;
    display: inline-block;
    margin-top: 15px !important;
}

.social-section h5 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons i {
    font-size: 20px;
    color: var(--text-dark);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.social-icons a:hover i {
    color: var(--primary-color);
    opacity: 1;
}

/* Contact Form Styling */
.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.form-group-alt {
    margin-bottom: 40px;
}

.form-group-alt label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.form-group-alt input,
.form-group-alt select,
.form-group-alt textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group-alt input:focus,
.form-group-alt select:focus,
.form-group-alt textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.btn-premium-submit {
    width: 250px;
    padding: 22px;
    background: #1A1A1A;
    color: white;
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

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

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .container-narrow {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .form-row-double {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-main {
        padding: 80px 0;
    }
}