/* DHOLERA ADVANCED SEARCH STYLING */
.dholera-search-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}
.dholera-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: center;
}
.dholera-filter-grid select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #f8fafc;
    font-size: 14px;
    color: #334155;
    outline: none;
    transition: all 0.3s ease;
}
.dholera-filter-grid select:focus {
    border-color: #0284c7;
    background-color: #fff;
}
.dholera-search-submit {
    width: 100%;
    padding: 12px;
    background: #0284c7; /* Professional Tech Blue */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.dholera-search-submit:hover {
    background: #0369a1;
}/*

/* ==========================================================================
   DHOLERA LAND MARKETPLACE - REAL ESTATE GRID & CARDS STYLING
   ========================================================================== */

.dholera-grid-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.grid-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: left;
    border-left: 5px solid #0284c7; /* Premium Corporate Blue Indicator */
    padding-left: 12px;
    line-height: 1.2;
}

.dholera-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
}

/* Individual Plot Card Layout */
.plot-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Image Thumbnail Area with Map Overlay */
.plot-thumb {
    position: relative;
    height: 190px;
    background: #1e293b;
    width: 100%;
}

.plot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plot-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

/* Dynamic Verified Green Badge */
.verified-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981; /* Trust Green */
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Card Content Area */
.plot-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plot-tp-tag {
    font-size: 12px;
    text-transform: uppercase;
    color: #0284c7;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: inline-block;
}

.plot-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

.plot-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.plot-title a:hover {
    color: #0284c7;
}

/* Technical Metrics Box */
.plot-meta-specs {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 12px;
    border-radius: 6px;
    margin-top: auto; /* Pushes content to the bottom of layout smoothly */
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.plot-meta-specs div {
    font-size: 13px;
    color: #475569;
}

.plot-meta-specs strong {
    color: #0f172a;
    font-weight: 600;
}

/* Card Footer with Pricing & Button */
.plot-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.plot-price {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.view-details-btn {
    background: #f1f5f9;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.view-details-btn:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

/* Responsive fixes for mobile viewports */
@media (max-width: 480px) {
    .dholera-listings-grid {
        grid-template-columns: 1fr;
    }
    .plot-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .view-details-btn {
        width: 100%;
        text-align: center;
    }
}

/* 99ACRES LOOK AND FEEL FOR DHOLERA */
.plot-card.premium-layout {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.plot-location-hierarchy {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.plot-subheading-tp {
    font-size: 14px;
    color: #334155;
    margin-bottom: 15px;
}

.resale-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Specs Grid Like 99acres */
.specs-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
    margin-bottom: 12px;
    gap: 10px;
}

.matrix-item {
    display: flex;
    flex-direction: column;
}

.matrix-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.matrix-val {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.matrix-val small {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
}

/* Micro Technical Details Row */
.micro-details-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #475569;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Dual Actions Layout */
.updated-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    border-top: none !important;
    padding-top: 0 !important;
}

.action-btn {
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-no-btn {
    background: #ffffff;
    color: #0284c7;
    border: 1px solid #0284c7;
}

.view-no-btn:hover {
    background: #f0f9ff;
}

.contact-btn {
    background: #0284c7;
    color: #ffffff;
    border: 1px solid #0284c7;
}

.contact-btn:hover {
    background: #0369a1;
}
Theme Name:   GeneratePress Child for Dholera
Theme URI:    https://dholeraindustrialcity.in
Description:  Custom Marketplace Code for Dholera Industrial City
Author:       Shivrajsinh Chudasama
Author URI:   https://dholeraindustrialcity.in
Template:     generatepress
Version:      1.0.0
*/

/* ASK PRICE INTERACTIVE EFFECTS */
.ask-price-link {
    font-weight: 700;
    transition: color 0.2s ease;
}
.ask-price-link:hover {
    color: #c2410c !important; /* Shifting to premium dark orange on hover */
    text-decoration: underline !important;
}
/* Aapka custom CSS design code yahan niche aayega */