:root {
    --primary-red: #ff5a5a;
    --soft-pink: #fff5f5;
    --icon-bg: #ffeaea;
    --text-dark: #333;
    --text-muted: #666;
}

.appointment-page-wrapper {
    background-color: var(--soft-pink);
    padding: 80px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.promo-side {
    padding-right: 50px;
}

.hospital-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hospital-logo-text i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.promo-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.promo-heading span {
    color: var(--primary-red);
}

.promo-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 90, 90, 0.1);
}

.feature-text h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-pets-img {
    position: absolute;
    bottom: -50px;
    left: -20px;
    max-width: 550px;
    z-index: 1;
}

/* Form Side */
.appointment-card {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.request-badge {
    display: inline-block;
    background: var(--icon-bg);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 45px;
}

.input-group-custom {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.field-icon {
    width: 50px;
    height: 50px;
    background: var(--icon-bg);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.field-content {
    flex-grow: 1;
}

.field-content label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.field-content label span {
    color: var(--primary-red);
}

.form-control-custom {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 12px 20px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 90, 90, 0.05);
}

.btn-confirm {
    background: linear-gradient(90deg, #ff8a8a 0%, #ff5a5a 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 90, 90, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 90, 90, 0.4);
}

.form-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-footer-text i {
    margin-right: 5px;
}

@media (max-width: 991px) {
    .promo-side {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .promo-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }

    .hero-pets-img {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: 30px;
    }

    .appointment-card {
        padding: 40px 25px;
    }

    .input-group-custom {
        gap: 15px;
    }

    .field-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

