
        :root {
            --primary: #e8f4f8;
            --secondary: #d4f0e6;
            --accent: #ffd166;
            --accent-light: #ffe8a3;
            --text: #2d3748;
            --text-light: #4a5568;
            --card-bg: #ffffff;
            --highlight: #06d6a0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: var(--secondary);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .logo span {
            color: var(--text);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--highlight);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--highlight);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .language-btn {
            background-color: var(--highlight);
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(6, 214, 160, 0.3);
        }
        
        .language-btn:hover {
            background-color: #05b388;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(6, 214, 160, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1100;
        }
        
        /* Mobile Menu - Fixed Vertical Layout */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1100;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            justify-content: flex-end;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-content {
            width: 85%;
            max-width: 320px;
            height: 100%;
            background-color: var(--secondary);
            padding: 2rem 1.5rem;
            overflow-y: auto;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        
        .mobile-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }
        
        .mobile-logo span {
            color: var(--text);
        }
        
        .close-menu {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .close-menu:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav a {
            display: flex;
            align-items: center;
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
            padding: 1rem 1rem;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .mobile-nav a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            color: var(--highlight);
        }
        
        .mobile-nav a:hover {
            background-color: var(--highlight);
            color: white;
            transform: translateX(5px);
        }
        
        .mobile-nav a:hover i {
            color: white;
        }
        
        .mobile-language-btn {
            background-color: var(--highlight);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1.5rem;
            width: 100%;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(6, 214, 160, 0.3);
        }
        
        .mobile-language-btn:hover {
            background-color: #05b388;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(6, 214, 160, 0.4);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(212, 240, 230, 0.8), rgba(212, 240, 230, 0.9)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 2rem;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .hero h1 span {
            color: var(--highlight);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        .cta-button {
            background-color: var(--highlight);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
        }
        
        .cta-button:hover {
            background-color: #05b388;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(6, 214, 160, 0.4);
        }
        
        /* Content Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--text);
        }
        
        .section-title span {
            color: var(--highlight);
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .content-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border-left: 4px solid var(--accent);
        }
        
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .content-card h3 {
            color: var(--highlight);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .content-card p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        /* Models Section */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .model-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
         .model-image {
            width: 100%;
			object-fit: cover;
           
        }
        
        .model-info {
            padding: 1.5rem;
        }
        
        .model-info h3 {
            color: var(--highlight);
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .model-info p {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        
        .model-price {
            font-weight: bold;
            color: var(--highlight);
            font-size: 1.2rem;
            margin-top: 1rem;
        }
        
        .price-list {
            margin-top: 1rem;
            padding: 0;
            list-style: none;
        }
        
        .price-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        
        .price-list li:last-child {
            border-bottom: none;
        }
        
        /* Areas Section */
        .areas {
            background-color: var(--secondary);
        }
        
        .area-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .area-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .area-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .area-content {
            padding: 1.5rem;
        }
        
        .area-content h3 {
            color: var(--highlight);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .area-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .area-link {
            display: inline-block;
            color: var(--highlight);
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: color 0.3s;
        }
        
        .area-link:hover {
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--highlight);
            margin-bottom: 1rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--text);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--highlight);
        }
        
        .copyright {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: var(--highlight);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #05b388;
            transform: translateY(-3px);
        }
        
        /* Contact Drawer */
        .contact-drawer {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 100%;
            max-width: 400px;
        }
        
        .drawer-handle {
            background: linear-gradient(45deg, var(--highlight), var(--accent));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px 50px 0 0;
            cursor: pointer;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            animation: shine 2s infinite;
        }
        
        @keyframes shine {
            0% { box-shadow: 0 -4px 12px rgba(6, 214, 160, 0.5); }
            50% { box-shadow: 0 -4px 20px rgba(6, 214, 160, 0.8); }
            100% { box-shadow: 0 -4px 12px rgba(6, 214, 160, 0.5); }
        }
        
        .drawer-content {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 20px 20px 0 0;
            display: none;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .drawer-content.active {
            display: block;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: space-around;
        }
        
        .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text);
            transition: transform 0.3s;
        }
        
        .contact-btn:hover {
            transform: scale(1.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .whatsapp {
            background-color: #25D366;
        }
        
        .telegram {
            background-color: #0088cc;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 3rem 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-grid, .area-cards, .models-grid {
                grid-template-columns: 1fr;
            }
            
            .back-to-top {
                right: 20px;
                bottom: 90px;
            }
            
            nav ul li {
                margin-left: 1rem;
            }
        }
