/* ============================================================
   VD How to Reach Page Widget — how-to-reach.css
   ============================================================ */

/* ── GLOBALS ── */
.vd-htr-wrapper {
    font-family: 'Baloo Bhai 2', cursive, sans-serif;
    color: #333;
    background-color: #faf7f2;
}
.vd-htr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HERO ── */
.vd-htr-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7A191A;
    background-size: cover;
    background-position: center;
}
.vd-htr-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(122,25,26,0.9) 0%, rgba(50,10,10,0.8) 100%);
    z-index: 1;
}
.vd-htr-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding-top: 50px;
    animation: vd-htr-fade-up 0.8s ease forwards;
}
@keyframes vd-htr-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.vd-htr-title {
    font-size: 50px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.vd-htr-subtitle {
    font-size: 22px;
    color: #E9B855;
    font-weight: 600;
    margin: 0;
}

/* ── TRANSPORT GRID ── */
.vd-htr-transport {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 5;
    margin-top: -60px; /* Overlap hero slightly */
}
.vd-htr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.vd-htr-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(233,184,85,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.vd-htr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7A191A, #E9B855);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.vd-htr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(122,25,26,0.1);
    border-color: rgba(233,184,85,0.4);
}
.vd-htr-card:hover::before {
    transform: scaleX(1);
}
.vd-htr-icon {
    width: 80px;
    height: 80px;
    background: rgba(122,25,26,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 36px;
    color: #7A191A;
    transition: all 0.4s ease;
}
.vd-htr-card:hover .vd-htr-icon {
    background: #7A191A;
    color: #E9B855;
    transform: rotateY(360deg);
}
.vd-htr-card-title {
    font-size: 24px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 15px;
}
.vd-htr-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── MAP & ADDRESS ── */
.vd-htr-map-section {
    padding: 0 0 80px 0;
    background: #fff;
}
.vd-htr-map-layout {
    display: flex;
    gap: 40px;
    background: #faf7f2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.vd-htr-address-box {
    flex: 0 0 400px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vd-htr-address-icon {
    font-size: 50px;
    color: #E9B855;
    margin-bottom: 20px;
}
.vd-htr-address-title {
    font-size: 32px;
    color: #7A191A;
    font-weight: 800;
    margin-bottom: 20px;
}
.vd-htr-address-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}
.vd-htr-map-container {
    flex: 1;
    min-height: 450px;
    background: #eee;
    position: relative;
}
.vd-htr-map-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.vd-htr-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .vd-htr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vd-htr-map-layout {
        flex-direction: column;
        gap: 0;
    }
    .vd-htr-address-box {
        flex: auto;
        padding: 40px;
    }
    .vd-htr-map-container {
        min-height: 350px;
    }
}
@media (max-width: 768px) {
    .vd-htr-hero-title {
        font-size: 40px;
    }
    .vd-htr-grid {
        grid-template-columns: 1fr;
    }
    .vd-htr-transport {
        margin-top: 0;
        padding: 50px 0;
    }
    .vd-htr-card {
        padding: 30px 20px;
    }
}
