/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

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

 /* ===== ENHANCED NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background-color: #C6A663;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: #C6A663;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: red;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d43737;
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 25px;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #000000;
            border-radius: 2px;
            transition: all 0.3s ease;
            display: block;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                padding: 12px 0;
            }
            
            .logo img {
                height: 35px;
            }
            
            /* Hide desktop menu, show hamburger */
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #ffffff; /* White background for mobile menu */
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: left 0.4s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                gap: 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                width: 100%;
                padding: 15px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                color: #000; /* Black text for mobile links */
                text-transform: uppercase;
            }
            
            
            /* Keep mobile labels black for all states */
            .nav-link:hover,
            .nav-link.active {
                color: #000;
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .nav-link:hover::after,
            .nav-link.active::after {
                width: 40px; /* Shorter underline on mobile */
                background-color: #000; /* Black underline */
            }
            
            .hamburger-btn {
                display: flex;
            }
            
            /* Overlay when menu is open */
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            
            .nav-overlay.active {
                display: block;
            }
            
            /* Hamburger animation */
            .hamburger-btn.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        /* Tablet adjustments */
        @media (max-width: 992px) and (min-width: 769px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-link {
                font-size: 0.85rem;
                color: #000; /* Black text for tablet */
            }
        }

/* ===== HERO SECTION ===== */
.beauty-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Offset for fixed nav */
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 127, 127, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;

}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

}

.hero-slant {
    position: absolute;
    bottom: -50px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: white;
    transform: rotate(-3deg);
    z-index: 4;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    z-index: 5;
}

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

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #d4af37;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
        }

        /* Service Category Layout */
        .service-category {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            min-height: 400px;
        }

        .service-category.reverse {
            flex-direction: row-reverse;
        }

        .service-image {
            flex: 1;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .service-content {
            flex: 1;
            padding: 30px;
        }

        .service-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #d4af37;
        }

        .service-title {
            font-family: "Playfair Display", serif;
            font-size: 26px;
            color: #000000;
        }

        .service-count {
            background: #f8f6f7;
            color: #a5a4a4d2;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .service-items {
            margin-bottom: 20px;
            max-height: 280px;
            overflow-y: auto;
        }

        .service-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            font-size: 15px;
        }

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

        .service-item span:first-child {
            color: #555;
        }

        .price {
            color: #d4af37;
            font-weight: 600;
            white-space: nowrap;
        }

        .book-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #d4af37;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            background: #b8941f;;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* ===== COMPACT BOOKING SECTION ===== */
        .booking-section {
            padding: 60px 0;
            background: white;
        }

        .compact-booking-form {
            max-width: 700px;
            margin: 0 auto;
            padding: 30px;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            border-radius: 10px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            flex: 1;
            min-width: 200px;
        }

        .form-group.full-width {
            min-width: 100%;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f8f6f7;
        }

        .form-control:focus {
            outline: none;
            border-color: #b11089;
            background: white;
            box-shadow: 0 0 0 2px rgba(212, 160, 199, 0.1);
        }

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

        .form-submit {
            text-align: center;
            margin-top: 20px;
        }

        .submit-btn {
            background: #d4af37;
            color: white;
            border: none;
            padding: 12px 40px;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .submit-btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }


        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 40px 0;
            background: #f8f6f7;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .contact-item {
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-3px);
        }

        .contact-item i {
            font-size: 28px;
            color: #d4af37;
            margin-bottom: 15px;
        }

        .contact-item h4 {
            font-family: "Playfair Display", serif;
            font-size: 18px;
            color: #333;
            margin-bottom: 8px;
        }

        .contact-item p {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }

        .map-link {
            color: inherit;
            text-decoration: none;
        }

        .map-link:hover {
            color: #d4af37;
        }

        /* Custom scrollbar for service items */
        .service-items::-webkit-scrollbar {
            width: 5px;
        }

        .service-items::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .service-items::-webkit-scrollbar-thumb {
            background: #d4af37;
            border-radius: 3px;
        }

        .service-items::-webkit-scrollbar-thumb:hover {
            background: #000000;
        }

        /* Footer */
      .footer {
        background-color: var(--gray-dark);
        padding: 3rem 2rem;
        border-top: 2px solid var(--orange);
        text-align: center;
        margin-top: 4rem;
      }
      
      .footer-logo {
        height: 70px;
        margin-bottom: 1.5rem;
        opacity: 0.9;
      }
      
      .footer-text {
        color: var(--gray-text);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
      }
      
      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
      }
      
      .social-icon {
        color: var(--gray-text);
        font-size: 1.5rem;
        transition: color 0.3s ease;
      }
      
      .social-icon:hover {
        color: var(--orange);
      }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .service-category, .service-category.reverse {
                flex-direction: column;
                min-height: auto;
            }
            
            .service-image {
                width: 100%;
                min-height: 300px;
            }
            
            .section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .services-section, .booking-section {
                padding: 40px 0;
            }
            
            .service-category {
                margin-bottom: 40px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .compact-booking-form {
                padding: 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
            
            .form-group {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .service-title {
                font-size: 22px;
            }
            
            .service-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }