 :root {
            --primary: #f8f0e5;
            --secondary: #0d1b2a;
            --accent: #c6a582;
            --text: #333333;
            --light: #ffffff;
            --gray: #eaeaea;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background-color: var(--primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Noto Serif Display', serif;
            font-weight: var(--light);
            font-stretch: extra-condensed;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            background-color: var(--light);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        header.scrolled {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 10px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Noto Serif Display', serif;
            font-stretch: extra-condensed;
            font-size: 32px;
            font-weight: var(--light);
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: -1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        nav ul li {
            margin: 0 15px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 14px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--secondary);
            cursor: pointer;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--light);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: transform 0.4s ease-in-out;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }
        
        .mobile-menu ul li {
            margin: 20px 0;
        }
        
        .mobile-menu ul li a {
            text-decoration: none;
            color: var(--secondary);
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            background: none;
            border: none;
            font-size: 30px;
            color: var(--secondary);
            cursor: pointer;
        }
        
        /* Services Hero */
        .services-hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url(images/nails1.webp) no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light);
            padding-top: 80px;
        }
        
        .services-hero .container {
            max-width: 800px;
        }
        
        .services-hero h1 {
            font-size: 4.2rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }
        
        .services-hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        
        /* All Services */
        .all-services {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: var(--accent);
        }
        
        /* Services with Images */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background-color: var(--light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 27, 42, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--light);
            text-align: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover .service-overlay {
            opacity: 1;
        }
        
        .service-overlay h3 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--light);
        }
        
        .service-overlay p {
            max-width: 80%;
            font-size: 1.1rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-items {
            margin-top: 20px;
        }
        
        .service-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .service-meta {
            display: flex;
            gap: 15px;
        }
        
        .service-duration, .service-price {
            font-size: 0.95rem;
        }
        
        .service-price {
            font-weight: 600;
            color: var(--accent);
            min-width: 70px;
            text-align: right;
        }
        
        /* Booking Section */
        .booking {
            background-color: var(--secondary);
            color: var(--light);
            padding: 100px 0;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .booking-info h2 {
            font-size: 2.5rem;
            color: var(--light);
            margin-bottom: 20px;
        }
        
        .booking-info p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .contact-details p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details i {
            margin-right: 15px;
            color: var(--accent);
            width: 20px;
        }
        
        .booking-form .form-group {
            margin-bottom: 20px;
        }
        
        .booking-form input,
        .booking-form select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 0;
            font-family: 'DM Sans', sans-serif;
            background-color: var(--light);
            font-size: 1rem;
        }
        
        .booking-form input:focus,
        .booking-form select:focus {
            outline: none;
            border-color: var(--accent);
        }
          .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 0;
            font-family: 'DM Sans', sans-serif;
            background-color: var(--light);
            font-size: 1rem;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        .booking-form select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-chevron-down' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 12px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--accent);
            color: var(--secondary);
            text-decoration: none;
            border-radius: 0;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--accent);
            font-size: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--light);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-links a {
            display: block;
            color: var(--light);
            margin-bottom: 12px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 0;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
        }
        
        .newsletter-form input {
            padding: 12px;
            margin-bottom: 15px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-family: 'DM Sans', sans-serif;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form .btn {
            background-color: var(--accent);
            color: var(--secondary);
            border: none;
            margin-top: 10px;
        }
        
        .newsletter-form .btn:hover {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .services-hero h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 900px) {
            .nav-center {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .booking-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 10px 0;
            }
            
            .services-hero {
                height: 60vh;
            }
            
            .services-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-hero h1 {
                font-size: 2.3rem;
            }
            
            .service-overlay h3 {
                font-size: 1.8rem;
            }
        }