:root
{
    --primary-green: #042915;
    --secondary-green: #06331b;
    --accent-gold: #b48b3b;
    --text-white: #f8f9fa;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-green);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects (Professional) */
.bg-mesh
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(180, 139, 59, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(180, 139, 59, 0.05) 0%, transparent 40%);
    z-index: -2;
}

.bg-glow
{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(180, 139, 59, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(80px);
}

/* Main Layout Structure */
.main-wrapper
{
    display: flex;
    min-height: 100vh;
}

/* Sidebar (Left Column like the model) */
.sidebar
{
    width: 350px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px;
    position: fixed;
    height: 100vh;
}

.logo-container
{
    margin-bottom: 60px;
    text-align: center;
}

.logo
{
    max-width: 180px;
    filter: drop-shadow(0 0 10px rgba(180, 139, 59, 0.2));
}

.contact-card h2
{
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.contact-link
{
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-white);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.contact-link:hover
{
    transform: translateX(10px);
}

.icon-circle
{
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.contact-text span
{
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-text strong
{
    font-size: 0.95rem;
    font-weight: 400;
}

.legal-info
{
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.policy-link
{
    display: block;
    color: var(--accent-gold);
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
}

/* Content Area (Right Column like the model) */
.content-area
{
    margin-left: 350px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.profile-container
{
    display: flex;
    gap: 80px;
    max-width: 1000px;
    align-items: center;
}

.photo-box
{
    position: relative;
    width: 400px;
    height: 500px;
    flex-shrink: 0;
}

.profile-photo
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.photo-box::after
{
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    z-index: 1;
}

.bio-box
{
    flex: 1;
}

.badge
{
    display: inline-block;
    padding: 5px 15px;
    background: rgba(180, 139, 59, 0.1);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.name
{
    font-family: 'Playfair Display', serif;
    font-size: 3.0rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-content p
{
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.text-content strong
{
    color: var(--text-white);
}

.signature
{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
}

.signature strong
{
    font-size: 1.2rem;
}

.signature span
{
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Adaptations */
.whatsapp-mobile
{
    display: none;
}

@media (max-width: 1100px)
{
    .profile-container
    {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .photo-box
    {
        width: 300px;
        height: 380px;
    }

    .name
    {
        font-size: 1.8rem;
    }

    .signature
    {
        align-items: center;
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 850px)
{
    .sidebar
    {
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        z-index: 10;
    }

    .content-area
    {
        margin-left: 0;
        padding: 40px 20px 100px;
    }

    .main-wrapper
    {
        flex-direction: column;
    }

    .text-content p
    {
        font-size: 1.05rem;
        /* Reduced for mobile */
        line-height: 1.6;
    }

    .whatsapp-mobile
    {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: #25d366;
        color: white;
        padding: 18px;
        border-radius: 15px;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 700;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}