/* ══════════════════════════════════════════════════════════════
   VIDAL DHAM - CONTACT US WIDGET STYLES
   100% Dynamic, Responsive, and Premium Temple Aesthetic
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

.vd-cu-wrapper {
    font-family: 'Baloo Bhai 2', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #FAF6F0;
    color: #2D241E;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.vd-cu-wrapper * {
    box-sizing: border-box;
}

/* ── 1. HERO BANNER SECTION ── */
.vd-cu-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 100px;
}

.vd-cu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(61, 18, 18, 0.45) 0%, rgba(122, 25, 26, 0.65) 60%, rgba(250, 246, 240, 1) 100%);
    z-index: 1;
}

.vd-cu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
}

.vd-cu-title {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-align: center !important;
    width: 100%;
}

.vd-cu-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px auto 20px;
    width: 100%;
}

.vd-cu-divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E8AF30, transparent);
}

.vd-cu-divider-icon {
    color: #E8AF30;
    font-size: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.vd-cu-subtitle {
    font-size: 22px;
    color: #FDF1D9;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.5;
    text-align: center !important;
    width: 100%;
}

.vd-cu-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #7A191A;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #E8AF30;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vd-cu-breadcrumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    background: #7A191A;
    color: #FFFFFF;
}

/* ── 2. CONTACT DETAILS CARDS GRID (5 Cards) ── */
.vd-cu-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.vd-cu-details-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: -60px;
    margin-bottom: 50px;
}

.vd-cu-detail-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(122, 25, 26, 0.08);
    border: 2px solid #F2E4CD;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vd-cu-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(122, 25, 26, 0.15);
    border-color: #7A191A;
}

.vd-cu-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A191A 0%, #5c1112 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
    box-shadow: 0 6px 15px rgba(122, 25, 26, 0.25);
    border: 2px solid #E8AF30;
    transition: transform 0.3s ease;
}

.vd-cu-detail-card:hover .vd-cu-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.vd-cu-detail-title {
    font-size: 19px;
    font-weight: 700;
    color: #7A191A;
    margin: 0 0 10px;
}

.vd-cu-detail-text {
    font-size: 14px;
    color: #4A3B32;
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
    font-weight: 500;
}

/* ── 3. MIDDLE TWO-COLUMN SECTION (FORM + MAP/TRANSPORT) ── */
.vd-cu-middle-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

.vd-cu-form-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 35px;
    box-shadow: 0 10px 30px rgba(122, 25, 26, 0.07);
    border: 2px solid #F2E4CD;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vd-cu-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.vd-cu-form-title {
    font-size: 30px;
    font-weight: 800;
    color: #7A191A;
    margin: 0 0 6px;
}

.vd-cu-form-subtitle {
    font-size: 15px;
    color: #6B5B52;
    margin: 0;
}

.vd-cu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vd-cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vd-cu-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.vd-cu-label {
    font-size: 15px;
    font-weight: 700;
    color: #4A3B32;
}

.vd-cu-input, .vd-cu-select, .vd-cu-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E6DCD0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #FCFAFA;
    color: #2D241E;
    transition: all 0.25s ease;
}

.vd-cu-input:focus, .vd-cu-select:focus, .vd-cu-textarea:focus {
    outline: none;
    border-color: #7A191A;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(122, 25, 26, 0.08);
}

.vd-cu-textarea {
    min-height: 110px;
    resize: vertical;
}

