
        :root {
            --mint-green: #98FF98;
            --coral-peach: #FF7F50;
            --soft-beige: #F8F5F0;
            --white: #FFFFFF;
            --dark-text: #2C3E2D;
            --light-gray: #F0F0F0;
            --shadow: rgba(0, 0, 0, 0.1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px var(--shadow);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-text);
            text-decoration: none;
        }

        .logo i {
            color: var(--mint-green);
            font-size: 1.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--coral-peach);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--mint-green);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .book-btn {
            background: linear-gradient(135deg, var(--mint-green), var(--coral-peach));
            color: white !important;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(152, 255, 152, 0.3);
        }

        @media  screen and (max-width:768px){
            .book-btn{
                padding: .4rem 1rem
            }
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(152, 255, 152, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark-text);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 15px var(--shadow);
            transition: right 0.3s ease;
            z-index: 1001;
            padding: 2rem;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-text);
        }

        .mobile-nav ul {
            list-style: none;
            margin-top: 3rem;
        }

        .mobile-nav ul li {
            margin: 1rem 0;
        }

        .mobile-nav ul li a {
            color: var(--dark-text);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            color: var(--coral-peach);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(152, 255, 152, 0.1), rgba(255, 127, 80, 0.1)),
                        url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--dark-text);
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--dark-text);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--coral-peach), var(--mint-green));
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(255, 127, 80, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 127, 80, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
        }

        .section.alt {
            background: var(--soft-beige);
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 300;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--dark-text);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            height: 200px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .about-img:hover {
            transform: scale(1.05);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-img:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
        }

        .about-img:nth-child(2) {
            grid-column: 2;
            grid-row: 1 / 3;
            height: 100%;
        }

        .about-img:nth-child(3) {
            grid-column: 1;
            grid-row: 2;
        }

        /* Treatments Grid */
        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .treatment-card {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .treatment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .treatment-icon {
            font-size: 3rem;
            color: var(--mint-green);
            margin-bottom: 1.5rem;
        }

        .treatment-card h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .treatment-card p {
            color: var(--dark-text);
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Experts Section */
        .experts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .expert-card {
            text-align: center;
            background: var(--white);
            border-radius: 25px;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px var(--shadow);
        }

        .expert-card:hover {
            transform: translateY(-5px);
        }

        .expert-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 4px solid var(--mint-green);
        }

        .expert-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .expert-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }

        .expert-card .specialty {
            color: var(--coral-peach);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-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(100%);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        /* Testimonials */
        .testimonials {
            background: var(--soft-beige);
        }

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

        .testimonial-card {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .testimonial-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 3px solid var(--mint-green);
        }

        .testimonial-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stars {
            color: var(--coral-peach);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--dark-text);
        }

        /* Specials Section */
        .specials {
            background: linear-gradient(135deg, var(--mint-green), var(--coral-peach));
            color: white;
            text-align: center;
        }

        .specials .section-title h2,
        .specials .section-title p {
            color: white;
        }

        .special-offer {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 3rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .special-offer h3 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .special-offer p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .special-btn {
            background: white;
            color: var(--dark-text);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .special-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Booking Section */
        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .booking-form {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .booking-form h3 {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-text);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--light-gray);
            border-radius: 15px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--mint-green);
            box-shadow: 0 0 0 3px rgba(152, 255, 152, 0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--mint-green), var(--coral-peach));
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

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

        .location-info {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .location-info h3 {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--soft-beige);
            border-radius: 15px;
        }

        .contact-item i {
            color: var(--coral-peach);
            font-size: 1.2rem;
            width: 20px;
        }

        .map-placeholder {
            background: var(--light-gray);
            border-radius: 15px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-text);
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark-text), #1a2b1d);
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
        }

        .footer::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 100 100"><defs><pattern id="leaf" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 Q15,8 10,15 Q5,8 10,2" fill="rgba(152,255,152,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>');
            opacity: 0.1;
        }

        .footer-content {
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--mint-green);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin: 0.5rem 0;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            opacity: 1;
            color: var(--mint-green);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--mint-green);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--coral-peach);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-grid,
            .booking-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-images {
                order: -1;
            }

            .treatments-grid,
            .experts-grid,
            .portfolio-grid,
            .testimonial-carousel {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .treatment-card,
            .expert-card,
            .testimonial-card,
            .booking-form,
            .location-info {
                padding: 1.5rem;
            }
        }