
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #fff5f7;
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        
        /* Navigation */
        .desktop-nav {
            display: flex;
        }
        
        .desktop-nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            padding: 5px 10px;
            border-radius: 20px;
            transition: background 0.3s;
        }
        
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 154, 158, 0.95);
            z-index: 2000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            margin: 15px 0;
            padding: 10px 20px;
            border-radius: 30px;
            transition: background 0.3s;
        }
        
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }
        
        /* Main Content */
        .hero {
            background: linear-gradient(rgba(255, 154, 158, 0.7), rgba(250, 208, 196, 0.7)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .content-section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #ff6b88;
            font-size: 32px;
        }
        
        .popular-areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        

        .area-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .area-card-content {
            padding: 20px;
        }
        
        .area-card h3 {
            color: #ff6b88;
            margin-bottom: 10px;
        }
        
        .models-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .model-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
        }
        
        .model-card img {
            width: 100%;
            object-fit: cover;
        }
        
        .model-info {
            padding: 15px;
        }
        
        .model-info h3 {
            color: #ff6b88;
            margin-bottom: 5px;
        }
        
        /* Malls Section */
        .malls-section {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 40px 0;
        }
        
        .malls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .mall-item {
            background: #fff5f7;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            transition: transform 0.3s;
        }
        
        .mall-item:hover {
            transform: translateX(5px);
        }
        
        .mall-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #ff6b88;
        }
        
        /* Footer */
        footer {
            background: #ff9a9e;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff6b88;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* Social Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 0;
            z-index: 1000;
        }
        
        .drawer-handle {
            background: #ff6b88;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 0 50% 50% 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            animation: blink 2s infinite;
            transition: all 0.3s;
        }
        
        @keyframes blink {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.7; 
                transform: scale(1.1);
            }
        }
        
        .drawer-content {
            position: absolute;
            bottom: 0;
            left: -200px;
            background: #fff;
            border-radius: 0 10px 10px 0;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            padding: 15px;
            transition: all 0.3s;
            display: flex;
            gap: 15px;
        }
        
        .drawer-content.open {
            left: 50px;
        }
        
        .social-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s;
            position: relative;
        }
        
        .social-btn:hover {
            transform: scale(1.1);
        }
        
        .social-btn img {
            width: 30px;
            height: 30px;
        }
        
        .whatsapp {
            background: #25D366;
        }
        
        .telegram {
            background: #0088cc;
        }
        
        /* Content Text */
        .content-text {
            margin: 30px 0;
        }
        
        .content-text p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .malls-grid {
                grid-template-columns: 1fr;
            }
        }
  