        /* Modern CSS Variables */
        :root {
            --primary: #f0b78c;
            --primary-dark: #f8c095;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #2d3436;
            --gray: #6c757d;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.22);
            --border-radius: 2px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 0.8rem;
        }


        a {
            text-decoration: none;
            color: #fcb986;
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-size: 2.4rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);

        }

        .section-header p {
            font-size: 0.9rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            margin-top: 10px;
        }


        p {
            font-size: 0.9rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 300;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }



        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 154, 107, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--light);
            backdrop-filter: blur(25px);
            color: var(--light);
            box-shadow: none;
        }

        .btn-outline::before {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .btn-outline:hover {
            color: white;
        }

        /* Header Styles */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.5s ease;
            padding: 10px 0;
        }

        #header.transparent {
            background: transparent;
            backdrop-filter: blur(25px);
        }

        #header.scrolled {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
        }

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

        .logo-text {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 2px;
            color: white;
            transition: color 0.3s ease;
            z-index: 1001;
        }

        #header.scrolled .logo-text {
            color: #222;
        }

        .logo-text span {
            font-weight: 400;
            color: #f0b78c;
        }

        nav {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: flex-end;
        }

        #nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            position: relative;
            width: 100%;
            justify-content: flex-end;
            padding-right: 10px;
            margin-right: 10px;
        }

        #nav-menu li {
            margin: 0 20px;
            position: relative;
        }

        #nav-menu li a {
            text-decoration: none;
            color: white;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 0;
            transition: color 0.3s ease;
            position: relative;

        }

        #header.scrolled #nav-menu li a {
            color: #333;
        }

        #nav-menu li a:hover {
            color: #f0b78c;
        }

        /* Hover Underline Style */
        #nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #f0b78c;
            transition: width 0.3s ease;
        }

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

        /* Active link style */
        #nav-menu li a.active::after {
            width: 100%;
        }
        #nav-menu li a.active{
            color: var(--primary);
        }

        /* Book Now Button */
        #open-booking-modal {
            background: #f0b78c;
            color: #222;
            border: none;
            padding: 10px 25px;
            border-radius: 0;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 1px;
            margin-left: 400px;
        }

        #open-booking-modal:hover {
            background: #f8c095;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(193, 155, 95, 0.3);
        }

        /* Advanced Hamburger Menu */
        .hamburger {
            cursor: pointer;
            display: none;
            z-index: 1001;
        }

        .hamburger input {
            display: none;
        }

        .hamburger svg {
            height: 3em;
            transition: transform 600ms cubic-bezier(0.5, 0, 0.5, 1);
        }

        .line {
            fill: none;
            stroke: white;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 3;
            transition: stroke-dasharray 600ms cubic-bezier(0.5, 0, 0.5, 1),
                stroke-dashoffset 600ms cubic-bezier(0.5, 0, 0.5, 1);
        }

        .line-top-bottom {
            stroke-dasharray: 12 63;
        }

        .hamburger input:checked+svg {
            transform: rotate(-45deg);
        }

        .hamburger input:checked+svg .line-top-bottom {
            stroke-dasharray: 20 300;
            stroke-dashoffset: -32.42;
        }

        #header.scrolled .hamburger .line {
            stroke: #222;
        }

        /* Enhanced Mobile Navigation Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            padding: 40px;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-header {
            position: absolute;
            top: 40px;
            left: 40px;
        }

        .mobile-logo-text {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 2px;
            color: white;
        }

        .mobile-logo-text span {
            font-weight: 400;
            color: #f0b78c;
        }

        .mobile-nav-menu {
            list-style: none;
            text-align: center;
            width: 100%;
            max-width: 500px;
        }

        .mobile-nav-menu li {
            margin: 25px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(3) {
            transition-delay: 0.5s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(4) {
            transition-delay: 0.55s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(6) {
            transition-delay: 0.35s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(7) {
            transition-delay: 0.5s;
        }

        .mobile-nav-overlay.active .mobile-nav-menu li:nth-child(8) {
            transition-delay: 0.55s;
        }

        .mobile-nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            padding: 10px 0;
        }

        .mobile-nav-menu li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #f0b78c;
            transition: width 0.3s ease;
        }

        .mobile-nav-menu li a:hover {
            color: #f0b78c;
            transform: translateX(10px);
        }

        .mobile-nav-menu li a:hover::before {
            width: 100%;
        }

        .mobile-book-btn {
            background: #f0b78c;
            color: #222;
            border: none;
            padding: 15px 30px;
            border-radius: 0;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.5s;
        }

        .mobile-nav-overlay.active .mobile-book-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-book-btn:hover {
            background: #f8c095;
            transform: translateY(-2px);
        }

        .mobile-nav-footer {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .header-container {
                padding: 0 30px;
            }

            #nav-menu li {
                margin: 0 15px;
            }
        }

        @media (min-width: 1025px) {
            .hamburger {
                display: none !important;
            }
        }

        @media (max-width: 1024px) {
            #nav-menu {
                display: none;
            }

            .hamburger {
                display: block !important;
            }

            #open-booking-modal {
                display: none;
            }

            .header-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 24px;
            }

            .header-container {
                padding: 0 15px;
            }

            .mobile-nav-menu li a {
                font-size: 20px;
            }

            .mobile-nav-header {
                top: 20px;
                left: 20px;
            }

            .mobile-nav-overlay {
                padding: 20px;
            }

            .mobile-nav-footer {
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 22px;
            }

            .mobile-nav-menu li a {
                font-size: 18px;
            }

            .mobile-logo-text {
                font-size: 20px;
            }

            .hamburger svg {
                height: 2.5em;
            }
        }

        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease, transform 2s ease;
            transform: translateY(20px);
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
            transform: translateY(0);
            z-index: 1;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .slide-1 .slide-bg {
            background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://img.grouponcdn.com/deal/S7fLxozsTT3DF4jAf9XTNhNc5gC/S7-2048x1229/v1/t2001x1212.webp');
        }

        .slide-2 .slide-bg {
            background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://images.squarespace-cdn.com/content/v1/589139a5e3df28c01a2fbd16/1485987264461-AV8NAGEZN2XGAVFYIIVY/beautiful-girl-long-hair-wide.jpg?format=2500w');
        }

        .slide-3 .slide-bg {
            background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://salon360.com.sg/wp-content/uploads/2020/07/banner3.jpg');
        }

        .vertical-text {
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            letter-spacing: 8px;
            z-index: 10;
            display: flex;
            align-items: center;
        }

        .vertical-text::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.5);
        }

        .vertical-text::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.5);
        }

        .vertical-line-middle {
            position: absolute;
            left: 50%;
            top: 115px;
            transform: translateX(-50%);
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.5);
            margin: 15px 0;
        }


        .hero-content {
            text-align: left;
            color: white;
            top: 40px;
            max-width: 700px;
            margin: 50px;
            position: relative;
            border-radius: 20px;
            background: transparent;
            backdrop-filter: blur(2px);
        }

        .salon-tag {
            display: inline-block;
            background: rgba(231, 185, 185, 0.35);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-left: 3px solid #f0b78c;
            padding: 8px 20px;
            margin-bottom: 30px;
            font-size: 12px;
            letter-spacing: 3px;
            color: white;
        }

        .hero-content h1 {
            font-size: 60px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            margin-bottom: 60px;
        }


        .btn i {
            font-size: 12px;
        }

        .btn-primary {
            background: #f0b78c;
            color: #222;
            border: none;
        }

        .btn-primary:hover {
            background: #f8c095;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            justify-content: flex-start;
            gap: 60px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 5px;
            color: #f0b78c;
        }

        .stat-text {
            font-size: 12px;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
        }

        .carousel-nav {
            position: absolute;
            bottom: 100px;
            left: 205px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .nav-line {
            width: 40px;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-line.active {
            background: #f0b78c;
            width: 60px;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn {
                width: 350px;
                justify-content: center;
            }

            .vertical-text {
                left: 20px;
                font-size: 12px;
            }

            .hero-stats {
                gap: 30px;
            }

            .carousel-nav {
                left: 90px;
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .vertical-text {
                display: none;
            }

            .container {
                padding: 0 10px;
            }
        }

        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

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

        .about-image::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            border: 5px solid var(--primary);
            top: -20px;
            left: -20px;
            z-index: -1;
            border-radius: var(--border-radius);
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .about-features {
            margin: 30px 0;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .feature-text h4 {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }


        /* Services Section */
        .services {
            background-color: #fcfafa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 1400px;
        }

        .service-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            border-radius: 10px;
            flex-direction: column;
            height: 520px;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-image {
            height: 60%;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-badge {
            position: absolute;
            top: 15px;
            left: 0;
            background: linear-gradient(135deg, #f0b78c, #f0b78c);
            color: white;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .price-overlay {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 10px;
            color: #2c2c2c;
            font-weight: 700;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .price-overlay span {
            font-size: 13px;
            font-weight: 500;
            color: #555;
            display: block;
            margin-top: 2px;
        }

        .service-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: #222;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .service-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
            flex: 1;
        }

        .service-meta {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service-icons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .service-icon {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: center;
            flex: 1;
            gap: 10px;
        }

        .icon-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f8f5ee;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            color: #f0b78c;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .service-icon:hover .icon-circle {
            background: #f0b78c;
            color: white;
            transform: scale(1.1);
        }

        .icon-label {
            font-size: 11px;
            color: #666;
            font-weight: 500;
            line-height: 1.2;
        }


        .book-service-btn {
            padding: 14px 24px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            letter-spacing: 1px;
            border-radius: 10px;
            border: none;
            width: 100%;
            background: linear-gradient(135deg, #fcb986, #f0b78c);
            color: white;
            box-shadow: 0 4px 15px rgba(184, 148, 77, 0.3);
        }

        .book-service-btn:hover {
            box-shadow: 0 6px 20px rgba(184, 148, 77, 0.4);
            transform: translateY(-2px);
        }


        /* Gallery Section */
        .gallery {
            background-color: white;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 20px;
            background: var(--light);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
        }

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

        /* Promotions Section */
        .promotions {
            position: relative;
            background-image: url('https://images.fresha.com/locations/location-profile-images/152460/2275541/394db692-c5c7-403c-bb61-2d000bd5e6db-MagicHands-US-NewYork-Yonkers-NortheastYonkers-Fresha.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            z-index: 0;
        }

        .promotions::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(58, 58, 58, 0.85);
            z-index: -1;
            /* This sends the overlay behind the text but above the background image */
        }

        .promotions .section-header h2 {
            color: white;
        }

        .promotions .section-header h2::after {
            background: white;
        }

        .promo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .promo-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .promo-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .promo-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .promo-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .promo-card p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .promo-badge {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Products Section */
        .products {
            background-color: var(--light);
        }

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

        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 20px;
        }

        .product-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-content p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
        }

        @media (max-width:580px) {
            .product-meta {
                display: inherit;
            }

            .product-price {
                margin-bottom: 20px;
                font-size: 1rem;
            }
        }

        /* Blog Section */
        .blog {
            background-color: white;
        }

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

        .blog-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .blog-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.7rem;
            color: var(--gray);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-content h3 {
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .blog-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.8rem;
        }

        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .blog-tag {
            background: var(--light);
            color: var(--secondary);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(193, 154, 107, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-member {
            text-align: center;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .member-image {
            width: 240px;
            height: 280px;
            border-radius: 5px;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--primary);
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-social {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(204, 143, 93, 0.8);
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .team-member:hover .member-social {
            transform: translateY(0);
        }

        .team-member h3 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #fff;
        }

        .team-member p {
            font-size: 0.8rem;
        }

        @media (max-width:580px) {
            .member-image {
                width: 330px;
                height: 300px;
            }
        }

        /* Testimonials Carousel */
        .testimonials-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 20px;
            opacity: 0.4;
            transition: opacity 0.5s ease;
        }

        .testimonial-slide.active {
            opacity: 1;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: #d4af7a;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid #f8f5ee;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

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

        .client-details h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #222;
        }

        .client-details p {
            font-size: 14px;
            color: #d4af7a;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Carousel Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
        }

        .carousel-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            color: #333;
            font-size: 18px;
        }

        .carousel-arrow:hover {
            background: #d4af7a;
            color: white;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .testimonial-card {
                padding: 30px 25px;
            }

            .testimonial-text p {
                font-size: 16px;
            }

            .carousel-arrows {
                display: none;
            }
        }

        @media (max-width: 480px) {

            .testimonial-card {
                padding: 25px 20px;
            }

            .client-info {
                flex-direction: column;
                text-align: center;
            }

            .client-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 0.8rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .contact-text h4 {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .contact-text p {
            color: var(--gray);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--light);
            border-radius: 50%;
            color: var(--secondary);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.8rem;
            transition: var(--transition);
            background: var(--light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 20px;
        }

        /* Footer Link Underline Animation */
        .footer-link-underline {
            position: relative;
        }

        .footer-link-underline::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .footer-link-underline:hover::after {
            width: 100%;
        }

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

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-column p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

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

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }


        .footer-newsletter .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
        }

        .footer-newsletter .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-newsletter .btn {
            width: 40%;
            margin-top: 5px;
            padding: 12px 20px;
            border-radius: 0;
            font-weight: 400;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;

        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }


        /* Booking Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 3% auto;
            width: 95%;
            max-width: 1000px;
            max-height: 90vh;
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            animation: modalFadeIn 0.5s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 20px 25px;
            position: relative;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.3rem;
            cursor: pointer;
            color: white;
            background: rgba(255, 255, 255, 0.2);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 20px;
            max-height: calc(90vh - 140px);
            overflow-y: auto;
        }

        /* Step Indicator */
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            position: relative;
        }

        .step-indicator::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background-color: #e0e0e0;
            color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .step.active .step-circle {
            background-color: var(--primary);
            color: white;
        }

        .step.completed .step-circle {
            background-color: var(--primary);
            color: white;
        }

        .step.completed .step-circle::after {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 0.7rem;
        }

        .step-text {
            font-size: 0.75rem;
            color: var(--gray);
            font-weight: 500;
        }

        .step.active .step-text {
            color: var(--primary);
        }

        /* Step Content */
        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .step-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary);
            text-align: center;
        }

        /* Service Options - More Compact */
        .service-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

        .service-option {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: var(--radius);
            padding: 6px 12px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            background: white;
            height: 50px;
            width: 100%;
        }

        .service-option:hover {
            border-color: var(--primary);
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        .service-option.selected {
            border-color: var(--primary);
            background-color: rgba(187, 125, 74, 0.15);
        }

        .service-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 12px;
            width: 24px;
            text-align: center;
        }

        .service-name {
            margin-left: -30%;
            font-size: 0.9rem;
            font-weight: 600;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--secondary);
        }

        .service-price {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-right: 12px;
        }

        .service-duration {
            font-size: 0.75rem;
            color: var(--gray);
            background-color: rgba(0, 0, 0, 0.05);
            padding: 3px 6px;
            border-radius: 10px;
            margin-right: 8px;
        }

        .service-badges {
            background: var(--primary);
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 0.65rem;
            font-weight: 600;
            margin-left: 8px;
        }

        .selected-indicator {
            color: var(--primary);
            margin-left: 8px;
            opacity: 0;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .service-option.selected .selected-indicator {
            opacity: 1;
        }

        /* Personal Information Form - More Compact */
        .form-group {
            margin-bottom: 15px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: var(--secondary);
            font-size: 0.85rem;
        }

        .form-control {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 0.85rem;
            transition: var(--transition);
            background: var(--light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(193, 154, 107, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 80px;
        }

        /* Date and Time Selection - More Compact */
        .datetime-selection {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .calendar {
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 12px;
            background: var(--light);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .calendar-month {
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .calendar-nav {
            display: flex;
            gap: 8px;
        }

        .calendar-nav button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary);
            font-size: 0.8rem;
            padding: 4px;
        }

        .calendar-weekdays,
        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 3px;
        }

        .calendar-weekday,
        .calendar-day {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 28px;
            font-size: 0.8rem;
        }

        .calendar-weekday {
            font-weight: 600;
            color: var(--gray);
            font-size: 0.75rem;
        }

        .calendar-day {
            cursor: pointer;
            border-radius: 4px;
            transition: var(--transition);
        }

        .calendar-day:hover {
            background-color: rgba(193, 154, 107, 0.1);
        }

        .calendar-day.selected {
            background-color: var(--primary);
            color: white;
        }

        .calendar-day.disabled {
            color: #ccc;
            cursor: not-allowed;
        }

        .calendar-day.disabled:hover {
            background-color: transparent;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .time-slot {
            padding: 8px 6px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            background: var(--light);
            font-size: 0.8rem;
        }

        .time-slot:hover {
            border-color: var(--primary);
        }

        .time-slot.selected {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .time-slot.disabled {
            color: #ccc;
            cursor: not-allowed;
            background-color: #f5f5f5;
        }

        /* Confirmation Step - More Compact */
        .confirmation-details {
            background-color: var(--light);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
        }

        .confirmation-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.9rem;
        }

        .confirmation-item:last-child {
            border-bottom: none;
        }

        .confirmation-label {
            font-weight: 500;
            color: var(--secondary);
        }

        .confirmation-value {
            color: var(--dark);
        }

        .confirmation-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        /* Modal Footer - More Compact */
        .modal-footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 25px;
            border-top: 1px solid #e0e0e0;
            background-color: #f9f9f9;
        }

        .btn-prev,
        .btn-next,
        .btn-submit {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.9rem;
        }

        .btn-prev {
            background: transparent;
            color: var(--gray);
            border: 1px solid #e0e0e0;
        }

        .btn-prev:hover {
            background: #f0f0f0;
        }

        .btn-next,
        .btn-submit {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 3px 10px rgba(193, 154, 107, 0.3);
        }

        .btn-next:hover,
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(193, 154, 107, 0.4);
        }

        .btn-submit {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }

        .btn-submit:hover {
            box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
        }

        /* Success Message - More Compact */
        .success-message {
            text-align: center;
            padding: 30px 15px;
        }

        .success-icon {
            font-size: 3rem;
            color: #27ae60;
            margin-bottom: 15px;
        }

        .success-message h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .success-message p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        /* Responsive adjustments for desktop */
        @media (min-width: 769px) {
            .modal-content {
                margin-top: 4%;
                max-height: 85vh;
            }

            .modal-body {
                max-height: calc(85vh - 130px);
            }
        }

        @media (max-width: 768px) {

            .modal-content {
                margin-top: 6%;
            }

            .service-options {
                grid-template-columns: 1fr;
            }

            .service-option {
                height: 45px;
                padding: 5px 10px;
            }

            .service-icon {
                font-size: 1.1rem;
                margin-right: 10px;
            }

            .service-name {
                font-size: 0.85rem;
            }

            .service-price {
                font-size: 0.85rem;
                margin-right: 10px;
            }

            .service-duration {
                font-size: 0.7rem;
                margin-right: 5px;
            }

            .service-badges {
                font-size: 0.6rem;
                padding: 2px 5px;
            }
        }

        @media (max-width: 480px) {
            .service-options {
                gap: 8px;
            }

            .service-option {
                height: 42px;
                padding: 4px 8px;
            }

            .service-icon {
                font-size: 1rem;
                margin-right: 8px;
            }

            .service-name {
                font-size: 0.8rem;
            }

            .service-price {
                font-size: 0.8rem;
            }

            .service-duration {
                font-size: 0.65rem;
                padding: 2px 4px;
            }
        }

        /* CONTACT US PAGE STYLES  */
        /* Contact Page Hero */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Contact Main Section */
        .contact-main {
            background-color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .contact-text h4 {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .contact-text p {
            color: var(--gray);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--light);
            border-radius: 50%;
            color: var(--secondary);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .social-link {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--light);
            border-radius: 50%;
            color: var(--secondary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.39);
            transition: var(--transition);
        }

        .social-link a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.8rem;
            transition: var(--transition);
            background: var(--light);
            font-family: 'Montserrat', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background-color: var(--light);
        }

        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FAQ Section */
        .faq {
            background-color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(193, 154, 107, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-hero p {
                font-size: 1rem;
            }

            .contact-form {
                padding: 25px;
            }

            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .contact-hero {
                padding: 150px 0 80px;
            }

            .contact-hero h1 {
                font-size: 2rem;
            }
        }