/* Booking Page - Black & Pink Theme */
:root {
    --primary: #000000;
    --secondary: #ff3b6f;
    --accent: #ff3b6f;
    --light: #0a0a0a;
    --dark: #000000;
    --text: #ffffff;
    --text-light: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 59, 111, 0.3);
}

header.scrolled {
    background-color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0.7rem 1.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: var(--secondary);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 59, 111, 0.4);
}

/* Hero Section - Gradient Background */
.appointment-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: #ff3b6f;
    background-image: radial-gradient(at 100% 1%, rgba(0, 0, 0, 0.71) 0px, transparent 50%),
                      radial-gradient(at 0% 100%, rgba(0, 0, 0, 0.6) 0px, transparent 50%),
                      radial-gradient(at 0% 0%, rgba(0, 0, 0, 0.81) 0px, transparent 50%),
                      radial-gradient(at 37% 99%, #ff3b6f 0px, transparent 50%),
                      radial-gradient(at 99% 98%, #000000 0px, transparent 50%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Appointment Process */
.appointment-process {
    padding: 5rem 0;
    background-color: #000000;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 1rem;
    color: #ffffff;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite ease-in-out;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-card p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.thai-text {
    font-style: italic;
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Contact Buttons */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 59, 111, 0.3);
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.phone {
    background: var(--secondary);
    color: #000000;
}

.contact-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Additional Info */
.additional-info {
    margin-top: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: white;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: #cccccc;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #000000;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #cccccc;
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Section Transitions */
.appointment-hero {
    animation: fadeIn 1s ease-out;
}

.appointment-process {
    animation: fadeIn 1s ease-out 0.2s both;
}

.cta-section {
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Content Animations */
.section-title {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.steps-container,
.additional-info {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

/* Card Animations */
.step-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}

.step-card:nth-child(1) { animation-delay: 0.3s; }
.step-card:nth-child(2) { animation-delay: 0.5s; }
.step-card:nth-child(3) { animation-delay: 0.7s; }
.step-card:nth-child(4) { animation-delay: 0.9s; }
.info-card:nth-child(1) { animation-delay: 0.3s; }
.info-card:nth-child(2) { animation-delay: 0.5s; }

/* Hero Text Animation */
.hero-content h1 {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.hero-content p {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.2s forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    } 
    
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .appointment-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}