* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #2a2a2a;
    --accent-color: #c19a6b;
    --light-bg: #f8f8f8;
}

body {
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}
/* Section Subtitle Styling */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.8;
}

.section-title span {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.8rem;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Optional Gradient Text Variation */
.section-title.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), #8b7355);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        padding-bottom: 1rem;
    }
    
    .section-title span {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

/* Add this animation for scroll-triggered effect */
@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation when section comes into view */
.section-title.reveal {
    animation: titleReveal 0.8s ease-out forwards;
}
.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1.5rem 5%;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    transition: all 0.5s ease;
}

.navbar.scrolled .logo-container {
    justify-content: flex-start;
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: white;
    transition: all 0.5s ease;
    text-decoration: none;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    transition: all 0.5s ease;
}

.navbar.scrolled .nav-links {
    justify-content: flex-end;
    margin-top: 0;
    width: 100%;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
}

.navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: transparent;
    border: none;
}

.menu-toggle i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.navbar.scrolled .menu-toggle i {
    color: var(--primary-color);
}

.navbar.scrolled .menu-toggle i {
    color: var(--primary-color);
}
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
/* Navigation Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 80vh;
        width: 300px;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 0;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--primary-color) !important;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar.scrolled .nav-links {
        background: rgba(255,255,255,0.98);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    .navbar.scrolled {
        padding: 3rem 5%;
    }

    .nav-links {
        width: 70%;
        padding-top: 100px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px ;
    }

    .menu-toggle i {
        font-size: 2.5rem;

    }
}
 /* Hero Section */
 .hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    animation: slideAnimation 30s infinite;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                    url('../image/san-saloon.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                    url('../image/san-barber.jpg');
    animation-delay: 20s;
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                    url('https://images.unsplash.com/photo-1677682692306-c4f26c4bf66c?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    animation-delay: 40s;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    
}

.typing-container {
    min-height: 10px;
    margin-bottom: 2rem;
}
.highlight-text {
    color: #c19a6b;
    font-family: 'Dancing Script', cursive;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    display: inline-block;
    margin: 0 5px;
}

.typing-text {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    font-family: 'Arial', sans-serif; /* Base font */
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -15px;
    animation: cursorBlink 0.7s infinite;
    color: var(--accent-color);
}


.cta-button {
    padding: 1.7rem 4rem;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
}

.cta-button:hover {
    background: #a87f52;
}
.hero-content p {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Great Vibes', cursive;
}
.special-word {
    color: var(--accent-color);
    font-family: 'Great Vibes', cursive;
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Animations */
@keyframes slideAnimation {
    0% { opacity: 0; }
    8% { opacity: 1; }
    33% { opacity: 1; }
    41% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .typing-text {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.6rem;
    }
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 4rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        padding: 0 10%;
    }
    
    .typing-container {
        min-height: 10px;
    }
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .typing-container{
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .typing-text {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .typing-container{
        margin-bottom: 0.5rem;
    }
}



        /* Services Section */
        .services {           
            padding: 0 3rem;
            position: relative;
            z-index: 100;
            margin-top: -100px;
        }
    
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            transform: translateY(-50px);
            opacity: 0;
            transition: all 1s ease;
        }
    
        .services-grid.active {
            transform: translateY(0);
            opacity: 1;
        }
    
        .service-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }
    
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(193, 154, 107, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
    
        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
    
        .service-card:hover::before {
            animation: shine 1.5s;
        }
    
        .service-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
    
        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.2);
        }
    
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
    
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
    
        .service-card:hover h3::after {
            width: 80px;
        }
    
        @keyframes shine {
            0% { transform: rotate(45deg) translate(-50%, -50%); }
            100% { transform: rotate(45deg) translate(150%, 150%); }
        }
    
        /* Intersection Observer Activation */
        .services-grid {
            transform: translateY(50px);
            opacity: 0;
        }
    
        .services-grid.active {
            transform: translateY(0);
            opacity: 1;
        }
        /*services 2*/
        .services-gallery {
            padding: 5rem 5%;
            background: #fff;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            min-height: 400px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-item:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .service-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
        }
        
        .service-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .service-desc {
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .service-item:hover .service-title,
        .service-item:hover .service-desc {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Individual Service Styling */
        .nail-bar .service-content { background-color: rgba(156, 89, 118, 0.3); }
        .facial .service-content { background-color: rgba(76, 145, 149, 0.3); }
        .massage .service-content { background-color: rgba(193, 154, 107, 0.3); }
        .barber .service-content { background-color: rgba(42, 42, 42, 0.3); }
        
        .service-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.3) 100%
            );
            transform: skewX(-45deg);
            transition: left 0.6s ease;
        }
        
        .service-item:hover::after {
            left: 150%;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .service-item {
                min-height: 300px;
            }
        }
        /*infinite scroll*/ 
        .infinite-scroll-section {
        background: var(--primary-color);
        padding: 1rem 2rem;
        overflow: hidden;
        position: relative;
    }

    .scroll-track {
        display: flex;
        width: fit-content;
        animation: scroll 80s linear infinite;
    }

    .scroll-phrase {
        display: flex;
        gap: 4rem;
        padding: 0 2rem;
    }

    .scroll-word {
        font-size: 4rem;
        font-weight: 300;
        color: rgba(193, 154, 107, 0.3);
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 4px;
        position: relative;
        transition: all 0.3s ease;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Gradient overlay */
    .scroll-fade {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20%;
        pointer-events: none;
        z-index: 2;
    }

    .scroll-fade-left {
        left: 0;
        background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    }

    .scroll-fade-right {
        right: 0;
        background: linear-gradient(270deg, var(--primary-color) 0%, transparent 100%);
    }

    @media (max-width: 768px) {
        .scroll-word {
            font-size: 3rem;
            letter-spacing: 4px;
        }
    }
    /*about-us*/
    .about-section {
        position: relative;
        height: 100vh;
        overflow-y: auto;
    }
    
    .about-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                    url('https://images.unsplash.com/photo-1583416750470-965b2707b355?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
        filter: saturate(0.8);}
    
    .about-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    }
    .about-content {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-width: 1000px;
        margin: 0 auto;
        padding: 3rem;        
        text-align: center;
        backdrop-filter: blur(5px);
    }
    
    .about-content.active {
        opacity: 1;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .about-signature {
        font-family: 'Dancing Script', cursive;
        font-size: 2rem;
        color: var(--accent-color);
        margin-top: 2rem;
    }
    
    @media (max-width: 768px) {
        .about-section {
            height: auto;
            padding: 4rem 1rem;
        }
        
        .about-bg {
            position: absolute;
            background-attachment: scroll;
        }
        
        .about-content {
            position: static;
            transform: none;
            margin: 2rem auto;
        }
    }
    /*counter*/
    .stats-section {
        padding: 5rem 5%;
        background: var(--light-bg);
        text-align: center;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .stat-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 300;
        color: var(--accent-color);
        margin: 1rem 0;
        display: block;
    }
    
    .stat-label {
        color: var(--primary-color);
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 2.5rem;
        }
        
        .stat-card {
            padding: 2rem;
        }
    }
    /*before after*/
    .compare-section {
        padding: 5rem 5%;
        background: var(--light-bg);
        text-align: center;
    }
    
    .compare-container {
        position: relative;
        max-width: 1000px;
        height: 600px;
        margin: 2rem auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .compare-image {
        position: absolute;
        width: 100%;
        height: 100%;
        
    }
    
    .image-before {
        
        
        clip-path: polygon(0 0 , 50% 0,50% 100%, 0 100%);
    }
    #slider{
        position:relative;
        -webkit-appearance: none;
        width:calc(100% + 40px);
        height: 100%;
        margin-left: -20px;
        background-color: transparent;
        outline: none;
    }
    #slider::-webkit-slider-thumb{
        -webkit-appearance: none;
        height:40px;
        width:40px;
        background:url(),rgba(255, 255, 255, 0.322);
        border:3px solid #ffffff;
        border-radius: 50%;
        background-size: contain;

    }
    
    
    .slider-handle {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--accent-color);
        z-index: 3;
        cursor: col-resize;
        transform: translateX(-50%);
    }
    
    .slider-handle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 50px;
        background: var(--accent-color);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .slider-handle:hover::before {
        opacity: 0.2;
    }
    
    .slider-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.5rem;
        pointer-events: none;
        z-index: 4;
    }
    
    @media (max-width: 768px) {
        .compare-container {
            height: 400px;
        }
    }
