#consultation-section {
    font-family: Arial, sans-serif;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5%;
    width: 100%;
    padding: 0;
    background: radial-gradient(circle at top, rgba(216,177,120,0.17), transparent 35%), #141516;
    color: #1f1f1f;
}

.left-content {
    width: 40%;
}

.right-content {
    width: 40%;
}

.eyebrow {
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 1.8px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: left;
}

.left-content h1 {
    font-family: Georgia, serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.description {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    text-align: left;
}

.right-card {
    width: 500px;
    background: white;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.right-card h2 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.right-card p {
    font-size: 12px;
    color: #333;
    margin-bottom: 16px;
    line-height: 24px;
    letter-spacing: 2.5px;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 15px;
}

.date-btn,
.time-btn {
    border: 1px solid #e0e0e0;
    background: #fafafa;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.date-btn span {
    font-size: 13px;
}

.date-btn.active {
    background: var(--color-light-gold);
    border-color: var(--color-gold);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-btn {
    border-radius: 4px;
    font-size: 14px;
}

.time-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.submit-btn {
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    border: 1px solid var(--color-gold);
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: bold;
    letter-spacing: 1.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.5s ease all;
}

.submit-btn:hover {
    background: var(--color-light-gold);
}

.footer-note {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #555;
}

.date-btn.disabled,
.time-btn.disabled,
.time-btn:disabled {
    background: #e5e5e5;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.date-btn:focus,
.time-btn:focus {
    outline: none;
    box-shadow: none;
}

.date-btn:active,
.time-btn:active {
    outline: none;
}

.phone {
    margin-top: 25px;
    color: var(--color-gold);
    font-size: 18px !important;
}

i span {
    position: relative;
    letter-spacing: 1.5px;
    top: -2px;
    font-size: 18px;
    margin-left: 15px;
    font-family: var(--body-font-family);
}

@media (max-width: 900px) {
    .consultation-section {
        flex-direction: column;
        padding: 35px 20px;
        text-align: center;
    }

    .right-card {
        width: 100%;
        max-width: 500px;
    }
}