
       :root {
            --dark-color: #1a1a1a;
            --orange-color: #ff7b00;
            --light-orange: #ff9d42;
            --text-color: #f5f5f5;
            --section-bg: #2a2a2a;
        }
       

        html {
            scroll-behavior: smooth;
        }

     
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(26, 26, 26, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--orange-color);
        }
        
        .logo span {
            color: var(--text-color);
        }
        
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 25px;
        }
        
        .desktop-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .desktop-nav ul li a:hover {
            color: var(--orange-color);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, #ff7b00, #ff9d42, #ff7b00);
            background-size: 200% 100%;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            animation: gradientMove 3s infinite;
        }
        
        @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: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            z-index: 999;
            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: 20px 0;
        }
        
        .mobile-menu ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 24px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu ul li a:hover {
            color: var(--orange-color);
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 30px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url('../images/hero.jpg');
			 background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--orange-color);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--orange-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--light-orange);
        }
        
        /* Content Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--orange-color);
            font-size: 36px;
        }
        
        .about-content {
            background-color: var(--section-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        /* Models Section */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .model-card {
            background-color: var(--section-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
        }
        
        .model-image {
            
            width: 100%;
            object-fit: cover;
        }
        
        .model-info {
            padding: 20px;
            text-align: center;
        }
        
        .model-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .model-nationality {
            color: var(--light-orange);
        }
        
        /* Area Pages */
        .area-content {
            background-color: var(--section-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        
        .area-content h3 {
            color: var(--orange-color);
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .area-content p {
            margin-bottom: 20px;
        }
        
        .popular-areas {
            margin-top: 30px;
        }
        
        .popular-areas h4 {
            color: var(--light-orange);
            margin-bottom: 15px;
        }
        
        .popular-areas ul {
            list-style-type: none;
        }
        
        .popular-areas ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .popular-areas ul li:before {
            content: "•";
            color: var(--orange-color);
            position: absolute;
            left: 0;
        }
        
        /* Footer */
        footer {
            background-color: #111;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--orange-color);
            margin-bottom: 20px;
        }
        
        .copyright {
            margin-top: 20px;
            color: #888;
        }
        
        /* Social Buttons */
        .social-drawer {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 100;
        }
        
        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 15px;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: #25d366;
        }
        
        .social-button:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }
        
        .social-button span {
            position: absolute;
            left: 70px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .social-button:hover span {
            opacity: 1;
        }
        
        /* Icon Styles */
        .icon {
            display: inline-block;
            width: 28px;
            height: 28px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .telegram-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.78 5.42-.92 6.8-.06.67-.36.89-.86.55-2.39-1.64-3.62-2.66-5.86-4.27-.37-.25-.71-.37-.78-.59-.06-.22.06-.42.25-.62 2.48-2.26 4.05-3.67 5.98-5.52.27-.27.54-.08.66.18.94 2.34 1.94 5.71 2.73 7.67z'/%3E%3C/svg%3E");
        }
        
        .phone-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--orange-color);
            color: var(--dark-color);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            z-index: 99;
            transition: background-color 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .back-to-top:hover {
            background-color: var(--light-orange);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .social-button {
                width: 55px;
                height: 55px;
            }
            
            .icon {
                width: 24px;
                height: 24px;
            }
        }
    </style>