/* Compact Hero with Pulse Animation */
.booking-hero-compact {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-pulse-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.pulse-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.pulse-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 15%;
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-content-compact {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-label-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content-compact h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-compact p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* Booking Section Modern */
.booking-section-modern {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Progress Steps */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.progress-step.completed .step-circle {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.progress-step.active .step-label {
    color: #d4af37;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #ddd;
    margin: 0 1rem;
}

/* Form Steps */
.booking-form-steps {
    max-width: 900px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.step-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group-modern label i {
    color: #d4af37;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Services Selection Grid */
.services-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-select-card {
    padding: 2rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.service-select-card.selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: #d4af37;
}

.time-slot.selected {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 600;
}

.summary-value {
    color: #1a1a1a;
    font-weight: 600;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-next,
.btn-back,
.btn-submit-final {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-next,
.btn-submit-final {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
}

.btn-next:hover,
.btn-submit-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-back {
    background: #f8f9fa;
    color: #666;
}

.btn-back:hover {
    background: #e0e0e0;
}

/* Modern Success Message - Fixed positioning */
.success-message-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.success-message-modern.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Checkmark Animation */
.success-check-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #d4af37;
    stroke-miterlimit: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #d4af37;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    }
}

/* Success Text */
.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.5s ease 0.6s both;
}

.success-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.7s both;
}

/* Booking Info Compact */
.booking-info-compact {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.8s both;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row i {
    width: 30px;
    font-size: 1.3rem;
    color: #d4af37;
    flex-shrink: 0;
}

.info-row span {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

/* Success Actions Modern */
.success-actions-modern {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.5s ease 0.9s both;
}

.btn-success-primary,
.btn-success-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-success-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-success-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-success-secondary {
    background: white;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-success-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Hide old success message */
.success-message {
    display: none;
}

/* CTA Section */
.cta-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.cta-content-new {
    text-align: center;
}

.cta-content-new h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-content-new p {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.8);
    margin-bottom: 2rem;
}

.btn-cta-new {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #d4af37;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Email Notification Alert */
.email-notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    border-left: 4px solid #d4af37;
    border-radius: 10px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.75s both;
}

.email-notification i {
    font-size: 1.5rem;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.email-notification p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.email-notification strong {
    color: #d4af37;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-selection-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hero */
    .booking-hero-compact {
        padding: 6rem 0 3rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-compact p {
        font-size: 1.1rem;
    }
    
    .hero-label-small {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Booking section */
    .booking-section-modern {
        padding: 3rem 0;
    }
    
    /* Progress */
    .booking-progress {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-label {
        font-size: 0.85rem;
    }
    
    .progress-line {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    /* Form */
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .step-content h2 {
        font-size: 1.6rem;
    }
    
    .step-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .form-group-modern label {
        font-size: 0.95rem;
    }
    
    .form-group-modern input,
    .form-group-modern textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    /* Services selection */
    .services-selection-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-select-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-select-card h4 {
        font-size: 1.1rem;
    }
    
    .service-select-card p {
        font-size: 0.85rem;
    }
    
    .service-price-tag {
        font-size: 1.3rem;
    }
    
    .service-duration-tag {
        font-size: 0.85rem;
    }
    
    /* Time slots */
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }
    
    .time-slot {
        padding: 0.9rem 0.5rem;
        font-size: 0.95rem;
    }
    
    /* Summary */
    .booking-summary {
        padding: 1.5rem;
    }
    
    .booking-summary h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .summary-item {
        padding: 0.65rem 0;
        font-size: 0.9rem;
    }
    
    /* Actions */
    .step-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit-final {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Success message */
    .success-message-modern {
        padding: 1.5rem;
    }
    
    .success-card {
        padding: 2.5rem 1.75rem;
        max-width: 95%;
    }
    
    .success-check-animation {
        width: 85px;
        height: 85px;
    }
    
    .checkmark {
        width: 85px;
        height: 85px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .email-notification {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .email-notification i {
        font-size: 1.3rem;
    }
    
    .email-notification p {
        font-size: 0.9rem;
    }
    
    .booking-info-compact {
        padding: 1.25rem;
    }
    
    .info-row {
        padding: 0.65rem 0;
    }
    
    .info-row i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .info-row span {
        font-size: 0.9rem;
    }
    
    .success-actions-modern {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-success-primary,
    .btn-success-secondary {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .booking-hero-compact {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2rem;
    }
    
    .hero-content-compact p {
        font-size: 1rem;
    }
    
    .step-circle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .step-content {
        padding: 1.75rem 1.25rem;
    }
    
    .step-content h2 {
        font-size: 1.4rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .service-select-card {
        padding: 1.25rem 1rem;
    }
    
    .service-select-card h4 {
        font-size: 1rem;
    }
    
    .service-price-tag {
        font-size: 1.2rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.6rem;
    }
    
    .time-slot {
        padding: 0.75rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .success-card {
        padding: 2rem 1.5rem;
    }
    
    .success-check-animation {
        width: 75px;
        height: 75px;
        margin-bottom: 1.25rem;
    }
    
    .checkmark {
        width: 75px;
        height: 75px;
    }
    
    .success-title {
        font-size: 1.7rem;
    }
    
    .success-subtitle {
        font-size: 0.95rem;
    }
    
    .email-notification {
        padding: 0.9rem;
        font-size: 0.85rem;
    }
    
    .info-row span {
        font-size: 0.85rem;
    }
    
    .btn-success-primary,
    .btn-success-secondary {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
}