/* Luxe Beauty Studio Demo Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4576b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', serif;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-menu a:hover {
    color: #d4576b;
}

.back-link {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d4576b 0%, #e8a4b8 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Setup badges, compact: the two declared settings for this case.
   Same structure as the leadgen case, re-coloured for the rose hero. */

.setup-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 1rem;
    max-width: 760px;
}

.setup-chips li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.4rem 0.95rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.setup-key {
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.setup-value {
    font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: #d4576b;
    background: #fff;
    border-radius: 999px;
    padding: 0.05rem 0.5rem;
}

.setup-note { color: rgba(255, 255, 255, 0.85); }

.setup-line {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.head-meta {
    margin: 0.9rem auto 0;
    font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.75);
    overflow-wrap: anywhere;
}

.booking-hero .setup-chips { margin-top: 1.6rem; }

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-primary {
    background: white;
    color: #d4576b;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fafafa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4576b;
}

.service-image {
    height: 150px;
    background: linear-gradient(135deg, #f8bbd9, #e8a4b8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Georgia', serif;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4576b;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    color: #555;
}

.service-features li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8bbd9, #ddd6fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder {
    font-size: 3rem;
    opacity: 0.7;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4576b 0%, #e8a4b8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-benefits .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-benefits .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-benefits .benefit-item span:last-child {
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-primary {
    background: white;
    color: #d4576b;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 8% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h3 {
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
    font-family: 'Georgia', serif;
}

.modal p {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #666;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input,
.modal select,
.modal textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: #d4576b;
}

.modal textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #d4576b, #e8a4b8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #c2475a, #d4889a);
}

/* Booking Page Styles */
.booking-hero {
    background: linear-gradient(135deg, #d4576b 0%, #e8a4b8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.booking-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-form-section {
    padding: 80px 0;
    background: #fafafa;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.info-benefits {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
    color: #d4576b;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Georgia', serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.contact-icon {
    font-size: 1.2rem;
    color: #d4576b;
}

.booking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form-container h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form-container input:focus,
.booking-form-container select:focus,
.booking-form-container textarea:focus {
    outline: none;
    border-color: #d4576b;
}

.booking-form-container textarea {
    resize: vertical;
    min-height: 100px;
}

.service-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.form-checkboxes {
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.1rem;
}

.form-total {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.total-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.booking-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #d4576b, #e8a4b8);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 87, 107, 0.3);
}

.confirmation-content {
    text-align: center;
    padding: 1rem;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Georgia', serif;
}

.confirmation-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.appointment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirm-btn, .home-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: #d4576b;
    color: white;
}

.home-btn {
    background: #f8f9fa;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
}