.booking-feature {
    background: white;

    border-radius: 32px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

    transition: 0.35s ease;

    border: 1px solid rgba(177, 50, 122, 0.08);

    height: 100%;
}

.booking-feature:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(177, 50, 122, 0.15);
}

.booking-icon {
    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--primary), var(--primary-light));

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 34px;

    margin-bottom: 25px;
}

.booking-feature h3 {
    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

    color: var(--text-dark);
}

.booking-feature p {
    color: var(--text-light);

    line-height: 1.8;
}

.booking-input {
    width: 100%;

    height: 58px;

    border: 1px solid #e6e6e6;

    border-radius: 18px;

    padding: 0 22px;

    transition: 0.3s;

    background: white;
}

.booking-input:focus {
    outline: none;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(177, 50, 122, 0.08);
}

textarea.booking-input {
    height: auto;

    padding: 18px 22px;
}

.booking-label {
    display: block;

    margin-bottom: 12px;

    font-weight: 600;

    color: var(--text-dark);
}

.booking-sidebar {
    background: white;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.sidebar-item {
    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.sidebar-item i {
    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: white;

    font-size: 22px;

    flex-shrink: 0;
}

.sidebar-item strong {
    display: block;

    margin-bottom: 6px;
}

.sidebar-item p {
    color: var(--text-light);

    line-height: 1.7;
}
.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary);
    transition: 0.3s ease;
}
.social-circle:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.booking-input {
    transition: all 0.35s ease;
}

.booking-input:hover {
    transform: translateY(-2px);
}

.booking-input:focus {
    transform: translateY(-3px);
}

.sidebar-item {
    transition: all 0.35s ease;
}

.sidebar-item:hover {
    transform: translateX(8px);
}

.booking-feature {
    transition: all 0.4s ease;
}

.booking-feature:hover {
    transform: translateY(-10px);
}

.booking-icon {
    transition: all 0.4s ease;
}

.booking-feature:hover .booking-icon {
    transform: scale(1.12) rotate(6deg);
}
