/* --- Global Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Clean professional font */
    background-color: #080808; /* Very Deep Black */
    color: #e0e0e0;
    overflow-x: hidden;
}

/* --- Color Variables for Consistency --- */
:root {
    --primary-color: #f8c0c8; /* Soft Pink (from screenshot) */
    --accent-color: #ff4d6d; /* Darker Pink/Red (from screenshot) */
    --wa-green: #25D366;
    --call-green: #4CAF50;
    --dark-bg: #1a1a1a;
    --text-light: #fff;
    --text-muted: #aaa;
}

/* --- Header Section --- */
.header {
    background-color: #f8c0c8;
    color: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.brand h1 {
    font-family: 'Playfair Display', serif; /* Elegant heading font */
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.header-contact {
    text-align: right;
}

.header-contact p {
    font-size: 12px;
    color: #333;
}

.phone-link {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: #000;
    cursor: pointer;
    display: none; /* Mobile menu needed */
}

/* --- Hero Section --- */
.hero-banner {
    height: 80vh; /* Takes most of the screen */
    background-image: url('https://images.pexels.com/photos/19114707/pexels-photo-19114707.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center top;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Darker overlay for text readabilty */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s 0.3s ease-out backwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s 0.6s ease-out backwards;
}

/* Buttons */
.cta-primary, .cta-wa {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-primary {
    background-color: var(--primary-color);
    color: #000;
}

.cta-primary:hover {
    background-color: #fff;
}

.cta-wa {
    background-color: var(--wa-green);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-wa:hover {
    opacity: 0.9;
}

/* --- Profiles Section --- */
.profiles-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
}

/* --- Premium Profile Cards --- */
.profiles-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* 3 cards on desktop */
    gap: 30px;
}

.premium-card {
    background-color: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    border: 1px solid #222;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(248, 192, 200, 0.2); /* Pinkish glow on hover */
    border-color: var(--primary-color);
}

.card-image {
    width: 100%;
    height: 400px; /* Tall image like screenshots */
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.online { background-color: var(--wa-green); }
.status-badge.busy { background-color: #d9534f; } /* Red */

.card-details {
    padding: 20px;
}

.card-details h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color); /* Dark Pink */
    font-size: 19px;
    margin-bottom: 8px;
}

.card-details p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.service-details {
    color: var(--text-muted) !important;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 8px;
    margin-top: 8px;
}

/* Card Action Buttons */
.card-actions {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

.action-call, .action-wa {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-call {
    background-color: var(--call-green);
    color: white;
}

.action-call:hover { opacity: 0.9; }

.action-wa {
    background-color: var(--wa-green);
    color: white;
}

.action-wa:hover { opacity: 0.9; }

/* --- Footer --- */
.footer {
    padding: 40px;
    text-align: center;
    background-color: #000;
    color: var(--text-muted);
    border-top: 1px solid #222;
}

.footer p {
    font-size: 14px;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 11px;
    color: #555;
    margin-top: 10px;
}

/* --- Simple Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .header-contact { display: none; }
    .menu-toggle { display: block; }
    .brand h1 { font-size: 16px; }
    
    .hero-content h2 { font-size: 32px; }
    .hero-content p { font-size: 14px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    
    .section-title h3 { font-size: 28px; }
}