/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.salon-section, .barber-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-overlay {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.price-table {
    width: 80%;
    margin: 3rem auto;
    border-collapse: collapse;
}

.price-table td, .price-table th {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
/*testimonial*/
.testimonials {
    padding: 8rem 5%;
    background: #f9f9f9;
    position: relative;
    
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    min-width: calc(33.33% - 1.5rem);
    flex: 0 0 calc(33.33% - 1.5rem);
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    filter: blur(2px);
    transform: scale(0.9);
    cursor: pointer;
}

.testimonial-card.active {
    opacity: 1;
    filter: none;
    transform: scale(1);
    z-index: 2;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 4rem;
}
.testimonial-text::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -5rem;
    font-size: 8rem;
    color: var(--accent-color);
    font-family: 'Times New Roman', serif;
    opacity: 0.3;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    padding: 0 2rem;
}

.nav-btn {
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn i {
    color: white;
    font-size: 1.5rem;
}

.dots-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

/* Testimonials Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-carousel {
        gap: 1rem;
        padding: 1rem 0;
    }

    .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 2rem;
        margin: 0 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        padding-left: 3rem;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn i {
        font-size: 1.2rem;
    }

    .dots-container {
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .testimonial-text::before {
        font-size: 4rem;
        top: -1rem;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .client-avatar {
        margin-bottom: 1rem;
    }
}
/* CTA*/
.cta-section {
    padding: 8rem 5%;
    background: url('https://images.unsplash.com/photo-1511871893393-82e9c16b81e3?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') ;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: gray;
}

/*chat*/
.chat-icon{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
/* Footer */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23c19a6b" opacity="0.1"/></svg>');
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.footer-column {
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}
.footer-column:hover {
    transform: translateY(-5px);
    
}
.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}
.contact-info p {
    position: relative;
    padding-left: 30px;
}

.contact-info i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
}


.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}
.footer-column i{
    padding-right: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
    left:40% ;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    border-radius: 4px;
}

