@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', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* 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: linear-gradient(135deg, rgba(211, 84, 0, 0.8), rgba(243, 156, 18, 0.7)), url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
           
			 height:80vh;
        }
        
        .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;
        }
        
        /* Models Section */
        .models-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
		
		
		.models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
		
		
		 .model-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
		
		
        .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.4s ease;
            display: flex;
            flex-direction: column;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .model-image {
            
			width: 100%;
            background-size: cover;
            background-position: center;
        }

        .model-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		 
		
		
        
        .model-info {
            
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .model-info h3 {
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
        }
        
        .model-info .nationality {
            color: #666;
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .price-list {
            margin-top: auto;
        }
        
        .price-list h4 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            color: #555;
        }
        
        .service-price {
            color: var(--primary-orange);
            font-weight: 600;
        }
        
        /* Content Section */
        .content-section {
            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;
        }
        
        .content-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-orange), var(--accent-orange));
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        /* Popular Areas Section */
        .popular-areas-section {
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            color: white;
            padding: 4rem 0;
            border-radius: 12px;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .area-item {
            background-color: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        
        .area-item:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .area-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .area-item p {
            color: rgba(255,255,255,0.8);
        }
        
        /* 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.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;
            }
            
            .models-container {
                grid-template-columns: 1fr;
            }
            
            .content-section {
                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;
            }
            
            .areas-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
