
        /* CSS Variables for Pink Theme */
        :root {
            --pink-light: #ffd1dc;
            --pink-medium: #ff8fab;
            --pink-dark: #fb6f92;
            --text-dark: #333;
            --text-light: #fff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }


html {
            scroll-behavior: smooth;
        }




        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--pink-dark);
        }

        p {
            margin-bottom: 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--pink-medium);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-light);
        }

        .logo span {
            color: var(--pink-dark);
        }

        nav ul {
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-light);
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--pink-light);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--pink-light), var(--pink-medium), var(--pink-dark));
            background-size: 200% 100%;
            animation: gradientMove 3s infinite;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--pink-medium);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu ul li {
            margin: 20px 0;
            text-align: center;
        }

        .mobile-menu ul li a {
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 500;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
			 height: 90vh;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--pink-dark);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn:hover {
            background-color: var(--pink-medium);
            transform: translateY(-3px);
        }

        /* Location Info Section */
        .location-info {
            background-color: var(--pink-light);
        }

        .location-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .location-text {
            flex: 1;
            min-width: 300px;
        }

        .location-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .location-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Models Section */
        .models {
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .model-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
        }

        .model-image {
            
			width: 100%;
            background-size: cover;
            background-position: center;
        }

        .model-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .model-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .model-info {
            margin-bottom: 20px;
        }

        .model-info h3 {
            margin-bottom: 5px;
            color: var(--pink-dark);
        }

        .model-info p {
            color: #666;
            font-weight: 500;
        }

        .price-list {
            margin-top: auto;
        }

        .price-list h4 {
            margin-bottom: 10px;
            color: var(--pink-dark);
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .price-item:last-child {
            border-bottom: none;
        }

        /* Why Choose Us Section */
        .why-choose {
            background-color: var(--pink-light);
        }

        .why-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .reason-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .reason-card h3 {
            color: var(--pink-dark);
            margin-bottom: 15px;
        }

        /* Areas Section */
        .areas {
            background-color: #fff;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .area-card {
            background-color: var(--pink-light);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .area-card:hover {
            transform: translateY(-10px);
        }

        .area-card i {
            font-size: 2.5rem;
            color: var(--pink-dark);
            margin-bottom: 15px;
        }

        .area-card h3 {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--pink-dark);
            color: var(--text-light);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a:hover {
            color: var(--pink-light);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Social Buttons Drawer */
		
		
       .social-buttons {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .social-drawer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .social-buttons:hover .social-drawer {
            transform: translateY(0);
            opacity: 1;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background-color 0.3s;
        }

        .social-btn.telegram {
            background-color: #0088cc;
        }

        .social-btn.call {
            background-color: #25D366;
        }

        .social-btn:hover {
            transform: scale(1.1);
        }

        .social-trigger {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background: #f1285a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(44, 95, 122, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 10px;
            text-align: center;
            line-height: 1.2;
        }

        .social-trigger:hover {
            width: 120px;
            border-radius: 30px;
        }

        .social-trigger span {
            position: absolute;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover span {
            opacity: 1;
        }

        .social-trigger i {
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover i {
            opacity: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--pink-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
            box-shadow: var(--shadow);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--pink-medium);
        }





.back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
			
            background: #955767;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }
		
		
		
		
		
		
		 .mobile-menu-close {
           
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 3rem;
            cursor: pointer;
        }










        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .location-content {
                flex-direction: column;
            }
        }
   