.des-hero {
    height: 300px;
    background: url('/images/destinations/darjeeling-main-img.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .des-hero {
        height: 150px; /* Height thodi balance ki */
        width: 100%;
        overflow: hidden; /* Bahar jata hua text hide karne ke liye */
        padding: 0 15px;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .des-hero h1 {
        font-size: 38px !important; /* Size chota kiya taki screen mein fit ho */
        width: 100%;
        word-wrap: break-word; /* Agar lamba naam ho toh break ho jaye */
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}
.des2-hero {
    height: 300px;
    background: url('/images/destinations/sikkim-main-img.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .des2-hero {
        height: 150px; /* Height thodi balance ki */
        width: 100%;
        overflow: hidden; /* Bahar jata hua text hide karne ke liye */
        padding: 0 15px;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .des2-hero h1 {
        font-size: 38px !important; /* Size chota kiya taki screen mein fit ho */
        width: 100%;
        word-wrap: break-word; /* Agar lamba naam ho toh break ho jaye */
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}
.des-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 57, 0.7); /* Dark Blue Overlay */
}

.des2-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 57, 0.7); /* Dark Blue Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
}


/* =========================================
   COMPACT DESTINATION PLACES GRID
   ========================================= */

.destination-places-grid {
    padding: 60px 0; /* Padding reduced from 100px to 60px */
    background: #ffffff;
    text-align: center;
}

/* 1. SECTION HEADER (Centered Text) */
.dest-places-header {
    max-width: 900px;
    margin: 0 auto 40px; /* Gap reduced from 70px to 40px */
}



.dest-places-header h3 {
    font-size: 32px; /* Slightly smaller for compactness */
    color: #0b1c39; /* Necabs Dark Blue */
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .dest-places-header h3 {
        font-size: 18px;
        padding: 0 30px;
    }
}

.dest-places-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 2. CARDS GRID CONTAINER */
.place-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Reduced gap from 40px */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. INDIVIDUAL PLACE CARD DESIGN */
.place-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    text-align: left;
    display: flex;
    flex-direction: column;
    /* Red bottom border by default */
    border-bottom: 3px solid #0b1c39; 
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(223, 6, 23, 0.1);
    border-bottom: 5px solid #df0617;
}

/* 4. IMAGE CONTAINER STYLING (HEIGHT REDUCED) */
.place-image {
    position: relative;
    height: 180px; /* Reduced height for compact look */
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.08);
}

/* 5. CONTENT SECTION INSIDE CARD */
.place-content {
    padding: 20px; /* Reduced from 30px */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.place-content h4 {
    font-size: 19px;
    color: #0b1c39;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.place-content p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Text limit to keep boxes aligned */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 6. READ MORE BUTTON DESIGN */
.read-more-btn {
    text-decoration: none;
    color: #df0617; /* Signature Red */
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    transition: 0.3s ease;
}

.read-more-btn:hover {
     color: #0b1c39;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .place-cards-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .place-cards-container { grid-template-columns: 1fr; }
}




.destination-split {
    padding: 30px 5%;
    background-color: #fff;
}

.split-container {
    display: flex;
    align-items: center; /* Vertically center content */
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Text Styling */
.split-text {
    flex: 0 0 30%; /* Left side takes 30% width */
    text-align: left;
}

.split-text h3 {
    color: #0c1e46; /* Signature Red */
    display: block; /* Name separate line mein aayega */
    font-size: 60px;
    font-weight: 900;
}


.split-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.split-accent-line {
    width: 60px;
    height: 4px;
    background: #df0617; /* Branded Line */
}

/* Right Cards Styling */
.split-cards-grid {
    flex: 0 0 70%; /* Right side takes 70% width */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards in one line */
    gap: 20px;
}

.place-mini-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    /* SIGNATURE RED BORDER */
    border-bottom: 4px solid #df0617;
    display: flex;
    flex-direction: column;
}

.place-mini-card:hover {
    transform: translateY(-8px);
}

.mini-img {
    height: 140px; /* Very compact height */
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-content {
    padding: 20px;
}

.mini-content h4 {
    font-size: 18px;
    color: #0b1c39;
    margin-bottom: 10px;
}

.mini-content p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Limit text to keep boxes same size */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Responsive: Mobile par stacked ho jayega */
@media (max-width: 1100px) {
    .split-container {
        flex-direction: column;
        text-align: center;
    }
    .split-text, .split-cards-grid {
        flex: 0 0 100%;
    }
    .split-text {
        text-align: center;
        font-size: 25px;
    }

    .split-text h3 {
        font-size: 25px;
    }
    .split-accent-line { margin: 0 auto; }
}

@media (max-width: 768px) {
    .split-cards-grid {
        grid-template-columns: 1fr;
    }
}