/* ============================================================
   VD About Us Page Widget — about-us.css
   ============================================================ */

/* ── GLOBALS & UTILS ── */
.vd-about-wrapper {
    font-family: 'Baloo Bhai 2', cursive, sans-serif;
    color: #333;
    background-color: #faf7f2;
    overflow: hidden;
}
.vd-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vd-about-section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}
.vd-about-section-title {
    font-size: 36px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vd-about-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.vd-about-ornament span:not(.vd-about-diamond) {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E9B855, transparent);
}
.vd-about-diamond {
    color: #E9B855;
    font-size: 18px;
    animation: vd-spin-slow 10s linear infinite;
}
@keyframes vd-spin-slow {
    100% { transform: rotate(360deg); }
}

/* ── HERO ── */
.vd-about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.vd-about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(122,25,26,0.95) 0%, rgba(122,25,26,0.4) 100%);
    z-index: 1;
}
.vd-about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px 50px;
    animation: vd-fade-up 1s ease forwards;
}
@keyframes vd-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.vd-about-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}
.vd-about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 184, 85, 0.4);
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.vd-about-breadcrumb a { color: #E9B855; text-decoration: none; font-weight: 700; transition: color 0.3s; }
.vd-about-breadcrumb a:hover { color: #fff; }
.vd-about-breadcrumb span:last-child { color: #fff; opacity: 0.9; }

/* ── WELCOME SECTION ── */
.vd-about-welcome-section {
    padding: 80px 0;
    background: #faf7f2;
    text-align: center;
    position: relative;
}
.vd-about-welcome-top-text {
    font-size: 20px;
    color: #E9B855;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.vd-about-welcome-title {
    font-size: 34px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 25px;
}
.vd-about-welcome-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.9;
    font-size: 18px;
}
.vd-about-stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    padding-top: 20px;
}
.vd-about-stat-item {
    text-align: center;
    min-width: 220px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(233,184,85,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.vd-about-stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7A191A, #E9B855);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.vd-about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122,25,26,0.1);
}
.vd-about-stat-item:hover::before {
    opacity: 1;
}
.vd-about-stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #7A191A;
    background: rgba(233,184,85,0.15);
    transition: all 0.4s ease;
}
.vd-about-stat-item:hover .vd-about-stat-icon {
    background: #7A191A;
    color: #E9B855;
    transform: scale(1.1);
}
.vd-about-stat-label {
    font-size: 16px;
    color: #777;
    margin-bottom: 8px;
    font-weight: 600;
}
.vd-about-stat-value {
    font-size: 32px;
    color: #7A191A;
    font-weight: 800;
}

/* ── TEMPLE INFO SECTION ── */
.vd-about-temple-section {
    padding: 80px 0;
    background: #fff;
}
.vd-about-temple-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.vd-about-temple-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vd-about-temple-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}
.vd-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7A191A, #5a1012);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(122,25,26,0.25);
    border: 1px solid rgba(233,184,85,0.3);
}
.vd-about-btn:hover {
    background: linear-gradient(135deg, #5a1012, #7A191A);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(122,25,26,0.4);
    color: #E9B855;
}
.vd-about-temple-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
}
.vd-about-temple-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    border: 4px solid rgba(233,184,85,0.3);
    pointer-events: none;
}
.vd-about-temple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.vd-about-temple-image:hover img {
    transform: scale(1.05);
}
.vd-about-temple-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}
.vd-about-temple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── MISSION SECTION ── */
.vd-about-mission-section {
    padding: 60px 0;
    background: #faf7f2;
}
.vd-about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.vd-about-mission-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(233,184,85,0.2);
    border-top: 5px solid #E9B855;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.vd-about-mission-card:hover {
    box-shadow: 0 20px 40px rgba(122,25,26,0.08);
    transform: translateY(-12px);
    border-color: #E9B855;
}
.vd-about-mission-icon {
    font-size: 48px;
    color: #7A191A;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(233,184,85,0.3);
    transition: transform 0.4s ease;
}
.vd-about-mission-card:hover .vd-about-mission-icon {
    transform: scale(1.15) rotate(5deg);
    color: #E9B855;
}
.vd-about-mission-title {
    font-size: 22px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 15px;
}
.vd-about-mission-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ── VALUES SECTION ── */
.vd-about-values-section {
    padding: 60px 0 80px;
    background: #fff;
}
.vd-about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.vd-about-value-card {
    background: rgba(122,25,26,0.02);
    border: 1px solid rgba(122,25,26,0.08);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}