.newsletter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 45px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #a87f52;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter {
        flex-direction: column;
    }
}
/* About Page Styles */
.about-page {
    background: var(--light-bg);
}

/* Hero Section */
.about-hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    background: rgba(0,0,0,0.3);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 5%;
}

/* Timeline Section */
:root {
    
    --accent-color: #c19a6b;
    --light-bg: #f8f8f8;
}

.timeline-section {
    position: relative;
    padding: 8rem 5%;
    background: var(--light-bg);
    min-height: 100vh;
    overflow: hidden;
}

.timeline-line-container {
    position: absolute;
    left: 50%;
    top: 220px;
    height: 100%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
    background: rgba(193,154,107,0.1);
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.year-card {
    position: relative;
    width: 45%;
    margin: 100px 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.year-card.left {
    margin-left: 5%;
}

.year-card.right {
    margin-left: 50%;
}

.year-card.active {
    opacity: 1;
    transform: translateX(0);
}

.year-dot {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--light-bg);
    box-shadow: 0 0 15px rgba(193,154,107,0.3);
    z-index: 1;
}
.year-dot-left {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--light-bg);
    box-shadow: 0 0 15px rgba(193,154,107,0.3);
    z-index: 1;
}

.year-info {
    background: rgba(255,255,255,0.97);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 3;
    transform: scale(0.95);
    transition: transform 0.6s ease;
}

.year-info:hover {
    transform: scale(1);
}

.year-info h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.year-highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-item ul {
    list-style: none;
    padding-left: 1.5rem;
}

.highlight-item li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.highlight-item li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .timeline-line-container {
        left: 30px;
    }

    .year-card {
        width: 80%;
        margin-left: 10% !important;
    }

    .year-dot {
        left: -45px;
    }

    .year-info {
        padding: 1.5rem;
        width: 300px;
    }
}
/*core values*/

.values-section {
    padding: 8rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.value-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.value-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    background: conic-gradient(
        var(--accent-color),
        #ffffff,
        var(--accent-color)
    );
    transition: opacity 0.3s ease;
    animation: rotateBorder 3s linear infinite;
}

.value-circle:hover::before {
    opacity: 1;
}

.value-circle:hover {
    transform: scale(1.05);
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-color);
}

.circle-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.circle-content p {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 80%;
}

@media (max-width: 768px) {
    .value-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-content h3 {
        font-size: 1.5rem;
    }
    
    .circle-content p {
        font-size: 0.9rem;
    }
}
/* Team Section */
.team-section {
    padding: 6rem 5%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.member-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.member-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(42,42,42,0.9);
    padding: 2rem;
    color: white;
    transition: bottom 0.5s ease;
}

