       
        :root {
            --primary: #FB9A00;
            --dark: #0a0a0a;
            --gold: #ffd700;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: #eee;
            line-height: 1.7;
        }
        
        header {
            background: rgba(10,10,10,0.98);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--primary);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        
        .nav-links a:hover { color: var(--primary); }
        
        .mobile-menu {
            display: none;
            font-size: 30px;
            cursor: pointer;
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 25px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .float-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.6);
            text-decoration: none;
            transition: all 0.3s;
        }
		a{ color:#7EF2F6; text-decoration:none}        
        .whatsapp-float { background: #25D366; color: white; }
        .call-float { background: #007bff; color: white; }

        .hero {
            height: 90vh;
            min-height: 580px;
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.4rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .hero-content p {
            font-size: 1.35rem;
            max-width: 850px;
            margin: 0 auto 35px;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 16px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            margin: 10px;
        }
        
        .btn:hover {
            background: #fff;
            color: var(--primary);
            transform: scale(1.05);
        }

        section {
            padding: 90px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.7rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--gold);
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .profile-card {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(200, 16, 46, 0.3);
        }
        
        .profile-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .profile-info {
            padding: 20px;
            text-align: center;
        }
        
        .profile-info h3 {
            color: var(--gold);
            margin-bottom: 8px;
        }
        
        .profile-info p {
            font-size: 0.95rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .profile-rate {
            font-weight: 600;
            color: #ffd700;
            margin: 10px 0;
        }
        
        .profile-btns {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .profile-btn {
            padding: 10px 18px;
            font-size: 0.95rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .wp-btn { background: #25D366; color: white; }
        .call-btn { background: #007bff; color: white; }

        .contact-section {
            background: #1a1a1a;
            text-align: center;
        }

        footer {
            background: #050505;
            text-align: center;
            padding: 50px 20px;
            border-top: 3px solid var(--primary);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 75px;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 30px;
                text-align: center;
                gap: 20px;
            }
            .nav-links.active { display: flex; }
            .mobile-menu { display: block; }
            .hero-content h1 { font-size: 2.5rem; }
            .profiles-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        }