.vd-about-value-card:hover {
    background: #fff;
    border-color: #E9B855;
    box-shadow: 0 15px 35px rgba(122,25,26,0.08);
    transform: translateY(-8px);
}
.vd-about-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7A191A, #5a1012);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(122,25,26,0.3);
    transition: all 0.4s ease;
}
.vd-about-value-card:hover .vd-about-value-icon {
    background: linear-gradient(135deg, #E9B855, #c79a40);
    transform: rotateY(180deg);
}
.vd-about-value-title {
    font-size: 18px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 12px;
}
.vd-about-value-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ── GLIMPSES SECTION ── */
.vd-about-glimpses-section {
    padding: 60px 0;
    background: #faf7f2;
}
.vd-about-glimpses-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 0 15px;
}
.vd-about-glimpse-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
}
.vd-about-glimpse-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vd-about-glimpse-item:hover img {
    transform: scale(1.15);
}
.vd-about-glimpse-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(122,25,26,0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.vd-about-glimpse-item:hover::after {
    opacity: 1;
}

/* ── COMMITTEE SECTION ── */
.vd-about-committee-section {
    padding: 80px 0 100px;
    background: #fff;
}
.vd-about-committee-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}
.vd-about-member-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(233,184,85,0.2);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}
.vd-about-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(122,25,26,0.1);
    border-color: #E9B855;
}
.vd-about-member-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f5f5f5;
    border-bottom: 3px solid #E9B855;
}
.vd-about-member-info {
    padding: 18px 10px;
}
.vd-about-member-name {
    font-size: 15px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 6px;
}
.vd-about-member-role {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* ── VISAMAN BAPU EXTRA SECTION ── */
.vd-about-visaman-bapu {
    background: linear-gradient(135deg, #7A191A 0%, #4A1515 100%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    margin: 60px 0;
    box-shadow: 0 20px 50px rgba(122,25,26,0.25);
    border: 1px solid rgba(233,184,85,0.3);
    position: relative;
}
.vd-about-visaman-bapu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}
.vd-about-vb-content {
    flex: 1.2;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.vd-about-vb-subtitle {
    font-size: 18px;
    color: #E9B855;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vd-about-vb-title {
    font-size: 38px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.vd-about-vb-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    opacity: 0.95;
}
.vd-about-vb-image {
    flex: 1;
    background: #5a1012;
    position: relative;
    min-height: 450px;
}
.vd-about-vb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.9;
    transition: all 0.5s ease;
}
.vd-about-visaman-bapu:hover .vd-about-vb-image img {
    mix-blend-mode: normal;
    opacity: 1;
    transform: scale(1.03);
}
.vd-about-vb-img-caption {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    background: rgba(122,25,26,0.7);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(233,184,85,0.4);
}

/* ── VISAMAN BOX EXTRA SECTION ── */
.vd-about-visaman-box {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(233,184,85,0.3);
    display: flex;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.vd-about-box-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vd-about-box-badge {
    display: inline-block;
    background: #E9B855;
    color: #7A191A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vd-about-box-title {
    font-size: 34px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 25px;
}
.vd-about-box-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}
.vd-about-box-quote {
    background: rgba(233,184,85,0.1);
    border-left: 4px solid #E9B855;
    border-radius: 0 12px 12px 0;
    padding: 25px;
    margin-top: 25px;
    font-weight: 700;
    color: #7A191A;
    font-size: 17px;
    display: flex;
    gap: 15px;
    line-height: 1.6;
}
.vd-about-box-quote i {
    color: #E9B855;
    font-size: 24px;
    margin-top: 5px;
}
.vd-about-box-image {
    flex: 1;
    overflow: hidden;
    min-height: 450px;
    position: relative;
}
.vd-about-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── CTA SECTION ── */
.vd-about-cta-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}
.vd-about-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(122,25,26,0.92) 0%, rgba(74,21,21,0.95) 100%);
    z-index: 1;
}
.vd-about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.vd-about-cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.vd-about-cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}
.vd-about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E9B855;
    color: #7A191A;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.vd-about-cta-btn:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: #7A191A;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .vd-about-values-grid { grid-template-columns: repeat(3, 1fr); }
    .vd-about-glimpses-grid { grid-template-columns: repeat(3, 1fr); }
    .vd-about-committee-grid { grid-template-columns: repeat(4, 1fr); }
    .vd-about-visaman-bapu, .vd-about-visaman-box { flex-direction: column; }
    .vd-about-box-image, .vd-about-vb-image { height: 350px; min-height: 350px; }
    .vd-about-box-image { border-radius: 0; }
}
@media (max-width: 768px) {
    .vd-about-temple-grid { flex-direction: column; gap: 30px; }
    .vd-about-temple-image { height: 350px; width: 100%; }
    .vd-about-mission-grid { grid-template-columns: 1fr; }
    .vd-about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .vd-about-glimpses-grid { grid-template-columns: repeat(2, 1fr); }
    .vd-about-committee-grid { grid-template-columns: repeat(3, 1fr); }
    .vd-about-stats-row { gap: 20px; }
    .vd-about-stat-item { min-width: 100%; padding: 20px; }
    
    .vd-about-hero-title { font-size: 36px; }
    .vd-about-vb-content, .vd-about-box-content { padding: 40px 25px; }
    .vd-about-cta-title { font-size: 32px; }
    .vd-about-visaman-bapu { border-radius: 16px; margin: 40px 0; }
    .vd-about-visaman-box { border-radius: 16px; margin: 40px 0; }
}
@media (max-width: 480px) {
    .vd-about-values-grid { grid-template-columns: 1fr; }
    .vd-about-glimpses-grid { grid-template-columns: 1fr; }
    .vd-about-committee-grid { grid-template-columns: repeat(2, 1fr); }
    .vd-about-cta-title { font-size: 28px; }
    .vd-about-welcome-title { font-size: 26px; }
    .vd-about-hero-title { font-size: 30px; }
}
