
        :root {
            --chocolate-dark: #5D4037;
            --chocolate-medium: #795548;
            --chocolate-light: #A1887F;
            --blue-dark: #1565C0;
            --blue-medium: #2196F3;
            --blue-light: #90CAF9;
            --cream: #FFF8F0;
            --gold: #FFB74D;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--chocolate-dark);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--chocolate-dark);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--blue-light);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--chocolate-medium), var(--blue-medium), var(--gold), var(--blue-light), var(--chocolate-light));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.5rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            padding: 5px 15px;
            animation: gradientText 3s linear infinite;
            position: relative;
            z-index: 1001;
        }

        @keyframes gradientText {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--gold);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--chocolate-dark);
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            z-index: 1000;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        }

        .mobile-nav.active {
            right: 0;

        }

        .mobile-nav-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .mobile-nav-title {
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .mobile-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .mobile-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav ul {
            list-style: none;
            margin-top: 20px;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .mobile-nav ul li a:hover {
            color: var(--gold);
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(93, 64, 55, 0.85), rgba(93, 64, 55, 0.6)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #f0f0f0;
        }

        .btn {
            display: inline-block;
            background-color: var(--blue-medium);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--blue-medium);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--blue-medium);
        }

        /* Content Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--blue-medium);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Important Content Section */
        .important-content {
            background-color: #f8f5f2;
        }

        .content-block {
            margin-bottom: 40px;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--blue-medium);
        }

        .content-block h3 {
            color: var(--blue-dark);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .content-block p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #555;
        }

        /* Popular Areas */
        .areas-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .area-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .area-img {
            height: 180px;
            background-color: var(--chocolate-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .jalan-tambun {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/jalan-tambun.jpg');
            background-size: cover;
            background-position: center;
        }

        .jalan-pak-su-muda {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/jalan-pak-su-muda.jpg');
            background-size: cover;
            background-position: center;
        }

        .jalan-dato-ali {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/jalan-dato-ali.jpg');
            background-size: cover;
            background-position: center;
        }

        .jalan-sultan-omar {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/jalan-sulta-omar.jpg');
            background-size: cover;
            background-position: center;
        }

        .jalan-pante {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/jalan-pante.jpg');
            background-size: cover;
            background-position: center;
        }

        .area-content {
            padding: 25px;
        }

        .area-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--chocolate-dark);
        }

        .area-content p {
            margin-bottom: 15px;
            color: #666;
        }

        /* Models Section */
        .models-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .model-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .model-card:hover {
            transform: scale(1.03);
        }

        .model-img {
            height: 488px;
            background-color: var(--chocolate-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .model-1 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), ;
            background-size: cover;
            background-position: center;
        }

        .model-2 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), ;
            background-size: cover;
            background-position: center;
        }

        .model-3 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), ;
            background-size: cover;
            background-position: center;
        }

        .model-4 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), ;
            background-size: cover;
            background-position: center;
        }

        .model-5 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), ;
            background-size: cover;
            background-position: center;
        }

        .model-info {
            padding: 20px;
            text-align: center;
        }

        .model-info h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .model-info p {
            color: var(--chocolate-medium);
            font-weight: 500;
        }

        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-btn:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            top: 0;
            left: -100%;
            transition: left 0.3s ease;
        }

        .social-btn:hover:before {
            left: 100%;
        }

        .telegram-btn {
            background-color: #0088cc;
        }

        .call-btn {
            background-color: var(--blue-medium);
        }

        .social-btn:hover {
            transform: translateY(-5px);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--chocolate-medium);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--chocolate-dark);
        }

        /* Footer */
        footer {
            background-color: var(--chocolate-dark);
            color: white;
            padding: 60px 0 30px;
            text-align: center;
			list-style-type: none;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0 30px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 10px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .social-drawer {
                left: 15px;
                bottom: 15px;
            }
            
            .social-btn {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            
            .back-to-top {
                right: 15px;
                bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .models-container, .areas-container {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
            }
            
            .footer-links a {
                margin: 5px 0;
            }
        }
    </style>