
        /* 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: #1a001a;
            color: #f8f8f8;
            line-height: 1.6;
        }
        
        /* Dark Pink & White Color Theme */
        :root {
            --primary-dark: #1a001a;
            --primary: #330033;
            --primary-light: #4d004d;
            --secondary: #cc0066;
            --accent: #ff3399;
            --accent-light: #ff66b3;
            --text: #f0f0f0;
            --text-light: #e0e0e0;
            --white: #ffffff;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(26, 0, 26, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--secondary);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        
        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-light);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .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.7s ease;
            z-index: -1;
        }
        
        .mobile-menu-btn:hover::before {
            left: 100%;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100%;
            background-color: var(--primary);
            z-index: 1001;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu .nav-link {
            font-size: 1.3rem;
            padding: 10px 0;
            border-bottom: 1px solid var(--secondary);
        }
        
        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            display: none;
        }
        
        .menu-overlay.active {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(26, 0, 26, 0.7), rgba(26, 0, 26, 0.8)),url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        .hero p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .cta-button:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(204, 0, 102, 0.3);
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--accent);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Why Choose Us Section */
        .reasons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .reason-card {
            background-color: var(--primary);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .reason-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
        }
        
        .reason-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Area Pages */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .area-card {
            background-color: var(--primary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .area-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .area-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .area-content {
            padding: 25px;
        }
        
        .area-title {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        /* Models Section */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .model-card {
            background-color: var(--primary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .model-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .model-img {
            height: 500px;
            background-color: var(--secondary);
            background-size: cover;
            background-position: center;
        }
        
        .model-info {
            padding: 20px;
            text-align: center;
        }
        
        .model-name {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .model-nationality {
            color: var(--text-light);
            font-style: italic;
        }
        
        /* Homepage Content */
        .home-content {
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .home-content p {
            margin-bottom: 20px;
        }
        
        .popular-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        
        .area-tag {
            background-color: var(--primary-light);
            padding: 8px 20px;
            border-radius: 20px;
            border: 1px solid var(--secondary);
            color: var(--text);
            transition: all 0.3s ease;
        }
        
        .area-tag:hover {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            text-decoration: none;
            border: 1px solid var(--accent);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 100;
        }
        
        .social-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            text-decoration: none;
            margin-top: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: #25D366;
        }
        
        .social-button:hover {
            transform: scale(1.1);
        }
        
        .social-button::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: -100%;
            transition: left 0.5s ease;
        }
        
        .social-button:hover::after {
            left: 100%;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            border-top: 2px solid var(--secondary);
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .copyright {
            color: var(--text-light);
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                height: 70vh;
                margin-top: 60px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .social-button {
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            
            .back-to-top {
                bottom: 85px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
        
        /* Special Styling for Kota Kinabalu */
        .kk-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        /* Area Links */
        .area-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
        }
        
        .area-link {
            background-color: var(--primary);
            color: var(--text);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .area-link:hover {
            background-color: var(--secondary);
            color: var(--white);
            transform: translateY(-3px);
        }
    </style>