.team-member:hover .member-info {
    bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.philosophy-content {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.philosophy-image {
    background: url('spa-interior.jpg') center/cover;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .philosophy-section {
        grid-template-columns: 1fr;
    }
    
    .philosophy-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .timeline-content {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-info {
        position: relative;
        bottom: 0;
        background: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
}
/*appointment*/
/*appointment*/
.appointment-section {
    position: relative;
    padding: 100px 20px;
    background: url('../image/apen.jpg') center/cover;
    min-height: 700px;
    display: flex;
    align-items: center;
  }
  
  .appointment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  }
  
  .appointment-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
  
  .stationery-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    margin-top:100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
    border-top: 3px solid #c5a47e;
  }
  
  .elegant-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #11102c;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  
  .vintage-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .vintage-form .form-group {
    flex: 1;
    position: relative;
  }
  
  .vintage-form input,
  .vintage-form select,
  .vintage-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #2c1810;
    transition: all 0.3s ease;
  }
  
  .vintage-form input:focus,
  .vintage-form select:focus,
  .vintage-form textarea:focus {
    outline: none;
    border-bottom-color: #c5a47e;
  }
  
  .vintage-form label {
    position: absolute;
    left: 0;
    top: 1px;
    color: #666;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .vintage-form input:focus ~ label,
  .vintage-form input:valid ~ label,
  .vintage-form textarea:focus ~ label,
  .vintage-form textarea:valid ~ label,
  .vintage-form select:valid ~ label {
    top: -15px;
    font-size: 12px;
    color: #c5a47e;
  }
  
  .vintage-form select {
    appearance: none;
    padding-right: 25px;
    text-align: center;
    background: url("data:image/svg+xml;utf8,<svg fill='%232c1810' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right center;
  }
  
  .classic-button {
    background: linear-gradient(45deg, #c5a47e, #b08f69);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
  }
  
  .classic-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.4);
  }
  
  @media (max-width: 768px) {
    .vintage-form .form-row {
      flex-direction: column;
      gap: 20px;
    }
    
    .elegant-heading {
      font-size: 2.2rem;
    }
    
    .stationery-form {
      padding: 30px 20px;
    }
  }
/*hairstyyling*/

.parallax-services {
    padding: 8rem 5%;
    background: linear-gradient(45deg, 
        rgba(193,154,107,0.03) 0%,
        rgba(255,255,255,0.1) 100%);
    position: relative;
    z-index: 2;

}

.service-container {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin: 4rem 0;
    gap: 4rem;
    position: relative;
}
.image-container {
    flex: 1;
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.image-frame {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.service-content1 {
    flex: 1;
    padding: 3rem;
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 3;
}

.luxury-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.luxury-table th {
    background: var(--accent-color);
    color: white;
    padding: 1.2rem;
    font-weight: 500;
    text-align: left;
}

.luxury-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--primary-color);
}

.luxury-table tr:hover {
    background: rgba(193,154,107,0.03);
}

.reversed {
    flex-direction: row-reverse;
}

@media (max-width: 1200px) {
    .service-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .image-frame {
        height: 400px;
    }
    
    .service-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .luxury-table th, 
    .luxury-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
/*contact page*/

.contact-section {
    padding: 60px 20px;
    background-image: url(../image/telephone.jpg) ;
  }
  
  .contact-container {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 140px;
  }
  
  .form-container {
    flex: 1;
    padding: 50px;
    background: linear-gradient(45deg, #c19a6b 0%, rgb(201, 135, 38) 100%);
    color: white;
  }
  
  .form-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 25px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 20px;
    background: #c5a47e;
    color: #2b2b2b;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-group textarea {
    height: 120px;
    padding: 15px;
  }
  
  .form-group label {
    position: absolute;
    left: 85px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group input:valid,
  .form-group textarea:valid {
    background: rgba(255,255,255,0.2);
    outline: none;
  }
  
  .form-group input:focus ~ label,
  .form-group textarea:focus ~ label,
  .form-group input:valid ~ label,
  .form-group textarea:valid ~ label {
    top: -10px;
    left: 35px;
    font-size: 12px;
    color: #c19a6b;
  }
  
  .submit-btn {
    background: #c19a6b;
    color: #ffffff;
    padding: 18px 65px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #ffffff86;
  }
  
  .map-container {
    flex: 1;
    position: relative;
  }
  
  .styled-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
  }
  
  .map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 1;
  }
  
  .map-overlay h3 {
    color: #c19a6b;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    
    .form-container {
      padding: 30px;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }

/*services spc*/

.spx-services {
    padding: 8rem 0;
    background: linear-gradient(45deg, #312e2e 0%, #000000 100%);
    position: relative;
    overflow: hidden;
  }
  
  .spx-services-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
  }
  
  .spx-services-title {
    font-size: 3.5rem;
    color: #e6d5b8;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  
  .spx-services-sub {
    color: #9e8e7a;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
  }
  
  .spx-service-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .spx-service-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .spx-service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .spx-service-img img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(110%);
  }
  .spx-service-img-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
  }
  .spx-service-text {
    flex: 1;
    padding: 4rem;
    position: relative;
    z-index: 1;
  }
  
  .spx-service-name {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .spx-service-desc {
    color: #c4b7a6;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .spx-service-price {
    display: inline-block;
    background: #e6d5b8;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  
  /* Parallax Effect */
  .spx-parallax-target {
    will-change: transform;
  }
  
  @media (max-width: 768px) {
    .spx-service-row {
      flex-direction: column;
      padding: 2rem 1rem;
      gap: 2rem;
    }
    .spx-service-img-wrapper {
        min-height: 300px;
        order: -1;
      }
    
    .spx-service-img img {
      height: 300px;
    }
    
    .spx-service-text {
      padding: 0 1rem;
    }
    
    .spx-service-name {
      font-size: 2rem;
    }
  }
  