@charset "utf-8";
/* CSS Document */


        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --black-1: #0a0a0a;
            --black-2: #1a1a1a;
            --black-3: #2a2a2a;
            --accent: #d4af37;
            --accent-light: #e6c44d;
            --text-light: #e0e0e0;
            --text-dark: #888;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--black-1);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1.2rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo span {
            color: #fff;
            margin-left: 5px;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
            position: relative;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
			 height: 80vh;
        }

        .hero-content {
            max-width: 900px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--text-light);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--black-1);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 2px solid var(--accent);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
        }

        /* Main Content */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        section {
            margin-bottom: 6rem;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--accent);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            color: var(--text-dark);
            font-size: 1.2rem;
        }

        /* Models Section */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .model-card {
            background-color: var(--black-2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
        }

        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .model-img {
             height: 520px;
			width: 100%;
            background-size: cover;
            background-position: center;
        }

        .model-img img {
            width: 100%;
           
            object-fit: cover;
            transition: transform 0.5s;
        }

        .model-card:hover .model-img img {
            transform: scale(1.1);
        }

        .model-info {
            padding: 1.8rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .model-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .model-info .nationality {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .price-list {
            margin-top: auto;
        }

        .price-list h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--accent);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .service {
            color: var(--text-light);
        }

        .price {
            color: var(--accent);
            font-weight: 600;
        }

        /* Content Section */
        .content-section {
            background-color: var(--black-2);
            padding: 3rem;
            border-radius: 15px;
            margin-bottom: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .content-section h3 {
            font-size: 2rem;
            margin-bottom: 1.8rem;
            color: var(--accent);
            display: flex;
            align-items: center;
        }

        .content-section h3 i {
            margin-right: 15px;
        }

        .content-section p {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Areas Section */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .area-card {
            background-color: var(--black-2);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }

        .area-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .area-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .area-card p {
            color: var(--text-dark);
        }

        /* Footer */
        footer {
            background-color: var(--black-1);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .footer-column p {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            color: var(--text-dark);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--accent);
            color: var(--black-1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.3rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
        }

        /* Social Buttons */
        .social-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 15px;
            text-decoration: none;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .telegram-btn {
            background-color: #0088cc;
        }

        .call-btn {
            background-color: #25d366;
        }

        .social-btn:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        /* Mobile Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 1.5rem;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--black-1);
                transition: right 0.4s;
                z-index: 1001;
                padding: 5rem 2rem 2rem;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 1.2rem 0;
            }

            nav ul li a {
                font-size: 1.2rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 0 1.5rem;
                height: 60vh;
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .container {
                padding: 4rem 1.5rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .social-buttons {
                bottom: 20px;
                left: 20px;
            }

            .social-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .content-section {
                padding: 2rem;
            }
			
			
			 .model-img {
            height: 600px;
			
        }
			
			.model-info {
				padding-top:3rem;
           
           
        }
			
			
			
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
    </style>
