/* Container & Header */
.warden-section { background-color: white; }
.header-underline {
    width: 60px;
    height: 4px;
    background-color: #007A83;
    margin: 10px auto;
}

/* Premium Card */
.warden-card-premium {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    max-width: 1000px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* CIRCLE IMAGE - Isse photo gol ho jayegi */
.warden-image-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #007A83;
    padding: 5px; /* Border aur photo ke bich gap */
}

.warden-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Typography */
.warden-badge {
    color: #007A83;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.warden-name-text { font-weight: 800; color: #222; }
.warden-sub-desc { font-size: 1.1rem; line-height: 1.5; }

/* Contact Grid */
.warden-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon {
    width: 40px;
    height: 40px;
    background: #007A83;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item small { color: #888; font-size: 12px; display: block; }
.contact-item p { margin: 0; font-weight: 600; color: #444; }

/* SYMMETRIC BUTTONS - Dono buttons ek jaise */
.btn-warden-action {
    background-color: #007A83;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    flex: 1; /* Dono buttons barabar jagah lenge */
    transition: 0.3s;
    border: none;
}

.btn-warden-action:hover {
    background-color: #005f66;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 131, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .warden-image-circle { width: 200px; height: 200px; }
    .warden-contact-grid { grid-template-columns: 1fr; }
    .d-flex { flex-direction: column; }
    .btn-warden-action { width: 100%; }
}