/* ===================================
   Wellness Appointment Section
   =================================== */

.wellness-appointment-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.wellness-appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1031.2,0,1092.46,0V0z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-50px); }
}

.wellness-appointment-section .container {
    position: relative;
    z-index: 2;
}

.wellness-appointment-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wellness-appointment-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-appointment {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-brochure {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.appointment-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.appointment-image:hover {
    transform: scale(1.05);
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    font-size: 20px;
    color: rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1s; }

/* Wellness CTA Section */
.wellness-cta-section {
    background: linear-gradient(to bottom, #ffe8c7ff, #f6f5f3ff);
    padding: 60px 0;
}

.wellness-cta-section .btn-warning {
    box-shadow: 0 4px 12px rgba(183, 109, 32, 0.3);
    transition: all 0.3s ease;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.wellness-cta-section .btn-warning:hover {
    background-color: #d98c1d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(183, 109, 32, 0.4);
}

/* Quality & Safety Section */
.quality-safety-section {
    background: linear-gradient(to bottom, #fffdf8, #ffffff);
    padding: 80px 0;
}

.commitment-box {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.commitment-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Satisfied Customers Section */
.satisfied-customers-section {
    background: linear-gradient(to bottom, #ffe8c7ff, #f6f5f3ff);
    padding: 80px 0;
}

.satisfied-customers-section img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.satisfied-customers-section img:hover {
    transform: scale(1.05);
}

.testimonial-card {
    transition: all 0.5s ease-in-out;
    border-left: 5px solid var(--gold);
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Contact Ordering Section */
.contact-ordering-section {
    padding: 80px 0;
}

.contact-ordering-section h5 {
    color: #b76d20;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-ordering-section ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.contact-ordering-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    z-index: 999;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wellness-appointment-section h2 {
        font-size: 2rem;
    }
    
    .wellness-appointment-section {
        padding: 60px 0;
    }
    
    .btn-appointment,
    .btn-brochure {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .whatsapp-float {
        right: 15px;
        font-size: 24px;
        padding: 12px;
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}