/* =========================
   MANAGING DIRECTOR - ULTRA PREMIUM (REAL ESTATE LUXURY)
========================= */

.dr1056proprietor {
    position: relative;
    width: 100%;
    padding: 110px 20px;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%, rgba(212,175,55,0.08), transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(15,30,45,0.06), transparent 30%),
        linear-gradient(180deg, #f9fbfd 0%, #eef3f7 100%);

    color: #0f2027;
}

/* ===== SECTION CONTAINER ===== */
.dr1056proprietor .section-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.proprietor-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.proprietor-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    background: linear-gradient(135deg,#d4af37,#f6e27a);
    color: #1a1a1a;

    box-shadow: 0 6px 18px rgba(212,175,55,0.25);
}

.proprietor-header h2 {
    font-size: clamp(34px,4vw,56px);
    font-weight: 800;
    margin: 18px 0;
    color: #0c1f2b;
}

.proprietor-header p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6f7a;
}

/* =========================
   GRID
========================= */
.proprietor-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 30px;
}

/* =========================
   IMAGE SIDE
========================= */
.proprietor-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.proprietor-image-card {
    position: relative;
    border-radius: 28px;
    padding: 14px;
    background: #ffffff;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);

    overflow: hidden;
}

/* GOLD TOP LINE */
.proprietor-image-card::before {
    content:"";
    position:absolute;
    top:0;
    left:18px;
    right:18px;
    height:3px;
    border-radius:10px;

    background: linear-gradient(90deg,#d4af37,#f6e27a,#d4af37);
}

.proprietor-image-card img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.proprietor-image-card:hover img {
    transform: scale(1.04);
}

/* overlay badge */
.proprietor-mini-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;

    background: rgba(0,0,0,0.7);
    color: white;

    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;

    backdrop-filter: blur(10px);
}

/* name card */
.proprietor-name-card {
    padding: 22px;
    border-radius: 20px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);

    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.proprietor-name-card h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.proprietor-name-card p {
    color: #6b7b86;
}

/* =========================
   CONTENT CARD
========================= */
.proprietor-content-card {
    position: relative;
    border-radius: 28px;
    padding: 34px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.95),
        rgba(248,251,253,0.85)
    );

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.06);
}

/* gold line */
.proprietor-content-card::before {
    content:"";
    position:absolute;
    top:0;
    left:20px;
    right:20px;
    height:3px;

    background: linear-gradient(90deg,#d4af37,#f6e27a,#d4af37);
}

/* subtle glow */
.proprietor-content-card::after {
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 80% 20%, rgba(212,175,55,0.05), transparent 40%);

    pointer-events:none;
}

/* =========================
   TOP HIGHLIGHT
========================= */
.proprietor-top-highlight {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;

    background: rgba(212,175,55,0.08);
}

/* ICON */
.top-highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background: linear-gradient(135deg,#d4af37,#f6e27a);
    color:#1a1a1a;
}

/* =========================
   TEXT
========================= */
.proprietor-text-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.proprietor-text-block p {
    color: #5f6f7a;
    line-height: 1.9;
}

/* =========================
   QUOTE
========================= */
.proprietor-quote-box {
    margin-top: 30px;
    padding: 26px;
    border-radius: 20px;

    background: linear-gradient(135deg,#0b1d2a,#1c2f3a);
    color:white;

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background: linear-gradient(135deg,#d4af37,#f6e27a);
    color:#000;

    margin-bottom: 12px;
}

/* =========================
   STATS
========================= */
.proprietor-stats-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.proprietor-stat-card {
    display:flex;
    gap:14px;
    padding:16px;
    border-radius:16px;

    background:#ffffff;
    border:1px solid rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

.proprietor-stat-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        0 0 0 1px rgba(212,175,55,0.25);
}

.stat-icon {
    width:50px;
    height:50px;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background: linear-gradient(135deg,#d4af37,#f6e27a);
    color:#1a1a1a;
}

.stat-text h4 {
    font-size:20px;
}

.stat-text p {
    font-size:12px;
    color:#6c7a84;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){
    .proprietor-main-grid {
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .dr1056proprietor {
        padding:80px 16px;
    }

    .proprietor-content-card {
        padding:22px;
    }

    .proprietor-image-card img {
        min-height:350px;
    }

    .proprietor-top-highlight {
        flex-direction:column;
        text-align:center;
    }

    .proprietor-stats-grid {
        grid-template-columns:1fr;
    }
}