/* Pune Special Design Logic */
:root {
    --pune-primary: #8e44ad; /* Royal Purple of Pune */
    --pune-accent: #d35400; /* Terracotta Earthiness */
    --pune-gold: #c5a059;
}

.pune-flex-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px;
    border: 2px solid var(--pune-gold);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pune-info-card {
    flex: 1;
    min-width: 280px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.pune-tag {
    background: var(--pune-accent);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.pune-mini-calc {
    flex: 1;
    min-width: 300px;
}

.calc-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pune-mini-calc input, .pune-mini-calc select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.pune-btn {
    width: 100%;
    background: #111;
    color: var(--pune-gold);
    border: none;
    padding: 12px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.pune-btn:hover { background: var(--pune-accent); color: #fff; }

.res-text { display: none; margin-top: 15px; padding: 10px; background: #f9f9f9; border-left: 4px solid var(--pune-accent); }
.show-res { display: block; }

/* Location Grid */
.pune-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.loc-box {
    background: #fdfaf3;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.loc-box:hover { transform: translateY(-5px); border-color: var(--pune-gold); }

.pune-title { font-size: 3rem; font-weight: 900; margin-bottom: 15px; color: #2c3e50; }

.pune-highlight {
    background: #fff8eb;
    border: 1px dashed var(--pune-gold);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .pune-info-card { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
}.dcc-hero-video-box {
    position: relative;
    width: 100%;
    height: 85vh;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
