
/* Contact Page Styles */
:root {
    --accent: #a67c52;
    --accent-2: #e9cfa7;
}
.contact-hero {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-overlay {
    text-align: center;
    width: 100%;
    min-height: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(166,124,82,0.25) 100%);
}

.contact-hero h1 {
    color: #000;
    font-family: 'rozha one', serif;
    font-size: 48px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow: inset 0 0 48px rgba(255,255,255,0.06), 0 12px 32px rgba(0,0,0,0.28);
}

.uc-hero {
    display: none !important;
}

.uc-hero::before {
    content: "";
    position: absolute;
    inset: -120px -40px auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(166,124,82,0.18), rgba(166,124,82,0.0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.uc-title {
    font-family: 'rozha one', serif;
    font-size: 48px;
    color: #2b2b2b;
    margin: 0 0 12px 0;
}

.uc-subtitle {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,0.72);
}

.uc-section { display: none !important; }

.uc-container {
    max-width: 980px;
    margin: 0 auto;
}

.uc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.uc-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: none;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
}

.uc-image img:hover {
    transform: scale(1.03);
    filter: saturate(1.1);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.uc-content h2 {
    font-family: 'rozha one', serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 12px;
    text-align: left;
}

.uc-content p {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.uc-progress-card {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.uc-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.uc-progress-title {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 14px;
    color: #000;
}

.uc-progress-subtitle {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.uc-progress-bar {
    width: 100%;
    height: 10px;
    border: none;
    background: rgba(0,0,0,0.06);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.uc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #000 100%);
    width: 0;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.15);
    transition: width 0.8s ease-out;
}

.uc-progress-percent {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 12px;
    color: #000;
    text-align: right;
    margin-top: 8px;
}

.contact-content-wrapper {
    background: linear-gradient(180deg, rgb(var(--color_42)) 0%, #ffffff 100%);
    padding: 80px 20px;
    width: 100%;
    min-height: 600px;
}

.contact-container {
    max-width: 980px;
    margin: 0 auto;
    background: #f5f6f7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.section-title {
    font-family: 'rozha one', serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    padding-left: 0;
}

.section-title::after {
    display: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 24px;
    margin: 0 auto 40px auto;
    max-width: 720px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    position: relative;
}

.contact-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(0,0,0,0.08);
    transform: translateX(-50%);
}

.contact-item h3 {
    font-family: 'rozha one', serif;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
}

.contact-item p, 
.contact-item a {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icons a {
    color: #000;
    font-size: 16px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.2);
}

/* Form Styles */
.contact-form {
    width: 100%;
    max-width: 800px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.contact-container::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: var(--accent);
    margin: 24px auto 0 auto;
    border-radius: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 12px;
    margin-bottom: 0;
    color: rgba(0,0,0,0.6);
    letter-spacing: 0.03em;
    position: absolute;
    top: 12px;
    left: 14px;
    padding: 0 6px;
    background: #fff;
    transform-origin: left top;
    transition: transform 0.2s ease, color 0.2s ease, top 0.2s ease;
}

.form-group input,
.form-group textarea {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.18);
    padding: 12px 14px;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    padding-top: 20px;
}

.form-group input {
    height: 40px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(166,124,82,0.18);
    caret-color: #000;
}

.form-group:focus-within label,
.form-group.has-value label {
    top: -8px;
    transform: scale(0.85);
    color: var(--accent);
}

.submit-btn {
    background: linear-gradient(135deg, rgb(var(--color_41)) 0%, var(--accent) 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 14px;
    cursor: pointer;
    float: right;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 767px) {
    .uc-title {
        font-size: 36px;
    }
    .uc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .uc-content h2 {
        text-align: center;
    }
    .uc-content p {
        text-align: center;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
        margin: 0 auto 40px auto;
    }
    .contact-grid::before { display: none; }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .contact-item h3 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .section-title {
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        float: none;
    }
    .contact-hero {
        height: 180px;
    }
    .contact-hero h1 {
        font-size: 44px;
    }
}