/* Contact Form Submit Button with Ultra High Specificity */
.vd-cu-wrapper button.vd-cu-submit-btn,
.vd-cu-wrapper input[type="submit"].vd-cu-submit-btn,
.vd-cu-submit-btn {
    background: linear-gradient(135deg, #7A191A 0%, #5c1112 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid #E8AF30 !important;
    outline: none !important;
    padding: 14px 36px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 6px 20px rgba(122, 25, 26, 0.3) !important;
    margin-top: 15px !important;
    font-family: inherit !important;
    text-decoration: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.vd-cu-wrapper button.vd-cu-submit-btn:hover,
.vd-cu-wrapper button.vd-cu-submit-btn:focus,
.vd-cu-wrapper input[type="submit"].vd-cu-submit-btn:hover,
.vd-cu-submit-btn:hover,
.vd-cu-submit-btn:focus {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 10px 28px rgba(232, 175, 48, 0.45) !important;
    background: linear-gradient(135deg, #E8AF30 0%, #c9931c 100%) !important;
    color: #5c1112 !important;
    border-color: #7A191A !important;
    outline: none !important;
}

.vd-cu-wrapper button.vd-cu-submit-btn *,
.vd-cu-wrapper button.vd-cu-submit-btn:hover *,
.vd-cu-submit-btn *,
.vd-cu-submit-btn:hover * {
    color: inherit !important;
}

.vd-cu-map-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.vd-cu-map-box {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(122, 25, 26, 0.07);
    border: 2px solid #F2E4CD;
    flex: 1;
    min-height: 360px;
}

.vd-cu-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vd-cu-map-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #7A191A;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid #E8AF30;
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
}

.vd-cu-transport-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.vd-cu-transport-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    border: 2px solid #F2E4CD;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vd-cu-transport-card:hover {
    border-color: #E8AF30;
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(122,25,26,0.1);
}

.vd-cu-transport-icon {
    font-size: 24px;
    color: #7A191A;
    margin-bottom: 8px;
}

.vd-cu-transport-title {
    font-size: 14px;
    font-weight: 700;
    color: #7A191A;
    margin: 0 0 6px;
}

.vd-cu-transport-desc {
    font-size: 12px;
    color: #5A4B42;
    line-height: 1.4;
    margin: 0;
}

/* ── 4. TEMPLE VISIT GUIDELINES SECTION ── */
.vd-cu-guidelines-section {
    margin-bottom: 50px;
}

.vd-cu-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.vd-cu-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #7A191A;
    margin: 0;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.vd-cu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E8AF30, transparent);
}

.vd-cu-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vd-cu-guide-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 2px solid #F2E4CD;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.vd-cu-guide-card:hover {
    border-color: #7A191A;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(122,25,26,0.12);
}

.vd-cu-guide-icon {
    font-size: 32px;
    color: #E8AF30;
    margin-bottom: 12px;
    display: inline-block;
}

.vd-cu-guide-title {
    font-size: 18px;
    font-weight: 700;
    color: #7A191A;
    margin: 0 0 8px;
}

.vd-cu-guide-desc {
    font-size: 14px;
    color: #5A4B42;
    line-height: 1.5;
    margin: 0;
}

/* ── 5. BOTTOM 3-COLUMN SECTION (FAQ + SOCIAL + EMERGENCY) ── */
.vd-cu-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
    align-items: start;
}

/* Accordion FAQ */
.vd-cu-faq-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid #F2E4CD;
    box-shadow: 0 10px 30px rgba(122, 25, 26, 0.06);
}

.vd-cu-faq-title {
    font-size: 24px;
    font-weight: 800;
    color: #7A191A;
    margin: 0 0 22px;
    text-align: center;
    border-bottom: 2px dashed #E6DCD0;
    padding-bottom: 14px;
}

.vd-cu-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vd-cu-faq-item {
    border: 2px solid #EAE0D0;
    border-radius: 14px;
    background: #FCFAFA;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.vd-cu-faq-item:hover {
    border-color: #D4A03D;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.vd-cu-faq-item.active {
    border-color: #E8AF30;
    background: #FFFDF9;
    box-shadow: 0 6px 20px rgba(232, 175, 48, 0.15);
}

.vd-cu-faq-question {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #3D2B1F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: transparent;
    border: none !important;
    width: 100%;
    text-align: left;
    font-family: inherit;
    user-select: none;
    outline: none !important;
    transition: color 0.2s ease;
}

.vd-cu-faq-question:hover {
    color: #7A191A;
}

.vd-cu-faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.vd-cu-faq-icon {
    font-size: 14px;
    color: #7A191A;
    background: #F2E8D8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vd-cu-faq-item.active .vd-cu-faq-icon {
    transform: rotate(180deg);
    background: #7A191A;
    color: #FFFFFF;
}

.vd-cu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.vd-cu-faq-item.active .vd-cu-faq-answer {
    max-height: 800px;
}

.vd-cu-faq-answer-inner {
    padding: 0 20px 18px 20px;
    font-size: 15px;
    color: #5A4B42;
    line-height: 1.7;
    font-weight: 500;
    border-top: 1px dashed rgba(232, 175, 48, 0.4);
    margin-top: 2px;
    padding-top: 14px;
}

/* Social Connect Box */
.vd-cu-social-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid #F2E4CD;
    box-shadow: 0 10px 30px rgba(122, 25, 26, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
}

.vd-cu-social-title {
    font-size: 24px;
    font-weight: 800;
    color: #7A191A;
    margin: 0 0 8px;
}

