
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #fff5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, #ff0077, #ff4d94);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
        
        /* Desktop Menu */
        .desktop-menu {
            display: flex;
        }
        
        .desktop-menu a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        
        .desktop-menu a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: #ff4d94;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 100;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-img.jpg') no-repeat center center/cover;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-content p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Content Sections */
        .section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            color: #ff0077;
            margin-bottom: 30px;
            font-size: 32px;
        }
        
        .popular-areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 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;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card img {
            width: 100%;
            height: 650px;
            object-fit: cover;
        }
        
        .area-card-content {
            padding: 20px;
        }
        
        .area-card h3 {
            color: #ff0077;
            margin-bottom: 10px;
        }
        
        /* Models Section */
        .models {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .model-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .model-card img {
            width: 100%;
            height: 650px;
            object-fit: cover;
        }
        
        .model-info {
            padding: 20px;
        }
        
        .model-info h3 {
            color: #ff0077;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: #ff0077;
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-top: 40px;
        }
        
        /* Fixed Buttons */
        .fixed-buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 99;
        }
        
        .fixed-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .call-btn {
            background: #ff0077;
        }
        
        .fixed-btn:hover {
            transform: scale(1.1);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #ff0077;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 99;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu.active {
                display: flex;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
        }
