
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8fafc;
            color: #333;
            line-height: 1.6;
        }

        /* Blue Color Theme */
        :root {
            --blue-light: #4D8FAC;
            --blue-medium: #2C5F7A;
            --blue-dark: #1E4A5F;
            --blue-darker: #0F2D3F;
            --blue-accent: #6BB1D6;
            --text-dark: #333333;
            --text-light: #f8f8f8;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--blue-darker);
            text-decoration: none;
        }

        .logo span {
            color: var(--blue-medium);
        }

        .header-lines {
            height: 4px;
            background: linear-gradient(to right, var(--blue-light), var(--blue-medium), var(--blue-dark));
            width: 100%;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--blue-medium);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--blue-medium);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--blue-darker);
            position: relative;
            overflow: hidden;
            padding: 5px 10px;
        }

        .mobile-menu-btn span {
            background: linear-gradient(90deg, #ff0000, #ff9900, #33cc33, #3399ff, #9966ff, #ff00ff, #ff0000);
            background-size: 400% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rainbowMove 3s infinite linear;
        }

        @keyframes rainbowMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        /* Hero Section */
        .hero {
            height: 80vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero_lovelane.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 64px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--blue-medium), var(--blue-dark));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(44, 95, 122, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(44, 95, 122, 0.4);
        }

        /* Content Sections */
        .section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--blue-darker);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--blue-light), var(--blue-dark));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .popular-areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .area-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .area-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .area-content {
            padding: 20px;
        }

        .area-content h3 {
            color: var(--blue-darker);
            margin-bottom: 10px;
        }

        .area-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .area-link {
            display: inline-block;
            color: var(--blue-medium);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .area-link:hover {
            color: var(--blue-dark);
        }

        /* Models Section */
        .models-section {
            background-color: #f0f8ff;
            padding: 80px 5%;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .model-card {
            text-align: center;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .model-card:hover {
            transform: scale(1.05);
        }

        .model-img {
            height: 400px;
			width: 100%;
            background-size: cover;
            background-position: center;
        }

        .model-info {
            padding: 15px;
        }

        .model-info h3 {
            color: var(--blue-darker);
            margin-bottom: 5px;
        }

        .model-info p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Fixed Social Buttons */
        .social-buttons {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .social-drawer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .social-buttons:hover .social-drawer {
            transform: translateY(0);
            opacity: 1;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background-color 0.3s;
        }

        .social-btn.telegram {
            background-color: #0088cc;
        }

        .social-btn.call {
            background-color: #25D366;
        }

        .social-btn:hover {
            transform: scale(1.1);
        }

        .social-trigger {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(44, 95, 122, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 10px;
            text-align: center;
            line-height: 1.2;
        }

        .social-trigger:hover {
            width: 120px;
            border-radius: 30px;
        }

        .social-trigger span {
            position: absolute;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover span {
            opacity: 1;
        }

        .social-trigger i {
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover i {
            opacity: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background-color: var(--blue-darker);
            color: var(--text-light);
            padding: 40px 5% 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: var(--blue-light);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--blue-light);
            bottom: -8px;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--blue-light);
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            list-style: none;
            text-align: center;
        }

        .mobile-nav li {
            margin: 20px 0;
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        .mobile-nav a:hover {
            color: var(--blue-light);
        }

        .mobile-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--blue-light);
            transition: width 0.3s;
        }

        .mobile-nav a:hover::after {
            width: 100%;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section {
                padding: 60px 5%;
            }
            
            .social-buttons {
                bottom: 10px;
                left: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 70vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .social-trigger {
                width: 50px;
                height: 50px;
            }
            
            .social-trigger:hover {
                width: 100px;
            }
        }
		
		
		
        /* Additional styles specific to the sub page */
        .model-detail {
            display: flex;
            margin-bottom: 40px;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .model-image {
            flex: 0 0 300px;
           
            background-size: cover;
            background-position: center;
        }
        
        .model-content {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .model-name {
            font-size: 24px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .model-nationality {
            font-size: 16px;
            color: #777;
            margin-bottom: 15px;
        }
        
        .price-list {
            margin-top: 20px;
        }
        
        .price-list h4 {
            margin-bottom: 10px;
            color: #333;
        }
        
        .price-list ul {
            list-style: none;
            padding: 0;
        }
        
        .price-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .price-list li:last-child {
            border-bottom: none;
        }
        
        .service-name {
            color: #555;
        }
        
        .service-price {
            color: #e74c3c;
            font-weight: bold;
        }
        
        .location-info {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .location-info h3 {
            margin-bottom: 20px;
            color: #333;
        }
        
        .popular-areas {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .area-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .area-card h4 {
            margin-bottom: 10px;
            color: #333;
        }
        
        @media (max-width: 768px) {
            .model-detail {
                flex-direction: column;
            }
            
            .model-image {
            flex: 0 0 600px;
           
        }

