@charset "utf-8";
/* CSS Document */


        /* Base Styles */
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-color: #c19a6b;
            --text-light: #e6e6e6;
            --text-muted: #a8a8a8;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: #b08a5e;
            transform: translateY(-2px);
        }
        
        /* Header Styles */
        header {
            background-color: rgba(22, 33, 62, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .logo span {
            color: var(--text-light);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--accent-color), #e6c9a3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .mobile-menu-btn:hover::before {
            left: 100%;
        }
        
        .nav-menu {
            display: flex;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            position: relative;
            padding: 5px 0;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 70vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-muted);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Content Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--accent-color);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        /* Models Section */
        .models-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .model-card {
            display: flex;
            background-color: var(--secondary-dark);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
			flex-direction: column;

        }
        
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .model-img {
            width: 100%;
            background-size: cover;
			height:500px;
            background-position: center;
        }
        
        .model-info {
            width: 100%;
            padding: 25px;
        }
        
        .model-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--accent-color);
        }
        
        .model-info .nationality {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .price-list {
            margin-top: 20px;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            color: var(--text-light);
        }
        
        .service-price {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        /* Content Section */
        .content-section {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .content-section p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
        }
        
        /* Popular Areas Section */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .area-item {
            background-color: var(--primary-dark);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .area-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .area-item h4 {
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .area-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-dark);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            margin: 0 15px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #b08a5e;
            transform: translateY(-5px);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: #25d366;
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
        }
        
        .social-btn i {
            font-size: 1.5rem;
            color: white;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: var(--secondary-dark);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hero {
                height: 50vh;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
				        margin-top: 40px;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .model-card {
      
      display: flex;
    flex-direction: column;
	width:100%;
}
            
			
		.models-container {
   
    text-align: center;
}
			
			
			
            
            .model-img {
                
                width: 100%;
    background-size: cover;
    background-position: center;
}
				
            
            
            .model-info {
                width: 100%;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .back-to-top {
                bottom: 90px;
                right: 20px;
            }
        }
    </style>