
        :root {
            --light-pink: #ffd6e7;
            --dark-purple: #4a1e4a;
            --accent-purple: #7a3a7a;
            --text-dark: #333;
            --text-light: #fff;
            --chinese-red: #c03a2b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-pink);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: var(--dark-purple);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light-pink);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: var(--light-pink);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Language button style */
        nav ul li:last-child a {
            background-color:#D792D0;
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
        }
        
        nav ul li a.active {
            background-color: var(--light-pink);
            color: var(--dark-purple);
        }
        
        nav ul li:last-child a:hover {
            background-color: #9B118D;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(74, 30, 74, 0.8), rgba(74, 30, 74, 0.9)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            text-align: center;
            padding: 5rem 1rem;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--light-pink);
            color: var(--dark-purple);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: #ffc2dc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Content Sections */
        section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            color: var(--dark-purple);
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .content p {
            margin-bottom: 1.5rem;
        }
        
        /* Models Section */
        .models {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .model-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
        }
        
        .model-img {
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .model-info {
            padding: 1.5rem;
        }
        
        .model-name {
            font-size: 1.5rem;
            color: var(--dark-purple);
            margin-bottom: 0.5rem;
        }
        
        .model-nationality {
            color: var(--accent-purple);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .price-list {
            background-color: var(--light-pink);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(122, 58, 122, 0.2);
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .price-name {
            font-weight: 500;
        }
        
        .price-amount {
            font-weight: bold;
            color: var(--dark-purple);
        }
        
        .contact-btn {
            display: inline-block;
            background-color: var(--dark-purple);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s;
        }
        
        .contact-btn:hover {
            background-color: var(--accent-purple);
            transform: translateY(-3px);
        }
        
        /* Popular Areas Section */
        .areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .area-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .area-icon {
            font-size: 1.5rem;
            color: var(--accent-purple);
            margin-right: 1rem;
        }
        
        .area-name {
            font-weight: 500;
            color: var(--dark-purple);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-purple);
            color: var(--text-light);
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        /* Back to Top Button - Positioned at bottom right */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-purple);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            transform: scale(1.1);
        }
        
        /* Contact Drawer - Positioned at very bottom with original design */
        .contact-drawer {
            margin-bottom: -150px;
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            width: 100%;
            max-width: 500px;
        }
        
        .drawer-handle {
            background-color:#96218E;
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            width: 150px;
            margin: 0 auto;
            transition: all 0.3s;
        }
        
        .drawer-handle:hover {
            background-color: var(--accent-purple);
        }
        
        .drawer-content {
            background-color: white;
            padding: 20px;
            border-radius: 15px 15px 0 0;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-around;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .drawer-content.open {
            margin-bottom: 130px;
            transform: translateY(0);
        }
        
        .contact-drawer-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            transition: transform 0.3s;
            padding: 10px;
            border-radius: 10px;
        }
        
        .contact-drawer-btn:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 214, 231, 0.3);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 5px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .whatsapp .contact-icon {
            background-color: #25D366;
        }
        
        .call .contact-icon {
            background-color: #34B7F1;
        }
        
        .telegram .contact-icon {
            background-color: #0088cc;
        }
        
        .contact-label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: var(--dark-purple);
                transition: left 0.3s;
                z-index: 100;
                padding-top: 20px;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0 2rem;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            nav ul li a {
                display: block;
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .contact-drawer {
                max-width: 100%;
            }
            
            .drawer-content {
                padding: 15px;
            }
            
            .contact-icon {
                font-size: 2rem;
                width: 60px;
                height: 60px;
            }
            
            .contact-label {
                font-size: 0.8rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 15px;
            }
            
            .models {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .contact-icon {
                font-size: 1.8rem;
                width: 50px;
                height: 50px;
            }
            
            .contact-label {
                font-size: 0.7rem;
            }
        }
