    :root {
        --primary: #2a2a2a;
        --secondary: #d4af37;
        --accent: #c9a96e;
        --light: #f8f5f2;
        --dark: #1a1a1a;
        --text: #333333;
        --salon: #e8c8b3;
        --spa: #b8d8d8;
        --tattoo: #d4c3e8;
        --nails: #f5c6d0;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text);
        background-color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header Styles */
    header {
        background-color: var(--primary);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        top:0;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secondary);
        z-index: 1001;
    }
    
    .logo span {
        color: white;
    }
    
    nav {
        display: flex;
        align-items: center;
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 2rem;
    }
    
    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    nav ul li a:hover {
        color: var(--secondary);
    }
    
    .cta-button {
        background-color: var(--secondary);
        color: var(--dark);
        padding: 0.7rem 1.5rem;
        margin:0 1rem;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }

    
    .cta-button:hover {
        background-color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

/*    .pricing .cta-button{
        background:linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
        color:var(--secondary);
    }*/
    .booking-btn{
        margin:0rem !important;
    }
    .desktop-hidden{
    display: none;
}
.d-flex{
    display:flex;
}
    /* Mobile Menu Toggle */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        margin-top:10px;
    }
    
    .menu-toggle span {
        height: 3px;
        width: 25px;
        background-color: white;
        margin-bottom: 4px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        height: 100%;
        position: relative;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 2;
    }
    .hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}
.hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.primary {
    background: var(--secondary);
    color: var(--dark);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: white;
}

.cta-button.secondary:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

    .hero h1,.hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero p,.hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}
.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover:before {
    left: 100%;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-features li {
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* Featured Work Section */
.featured-work {
    padding: 5rem 0;
    background: var(--light);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.featured-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.featured-item.large {
    grid-row: span 1;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
    opacity: 1;
}

.featured-category {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.outline:hover {
    background: var(--primary);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    justify-content: center;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
.our-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.our-story:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: rotate(0deg);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.experience {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.floating-card.clients {
    bottom: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
}

.card-content .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.card-content .label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.story-text .lead {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.story-highlights {
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.7);
}

.highlight-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.highlight-content p {
    color: #666;
    margin: 0;
}

.story-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Team Section */
.our-team {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.specialty-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-overlay .social-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.member-overlay .social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.member-info {
    padding: 2rem;
}

.member-role {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}

.member-stats .stat {
    text-align: center;
}

.member-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.member-stats .stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

.book-artist {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.book-artist:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.team-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light);
    border-radius: 20px;
}

.team-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 500;
}

/*booking new*/
.homepage-booking {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
}
.homepage-booking h2,.homepage-booking p{
    color:#ffffff;
}

.homepage-booking: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 1000" opacity="0.03"><path fill="%232a2a2a" d="M500,250c138,0,250,112,250,250S638,750,500,750S250,638,250,500S362,250,500,250z"/></svg>');
    background-size: 200px;
}

/* Process Steps Visualization */
.booking-process-visual {
    margin: 3rem 0 4rem;
}

.process-steps-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps-simple:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.process-step-simple {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-simple:hover .step-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.step-content {
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1.2rem;
}

.step-content p {
    color:white;
    font-size: 0.9rem;
    margin: 0;
}

/* Booking CTA */
.booking-cta {
    padding: 3rem;

    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background:white;
}

.cta-content h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-content p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button.large i {
    margin-right: 0.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color:white;
    font-weight: 500;
}

.feature i {
    color: var(--secondary);
}

    @media (max-width: 768px) {
        .header-container {
            flex-wrap: wrap;
        }
        
        .menu-toggle {
            display: flex;
        }
        
        nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--primary);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.3s ease;
            z-index: 1000;
        }
        
        nav.active {
            right: 0;
        }
        
        nav ul {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        nav ul li {
            margin: 1rem 0;
        }
        
        .cta-button.mobile-hidden {
            display: none;
            margin-left:5px;
        }
        .desktop-hidden{
            display: block;
            margin-top: 5px;
        }
        .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 250px;
    }
     .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        transform: none;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        margin: 1rem 0;
        animation: none;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .story-cta {
        justify-content: center;
    }
    .process-steps-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps-simple:before {
        display: none;
    }
    
    .process-step-simple {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }
    
    .step-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-number {
        top: -5px;
        right: auto;
        left: -5px;
    }
    
    .booking-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .homepage-booking {
        padding: 3rem 0;
    }
    
    .process-step-simple {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-button.large {
        width: 100%;
        justify-content: center;
    }
    
    .booking-cta {
        margin: 0 -20px;
        border-radius: 0;
    }
.testimonial-slider-container {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .slider-controls {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
        margin: 2rem -20px 0;
        border-radius: 0;
    }
    }
    @media (max-width: 576px) {
        .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero h1,.hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero p,.hero-content p {
        font-size: 1rem;
    }
        .member-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .client-avatar {
        width: 70px;
        height: 70px;
    }
    } 
     @media (max-width: 400px) {
        .hero h1,.hero-content h1 {
            font-size: 1.8rem;
        }
        
        .hero p,.hero-content p{
            font-size: 1rem;
        }
        .px-5{
            padding-left:5%;
            padding-right:5%;
        }
    }

    @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.process-step-simple:nth-child(1) .step-icon {
    animation: pulse 2s ease-in-out infinite;
}

.process-step-simple:nth-child(2) .step-icon {
    animation: pulse 2s ease-in-out 0.5s infinite;
}

.process-step-simple:nth-child(3) .step-icon {
    animation: pulse 2s ease-in-out 1s infinite;
}

.process-step-simple:nth-child(4) .step-icon {
    animation: pulse 2s ease-in-out 1.5s infinite;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}