        *
 {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 28px;
            font-weight: 700;
            color: #0052CC;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border: 3px solid #0052CC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
            z-index: 99;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu nav a {
            display: block;
            padding: 15px 0;
            color: #333;
            text-decoration: none;
            font-size: 18px;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s ease;
        }

        .mobile-menu nav a:hover {
            color: #0052CC;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f8fafc;
            border: none;
            font-size: 30px;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #333;
        }

        .close-menu:hover {
            background: #0052CC;
            color: white;
        }


        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 56px;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .description {
            font-size: 18px;
            color: white;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            margin: 40px 0;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .rating-stars {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 32px;
            color: #FFC107;
        }

        .rating-number {
            font-size: 42px;
            font-weight: 700;
            color: white;
        }

        .rating-max {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.8);
        }

        .rating-count {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
        }

       


        .heart-icon {
            font-size: 20px;
        }

        /* About Section */
        .about {
            background: #f8fafc;
            padding: 80px 30px;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-logo {
            font-size: 72px;
            font-weight: 700;
            color: #0052CC;
            margin-bottom: 20px;
        }

        .about-logo .salon-text {
            font-size: 48px;
            display: block;
        }

        .about-logo .rea-text {
            font-size: 96px;
            line-height: 0.9;
        }

        h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 30px;
        }

        .about-text {
            font-size: 18px;
            color: #64748b;
            line-height: 1.8;
            max-width: 800px;
        }

        /* Container */
        .container {
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #64748b;
            margin-top: 10px;
        }

        /* Services Section */
        .services {
            padding: 80px 30px;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: #0052CC;
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 24px;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-price {
            font-size: 28px;
            font-weight: 700;
            color: #0052CC;
            margin-bottom: 20px;
        }



        .testimonials {
            padding: 80px 30px;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 30px;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .stars {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #1e293b;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #0052CC;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
        }

        .author-name {
            font-weight: 600;
            color: #1e293b;
        }

        .author-date {
            font-size: 14px;
            color: #64748b;
        }

        /* Booking Section */
        .booking {
            padding: 80px 30px;
            background: #f8fafc;
        }


        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #0052CC;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .time-slot {
            padding: 12px;
            border: 2px solid #e2e8f0;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .time-slot:hover {
            border-color: #0052CC;
        }

        .time-slot.selected {
            background: #0052CC;
            color: white;
            border-color: #0052CC;
        }


        .booking-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .info-card h3 {
            font-size: 18px;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .info-card p {
            color: #64748b;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 80px 30px;
            background: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .map-container {
            background: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
        }

        .map-placeholder {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }

        .map-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 30px 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #0052CC;
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .newsletter-form input::placeholder {
            color: #94a3b8;
        }


        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #94a3b8;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: -100px;
            right: 20px;
            background: #0052CC;
            color: white;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: bottom 0.3s ease;
            z-index: 1000;
        }

        .toast.show {
            bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            .hero {
                min-height: 500px;
            }

            .rating-number {
                font-size: 32px;
            }

            .about-logo .rea-text {
                font-size: 64px;
            }

            h2 {
                font-size: 32px;
            }

            .services-grid,
            .gallery-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .booking-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }