
        :root {
            --primary-orange: #FF6B35;
            --secondary-pink: #FF4D8D;
            --light-orange: #FF9D6F;
            --light-pink: #FF85A1;
            --dark-orange: #E55A2B;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --dark-gray: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .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;
        }
        
        .logo span {
            color: var(--light-orange);
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            white-space: nowrap;
        }
        
        nav ul li a:hover {
            color: var(--light-orange);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .language-btn {
            background-color: var(--light-orange);
            color: var(--dark-gray);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .language-btn:hover {
            background-color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            animation: bounceMenu 7s infinite;
            padding: 0.5rem;
        }
        
        @keyframes bounceMenu {
            0%, 100% {
                transform: scale(1);
            }
            2% {
                transform: scale(1.5);
            }
            4% {
                transform: scale(1);
            }
            6% {
                transform: scale(1.5);
            }
            8% {
                transform: scale(1);
            }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
            z-index: 2000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu ul li {
            margin: 1.5rem 0;
        }
        
        .mobile-menu ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu ul li a:hover {
            color: var(--light-orange);
        }
        
        .close-menu {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Hero Section - Image Only */
        .hero {
            background: url('../images/hero.jpg');
           
            background-position: center;
            height: 70vh;
            min-height: 500px;
        }
        
        /* Models Section */
        .models-section {
            padding: 4rem 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-gray);
            font-size: 2.2rem;
        }
        
        .section-title span {
            color: var(--primary-orange);
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .model-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
        }
        
        .model-image {
            height: 400px;
            background-color: var(--light-pink);
            background-size: cover;
            
        }
        
        .model-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .model-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--dark-gray);
        }
        
        .model-nationality {
            color: var(--primary-orange);
            font-weight: 500;
        }
        
        /* Description Section */
        .description-section {
            padding: 4rem 0;
            background-color: var(--light-gray);
        }
        
        .description-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .description-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .popular-areas {
            background-color: var(--white);
            padding: 3rem 0;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .area-card {
            background: linear-gradient(135deg, var(--light-orange), var(--light-pink));
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            color: var(--white);
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card h3 {
            margin-bottom: 0.5rem;
        }
        
        /* Important Content Section */
        .important-content {
            padding: 4rem 0;
            background-color: var(--white);
        }
        
        .content-box {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .content-box h3 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 1.5rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }
        
        .social-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }
        
        .social-toggle:hover {
            transform: scale(1.1);
        }
        
        .social-buttons {
            position: absolute;
            bottom: 70px;
            left: 0;
            display: none;
            flex-direction: column;
            gap: 10px;
        }
        
        .social-buttons.active {
            display: flex;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .social-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }
        
        .telegram-button {
            background-color: #0088cc;
        }
        
        .call-button {
            background-color: #25D366;
        }
        
        .social-button:hover {
            transform: scale(1.1);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-pink));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            nav ul li {
                margin-left: 1rem;
            }
            
            nav ul li a {
                padding: 0.4rem 0.6rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                height: 40vh;
                min-height: 300px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
		
		
		
		
        /* Additional styles for sub pages */
        .model-detail-section {
            padding: 60px 0;
            background: #f9f9f9;
        }
        
        .model-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .model-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .model-detail-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .model-detail-card:hover {
            transform: translateY(-5px);
        }
        
        .model-detail-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .model-detail-info {
            padding: 20px;
        }
        
        .model-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .model-nationality {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .price-list {
            margin-top: 15px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .price-item:last-child {
            margin-bottom: 0;
        }
        
        .price-name {
            color: #555;
        }
        
        .price-value {
            font-weight: 600;
            color: #d4af37;
        }
        
        .location-content {
            padding: 60px 0;
        }
        
        .content-boxes {
            display: grid;
            gap: 30px;
            margin-top: 40px;
        }
        
        .content-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .content-box h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .content-box p {
            line-height: 1.7;
            color: #555;
        }
        
        .popular-areas {
            background: #f5f5f5;
            padding: 60px 0;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .area-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .area-card p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .breadcrumb {
            padding: 20px 0;
            background: #f9f9f9;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb a {
            color: #777;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #d4af37;
        }
        
        .breadcrumb span {
            color: #333;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .model-detail-grid {
                grid-template-columns: 1fr;
            }
            
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }

