@charset "utf-8";
/* CSS Document */


        :root {
            --primary-orange: #D35400;
            --secondary-orange: #E67E22;
            --accent-orange: #F39C12;
            --dark-bg: #1a1a1a;
            --light-bg: #f5f5f5;
            --text-light: #ffffff;
            --text-dark: #333333;
            --card-bg: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
		 html {
            scroll-behavior: smooth;
        }
        
        
        /* Header Styles */
        header {
            background: rgba(0, 0, 0, .5) ;
			
            color: var(--text-light);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        
        .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: 700;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            color: var(--accent-orange);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .logo span {
            color: var(--accent-orange);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            padding: 8px 12px;
            border: 1px solid var(--accent-orange);
            border-radius: 4px;
        }
        
        .menu-text {
            position: relative;
            display: inline-block;
            font-weight: 600;
        }
        
        .menu-text::before {
           
            position: absolute;
            top: 0;
            left: 0;
            color: var(--accent-orange);
            width: 0;
            overflow: hidden;
            white-space: nowrap;
            transition: width 0.4s ease;
        }
        
        .mobile-menu-btn:hover .menu-text::before {
            width: 100%;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-orange);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent-orange);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
		
           background-image: linear-gradient(135deg, rgba(211, 84, 0, 0.8), rgba(243, 156, 18, 0.7)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
           
			 height: 100vh;
        }
           
        
        
        .hero-content {
            max-width: 800px;
            padding: 0 1rem;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-orange);
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            background-color: transparent;
            border-color: var(--text-light);
            transform: translateY(-5px);
        }
        
        /* Content Sections */
        section {
            padding: 6rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.1rem;
        }
        
        /* Areas Section - Card Layout */
        .areas-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .area-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .area-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .area-header {
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .area-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .area-content {
            padding: 2rem;
        }
        
        .area-content p {
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .popular-areas {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }
        
        .popular-areas h4 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .popular-areas ul {
            list-style-type: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }
        
        .popular-areas li {
            padding: 0.5rem 0;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .popular-areas li:before {
            content: "•";
            color: var(--accent-orange);
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        /* Models Section - Horizontal Cards */
        .models-container {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding: 1rem 0 2rem;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-orange) #f1f1f1;
        }
        
        .models-container::-webkit-scrollbar {
            height: 8px;
        }
        
        .models-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .models-container::-webkit-scrollbar-thumb {
            background: var(--accent-orange);
            border-radius: 10px;
        }
        
        .model-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            min-width: 280px;
            flex-shrink: 0;
        }
        
        .model-card:hover {
            transform: scale(1.05);
        }
        
        .model-img {
           
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
			  width: 100%;
            object-fit: cover;
        }
        
        .model-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 350px;
            background: no-repeat center center/cover;
            opacity: 0.7;
        }
        
        .model-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .model-info h3 {
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .model-info p {
            color: #666;
            font-weight: 500;
        }
        
        /* Home Content */
        .home-content {
            background-color: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .home-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-orange), var(--accent-orange));
        }
        
        .home-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        /* Social Buttons */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }
        
        .social-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .social-btn:hover:before {
            transform: translateY(0);
        }
        
        .telegram-btn {
            background: linear-gradient(135deg, #0088cc, #00aced);
        }
        
        .call-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
        }
        
        .social-btn:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        .social-tooltip {
            position: absolute;
            left: 70px;
            background: var(--dark-bg);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
            pointer-events: none;
        }
        
        .social-btn:hover .social-tooltip {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
		
		
		   .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
		
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
		
		
		
		
		
		
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-orange);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-orange);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .areas-container {
                grid-template-columns: 1fr;
            }
            
            .home-content {
                padding: 2rem;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .social-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
    </style>