.vd-cu-social-subtitle {
    font-size: 14px;
    color: #6B5B52;
    margin: 0 0 20px;
    line-height: 1.5;
}

.vd-cu-social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
}

.vd-cu-social-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px 18px;
    background: #FCFAFA;
    border: 1.5px solid #EAE0D0;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.vd-cu-social-item:hover {
    transform: translateX(6px);
    border-color: #E8AF30;
    background: #FFFDF9;
    box-shadow: 0 6px 15px rgba(122, 25, 26, 0.1);
}

.vd-cu-social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vd-cu-social-item:hover .vd-cu-social-circle {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.vd-cu-social-label {
    font-size: 16px;
    font-weight: 700;
    color: #3D2B1F;
    flex: 1;
    text-align: left;
}

.vd-cu-social-btn {
    background: linear-gradient(135deg, #7A191A 0%, #5c1112 100%);
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(122,25,26,0.25);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    margin: 20px auto 0 auto;
}

.vd-cu-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(122,25,26,0.35);
    color: #FFFFFF;
    background: linear-gradient(135deg, #8f1d1e 0%, #6e1516 100%);
}

/* Emergency Help Box (Dark Maroon Card) */
.vd-cu-emergency-box {
    background: linear-gradient(135deg, #5c1112 0%, #3d0a0b 100%);
    border-radius: 20px;
    padding: 28px 24px;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(92, 17, 18, 0.35);
    border: 2px solid #E8AF30;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.vd-cu-emergency-title {
    font-size: 24px;
    font-weight: 800;
    color: #E8AF30;
    margin: 0 0 22px;
    text-align: center;
    border-bottom: 2px dashed rgba(232, 175, 48, 0.4);
    padding-bottom: 14px;
}

.vd-cu-emergency-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.vd-cu-emergency-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 10px;
}

.vd-cu-emergency-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vd-cu-emergency-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FDF1D9;
    font-weight: 600;
}

.vd-cu-emergency-icon {
    color: #E8AF30;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.vd-cu-emergency-val {
    font-weight: 700;
    color: #FFFFFF;
    text-align: right;
    font-size: 15px;
}

.vd-cu-emergency-btn {
    background: linear-gradient(135deg, #E8AF30 0%, #c9931c 100%);
    color: #5c1112;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    text-align: center;
    display: block;
    box-shadow: 0 6px 20px rgba(232, 175, 48, 0.35);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    margin: 20px auto 0 auto;
}

.vd-cu-emergency-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(232, 175, 48, 0.5);
    background: linear-gradient(135deg, #f2bf42 0%, #d8a022 100%);
    color: #3d0a0b;
}

/* ── 6. BOTTOM CTA BANNER ── */
.vd-cu-bottom-cta {
    background: linear-gradient(135deg, #7A191A 0%, #4A0E0F 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(122, 25, 26, 0.25);
    border: 2px solid #E8AF30;
}

.vd-cu-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 175, 48, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vd-cu-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #E8AF30;
    margin: 0 0 10px;
}

.vd-cu-cta-subtitle {
    font-size: 18px;
    color: #FDF1D9;
    margin: 0 0 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vd-cu-cta-btn {
    background: linear-gradient(135deg, #E8AF30 0%, #c9931c 100%);
    color: #5c1112;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(232, 175, 48, 0.35);
    transition: all 0.3s ease;
}

.vd-cu-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(232, 175, 48, 0.5);
    background: linear-gradient(135deg, #f2bf42 0%, #d8a022 100%);
    color: #3d0a0b;
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 1200px) {
    .vd-cu-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vd-cu-guidelines-grid, .vd-cu-transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vd-cu-bottom-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .vd-cu-middle-grid {
        grid-template-columns: 1fr;
    }
    .vd-cu-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vd-cu-title {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .vd-cu-details-grid, .vd-cu-guidelines-grid, .vd-cu-transport-grid {
        grid-template-columns: 1fr;
    }
    .vd-cu-form-row {
        grid-template-columns: 1fr;
    }
    .vd-cu-hero {
        min-height: 380px;
        padding: 60px 15px 80px;
    }
    .vd-cu-title {
        font-size: 32px;
    }
    .vd-cu-subtitle {
        font-size: 16px;
    }
    .vd-cu-form-box, .vd-cu-faq-box, .vd-cu-social-box, .vd-cu-emergency-box {
        padding: 22px 16px;
    }
    .vd-cu-cta-title {
        font-size: 26px;
    }
}
