
        :root {
            --mocha: #8B7355;
            --mocha-light: #A6907E;
            --mocha-dark: #5D4C3C;
            --cream: #F5F1E8;
            --brown: #3E2D21;
            --light-brown: #6D5D4B;
            --white: #FFFFFF;
            --off-white: #FAF7F2;
            --gold: #D4AF37;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--brown);
            background-color: var(--off-white);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--mocha-dark);
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
      /* Header & Navigation */
        header {
            background-color: var(--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 20px;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--mocha-dark);
        }
        
        .logo span {
            color: var(--mocha);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--mocha), var(--mocha-light));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            padding: 10px 20px;
            border-radius: 5px;
            border: 1px solid var(--mocha-light);
        }
        
        .mobile-menu-btn::after {
            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.7s;
        }
        
        .mobile-menu-btn:hover::after {
            left: 100%;
        }
        
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 30px;
        }
        
        .desktop-nav ul li a {
            font-weight: 500;
            color: var(--brown);
            padding: 5px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .desktop-nav ul li a:hover {
            color: var(--mocha);
        }
        
        .desktop-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--mocha);
            transition: width 0.3s;
        }
        
        .desktop-nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 60vh;
            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;
            color: var(--white);
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Content Section */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--mocha);
        }
        
        /* Damansara Uptown Content */
        .uptown-content {
            background-color: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
        }
        
        .uptown-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .highlight {
            background-color: var(--cream);
            padding: 30px;
            border-left: 4px solid var(--mocha);
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .highlight h3 {
            color: var(--mocha-dark);
            margin-bottom: 15px;
        }
        
        /* Models Section */
        .models-section {
            background-color: var(--off-white);
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
            gap: 30px;
        }
		
		.model-img {
            width: 280px;
            
            background-color: var(--mocha-light);
            background-position: center center !important;
    background-repeat: no-repeat !important;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .models-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .model-card {
            display: flex;
            background-color: var(--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: translateY(-5px);
        }
        
        
        
        .model-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .model-name {
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--mocha-dark);
        }
        
        .model-nationality {
            color: var(--mocha);
            font-weight: 500;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .price-list {
            margin-top: 20px;
        }
        
        .price-list h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--mocha-dark);
            border-bottom: 2px solid var(--cream);
            padding-bottom: 8px;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed var(--cream);
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
        }
        
        .price {
            color: var(--mocha);
            font-weight: 600;
        }
        
        /* Popular Areas */
        .popular-areas-section {
            background-color: var(--white);
        }
        
        .areas-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .area-item {
            background-color: var(--cream);
            padding: 25px 20px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--mocha-light);
        }
        
        .area-item:hover {
            background-color: var(--mocha);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .area-item:hover h4 {
            color: var(--white);
        }
        
        .area-icon {
            font-size: 2rem;
            color: var(--mocha);
            margin-bottom: 15px;
        }
        
        .area-item:hover .area-icon {
            color: var(--white);
        }
        
        .area-item h4 {
            font-size: 1.2rem;
            color: var(--mocha-dark);
        }
        
        /* Call to Action */
        .cta-section {
            background: linear-gradient(rgba(91, 72, 56, 0.9), rgba(91, 72, 56, 0.9)), url('https://images.unsplash.com/photo-1588282320012-7e2d3e6c1e6a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--white);
            font-size: 2.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--gold);
            color: var(--brown);
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .cta-btn:hover {
            background-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: var(--mocha-dark);
            color: var(--cream);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--mocha-light);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--mocha);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--mocha-dark);
        }
        
        /* Social Buttons */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        
        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-top: 15px;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: var(--mocha);
        }
        
		
		
		
		
		/* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--white);
            z-index: 1001;
            transition: left 0.5s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: var(--mocha-dark);
            cursor: pointer;
        }
        
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-nav ul li {
            margin-bottom: 30px;
        }
        
        .mobile-nav ul li a {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--brown);
            transition: color 0.3s;
        }
        
        .mobile-nav ul li a:hover {
            color: var(--mocha);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .home-content {
                padding: 30px;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .social-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                height: 70vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 50px 0;
            }
            
            .areas-grid, .models-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
	
		
		
		
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .models-grid {
                grid-template-columns: 1fr;
            }
            
            .model-card {
                flex-direction: column;
            }
            
            .model-img {
                
                
				flex: 0 0 420px;
				width:auto;
				
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: 50vh;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            section {
                padding: 50px 0;
            }
            
            .uptown-content {
                padding: 30px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .social-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
			
			
			
			
			
			
			
			
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .areas-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
    </style>