/* Hero Contact Section Base Wrapper */
.hc-section-wrapper-c46a4bdd {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    box-sizing: border-box;
}

.hc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hc-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hc-pre-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 25px 0;
    max-width: 800px;
}

.hc-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    margin: 0 0 45px 0;
    max-width: 650px;
}

.hc-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hc-btn-yellow {
    background: #f0c265;
    color: #1a1a1a;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hc-btn-yellow:hover {
    background: #e4b250;
    transform: translateY(-2px);
}

.hc-contact-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 3px;
    transition: border-color 0.25s ease;
}

.hc-contact-link:hover {
    border-color: #ffffff;
}

/* Modal Styling */
.hc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

body.admin-bar .hc-modal-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}

.hc-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hc-modal-card {
    background: #1e2a24;
    color: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 4px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.hc-modal-overlay.active .hc-modal-card {
    transform: translateY(0);
}

.hc-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.hc-modal-close:hover {
    color: #ffffff;
}

.hc-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: inherit;
    color: #ffffff;
}

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

.hc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hc-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hc-form-group input,
.hc-form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}

.hc-form-group input:focus,
.hc-form-group textarea:focus {
    outline: none;
    border-color: #f0c265;
    background: rgba(255,255,255,0.1);
}

.hc-form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.hc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    user-select: none;
}

.hc-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
}

.hc-checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: transform 0.2s ease;
    background-color: #f0c265;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.hc-checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1.2);
}

.hc-checkbox-label input[type="checkbox"]:checked {
    border-color: #f0c265;
    background: rgba(240, 194, 101, 0.1);
}

.hc-btn-submit {
    background: #f0c265;
    color: #1a1a1a;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.25s, transform 0.2s;
    margin-top: 10px;
}

.hc-btn-submit:hover {
    background: #e4b250;
}

.hc-btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    color: #e5e5e5;
}

.hc-form-feedback {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.hc-form-feedback.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid #28a745;
    color: #28a745;
    display: block;
}

.hc-form-feedback.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
    color: #dc3545;
    display: block;
}
