/* ===============================
   GLOBAL RESET & BASE
================================ */
:root{

    --primary:#0F766E;      /* Teal */
    --primary-dark:#115E59;

    --secondary:#2563EB;    /* Blue */

    --accent:#F97316;       /* Orange */

    --bg:#F8FAFC;

    --card:#FFFFFF;

    --text:#0F172A;

    --muted:#64748B;

    --border:#E2E8F0;

    --success:#16A34A;

    --danger:#E11D48;
}

body{
    background:var(--bg);
    color:var(--text);
}
* {
    box-sizing: border-box;
}



body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

h1,h2,h3,h4,h5,h6{
    font-weight:600;
}

button{
    font-family:'Poppins',sans-serif;
}

input,
select,
textarea{
    font-family:'Poppins',sans-serif;
}

a{
    font-family:'Poppins',sans-serif;
}
/* ===============================
   TOURIST PAGE – MAIN LAYOUT
================================ */
.tourist-page{
    width:90%;
    max-width:1260px;   /* ~10% smaller than 1400 */
    margin:0 auto;
    padding:0 30px;
}

.page-title{
    font-size:28px;
    font-weight:700;
    color:#1f2937;
    margin:20px 0 70px; /* increase bottom space */
    text-align:center;
}

@media (max-width:768px){

    .tourist-page{
        width:100%;
        max-width:100%;
        padding:0 10px;
    }

}
.page-title {
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;  
}




/* ===============================
   PRIMARY VIEW CONTAINER
================================ */
.primary-view-new{
background:none;
padding:0;
border:none;
box-shadow:none;
margin-bottom:25px;
}

/* ===============================
   TITLE & LOCATION
================================ */
.card-content h2{
margin:0 0 10px;
}

.card-content h2 a{
font-size:32px;
font-weight:700;
color:#0f172a;
text-decoration:none;
}

.quick-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
    gap:12px;
    margin:20px 0;
}
.quick-info div{

padding:12px;
border-radius:12px;
text-align:center;
font-size:14px;
 background:#F8FAFC;
    border:1px solid var(--border);
    color:var(--text);
}

.title-box h2 a:hover {
    color: #f97316; /* warm travel orange */
}


.location {
    margin-top: 8px;
    font-size: 17px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.location span {
    font-weight: 500;
}

.location .dot {
    color: #aaa;
}

.explore-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 6px 18px rgba(37,99,235,.25);
   transition:.3s; 
}

.explore-btn:hover{
    box-shadow:0 10px 25px rgba(37,99,235,.35);
     background:linear-gradient(135deg,#1D4ED8,#1E40AF);
    transform:translateY(-2px);
}


.explore-btn::after{
    content:"➜";
    transition:transform .3s ease;
}

.explore-btn:hover::after{
    transform:translateX(5px);
}

/* ===============================
   PRIMARY GRID LAYOUT
================================ */
.primary-layout {
    grid-template-areas: "slider meta";
    gap: 24px;
    margin-top: 20px;
    align-items: stretch;
}

.modern-card{
    display:grid;
    grid-template-columns:minmax(320px,420px) 1fr;
    gap:25px;
    
     background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:20px;
}
/* ===============================
   SHORT DESCRIPTION
================================ */
.short-desc {
    font-size: 17px;
    line-height: 1.45;
    color: #333;
    margin: 15px 0 10px;
    text-align: justify;
}


/* ===============================
   ANIMATION
================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 900px) {
    .primary-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "slider"
            "meta";
    }
    .title-box h2 a {
        font-size: 30px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 480px) {
    .primary-view-new {
        padding: 18px;
    }
    .title-box h2 a{
        font-size: 24px;
    }

    .short-desc {
        font-size: 15px;
    }
}

/* ===============================
   MOBILE FULL-WIDTH OPTIMIZATION
   ONLY FOR SMALL SCREENS
================================ */
@media (max-width: 480px) {

.primary-view-new {
        width: 100%;
        margin: 0;
        padding: 14px 16px;
        border-radius: 0;
        box-sizing: border-box;
    }
}

/* ===============================
   MOBILE SPACING FIXES ONLY
================================ */
@media (max-width: 480px) {

    /* Reduce gap above View More */
    .short-desc {
        margin-bottom: 5px;
    }


}

/* ===============================
   MOBILE CONTENT COMPACT MODE
================================ */

@media (max-width: 480px) {
    
    /* PAGE HEADING – mobile fix */
    .page-heading {
        height: 40px;   /* adjust if needed */
        border-radius: 0;
        font-size: 15px;
    }

    /* ===== SECONDARY VIEW FULL WIDTH ===== */
    /* ===== REMOVE TITLE BOX GAP ===== */
    .title-box {
        margin-top: 0;
        padding-top:0;
        margin-bottom: 3px;
        margin-left: 10px;
    }
    .tourist-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    .title-box h2 a {
        margin-bottom: 0px;
        margin-top: 0px;
        padding-bottom :0;
    }
}

.page-heading{
    padding: 10px 5px;          /* reduced height */
    margin-bottom: 0px;         /* less space below */
    background: linear-gradient(135deg, #0f5132, #198754, #6fdfb6);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
   position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

/* soft light effect (lighter & smaller) */
.page-heading::before{
    content: "";
    position: absolute;
    top: -80%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle,
        rgba(255,255,255,0.12),
        transparent 65%);
}

/* TITLE */
.page-heading h1{
    font-size: 15px;             /* reduced font size */
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 4px 0;           /* remove extra space */
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* SUB TITLE */
.page-heading p{
    font-size: 12px;
    margin: 0;                   /* remove margin */
    color: #eafff5;
    font-weight: 500;
}

/* MOBILE */
@media (max-width:768px){
    .page-heading{
        width:100%;
    }

    .page-heading h1{
        font-size: 24px;
    }
}
.meta-note{
    margin-top: 10px;
    font-size: 11px;
    color: #666;
    background: #f6f6f6;
    padding: 6px 10px;
    border-left: 3px solid #ffa500;
    border-radius: 4px;
}
/* ===============================
   SEO INTRO SECTION
================================ */

.seo-content {
 
    padding: 3px 2px;
    background: #f8fafc;
    border-left: 4px solid #f97316;
    border-radius: 6px;
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto 2px;      /* ✅ no top/bottom gap */
   
    background: #ffffff;
  
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.seo-content p {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.7;
    color: #334155;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

/* ===============================
   MAIN PAGE H1
================================ */

.tourist-page > h1 {
    max-width: 1100px;
    margin: 10px auto 10px;
    padding: 0 20px;
    font-size: 23px;
    font-weight: 700;
    color: #0f172a;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

    .tourist-page > h1 {
        font-size: 17px;
        margin-top: 4px;
    }

    .seo-content {
        margin: 0px 6px 1px;
        padding: 2px 2px;
    }

    .seo-content p {
        font-size: 14px;
    }
}




.seo-content p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 14px;
}

@media (max-width: 600px)
{
    .seo-content 
    {
        padding: 2px 2px;
    }
}

.place-image{
height:100%;
overflow:hidden;
}

.place-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.modern-card:hover img{
transform:scale(1.05);
}


.place-type{
    display:inline-flex;
    align-items:center;
    padding:10px 20px;
    font-size:15px;
    border-radius:999px;
     background:#ECFEF9;
    color:var(--primary);
    border:1px solid #99F6E4;
    font-weight:700;
}

@media (max-width:768px){
    .place-image{
        height:250px;
    }
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* keeps image filling box */
    display: block;
}

.place-image img:hover {
    transform: scale(1.03);
}



/* Hover container */
.hover-label {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

/* Hover text */
.hover-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    opacity: 0;
    transition: 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

/* Show on hover */
.hover-label:hover .hover-text
{
    opacity: 1;
}

/* ===============================
   FILTER SECTION STYLING
================================ */
.filter-box{
    max-width:1100px;
    margin:-30px auto 35px;
    padding:15px;
    border-radius:15px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.search-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 170px;
    gap:15px;
}

.search-item{
    position:relative;
}

.search-item .icon{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-40%);
    font-size:18px;
    color:#666;
}

.search-item input,
.search-item select{

    width:100%;
    height:55px;

    border:none;
    outline:none;

    border-radius:15px;

    background:#fff;

    padding:0 18px;
    font-size:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.search-item input{
    padding-left:48px;
}

#searchBtn{

    height:55px;

    border:none;
    border-radius:15px;

    background:#0f766e;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

#searchBtn:hover{

    background:#115e59;
    transform:translateY(-2px);

}

/* ===============================
   MOBILE FILTER LAYOUT
================================ */
@media (max-width:768px){
    
    .search-item .icon{

    transform:translateY(-50%);

}

.search-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
}

/* State */
.search-item:nth-child(1){
    width:100%;
}

/* District */
.search-item:nth-child(2){
    width:100%;
}

/* Search box */
.search-item:nth-child(3){
    grid-column:1;
    width:100%;
}

/* Search button */
#searchBtn{
    grid-column:2;

    width:100%;
    height:40px;

    border-radius:12px;
}

/* Inputs */

.search-item input,
.search-item select{

    width:100%;
    height:40px;

    border-radius:12px;
}

}

/* ===============================
   PLACE IMAGE - 3px MARGIN (Mobile Only)
================================ */
@media (max-width: 768px) {

    .place-image {
        margin: 0px !important;   /* top right bottom left = 3px */
        padding:0px;
    }

}
/* ===============================
   PROFESSIONAL PAGINATION
================================ */

.pagination{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:6px;
    margin:40px 0;
}

.pagination a{
    padding:8px 14px;
    border-radius:8px;
    border:1px solid #e2e8f0;
    background:#fff;
    color:#334155;
    text-decoration:none;
    font-size:14px;
    transition:all .25s ease;
}

.results-count{
    text-align:center;
    font-size:14px;
    color:#475569;
    margin-top:20px;
    margin-bottom:10px;
    font-weight:500;
}

.pagination a:hover{
    background:#0a7cff;
    color:#fff;
    border-color:#0a7cff;
}

.pagination a.active{
    background:#0a7cff;
    color:#fff;
    border-color:#0a7cff;
    font-weight:600;
}

.pagination a.prev,
.pagination a.next{
    font-weight:600;
}

.card-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-top:15px;
}

@media(max-width:480px){

    .card-footer{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
    }

    .place-rating{
        font-size:13px;
    }

    .explore-btn{
        padding:10px 18px;
        font-size:14px;
    }

}

.place-rating{
    font-size:14px;
    font-weight:600;
    color:#f59e0b;
    white-space:nowrap;
}

.place-rating span{
    color:#666;
    font-weight:400;
    margin-left:4px;
}

.explore-btn{
    margin:0;
}

@media (min-width:1800px){

    .tourist-page{
        max-width:1600px;
    }

    .card-content h2 a{
        font-size:38px;
    }

    .short-desc{
        font-size:19px;
    }



}

@media (max-width:1366px){

    .tourist-page{
        max-width:1200px;
    }

    .card-content h2 a{
        font-size:28px;
    }

}

@media (max-width:1024px){

    .modern-card{
        grid-template-columns:320px 1fr;
    }

    .card-content h2 a{
        font-size:26px;
    }

    .short-desc{
        font-size:15px;
    }

}

@media (max-width:768px){

    .modern-card{
        display:block;
    }

    .place-image{
        height:240px;
        width:100%;
    }

    .card-content{
        padding:15px;
    }

    .card-content h2 a{
        font-size:24px;
    }

    .location{
        font-size:14px;
    }

    .short-desc{
        font-size:14px;
        line-height:1.6;
    }

}

@media (max-width:480px){



    .tourist-page{
        padding:0 8px;
    }

    .card-content{
        padding:12px;
    }

    .card-content h2 a{
        font-size:21px;
    }

    .place-type{
        font-size:11px;
        padding:6px 12px;
    }

}

/* Hide Hero Banner on Mobile */
/* Hide Hero Completely on Mobile */
@media screen and (max-width:768px){

    section.hero{
        display:none !important;
        visibility:hidden !important;
        height:0 !important;
        min-height:0 !important;
        margin:0 !important;
        padding:0 !important;
        overflow:hidden !important;
    }

}
/* Hide Page Heading on Desktop */
@media (min-width:769px){
    .page-heading{
        display:none;
    }
}

.modern-card{
    transition:.35s ease;
}

.modern-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}


/* ==========================
   IMAGE GALLERY DESKTOP
========================== */

.modern-card{
    display:grid;
    grid-template-columns:minmax(450px,540px) 1fr;
    gap:25px;
}

.place-gallery{
    display:grid;
    grid-template-columns:72% 28%;
    grid-template-rows:190px 190px;
    gap:0;
    height:380px;
    overflow:hidden;
}

/* Individual image box */
.gallery-slide{
    overflow:hidden;
    border:1px solid #e5e7eb;
    background:#fff;
}

/* Large image */
.gallery-slide:first-child{
    grid-row:1 / span 2;
    border-radius:18px 0 0 18px;
}

/* Top right image */
.gallery-slide:nth-child(2){
    border-radius:0 18px 0 0;
}

/* Bottom right image */
.gallery-slide:nth-child(3){
    border-radius:0 0 18px 0;
}

/* Images */
.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:none !important;
    transform:none !important;
}

/* Disable all image hover effects */
.gallery-slide:hover img{
    transform:none !important;
}

/* ==========================
   MOBILE SLIDER
========================== */

@media (max-width:768px){

    .modern-card{
        display:block;
    }

    .place-gallery{
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:10px;
        height:auto;
        padding-bottom:15px;

        scrollbar-width:none;
        -ms-overflow-style:none;
        -webkit-overflow-scrolling:touch;
    }

    .place-gallery::-webkit-scrollbar{
        display:none;
    }

    .gallery-slide{
        flex:0 0 100%;
        min-width:100%;
        border-radius:16px !important;
        border:1px solid #e5e7eb;
        position:relative;
    }

    .gallery-slide img{
        width:100%;
        height:260px;
        object-fit:cover;
        border-radius:16px;
    }
}

/* ==========================
   REMOVE CARD HOVER EFFECT
========================== */

.modern-card{
    transition:none;
}

.modern-card:hover{
    transform:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}


.card-title{
    margin:10px 0 8px;
}

.card-title a{
    font-size:32px;
    font-weight:700;
    color:#111827;
    text-decoration:none;
}

.card-location{
    color:#6b7280;
    font-size:15px;
    margin-bottom:15px;
}



.quick-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    margin:14px 0;
}

.quick-info div{
    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 12px;

    border-radius:10px;

    min-height:44px;
}
.quick-info span{
    font-size:18px;
}

.card-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.save-btn{
    background:#fff5f5;
    border:none;
    color:#e11d48;
    padding:10px 18px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.map-btn{
    background:#eff6ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    border:1px solid #BFDBFE;
}

.map-btn:hover{

    background:#DBEAFE;

}

.explore-btn{
    margin-left:auto;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}

.place-type{
    padding:9px 18px;
    font-size:15px;
    font-weight:700;
}



.card-content{
    padding:18px 20px;
}

.card-actions{
    margin-top:12px;
    gap:10px;
}

.save-btn,
.map-btn{
    padding:8px 16px;
    font-size:14px;
}

.explore-btn{
    padding:10px 20px;
}

/*=========================
        RATING
=========================*/

.rating-row{

    display:inline-flex;
    align-items:center;
    gap:7px;

    margin:10px 0;

    padding:6px 12px;

    background:#fffdf3;

    border:1px solid #ffe08a;

    border-radius:28px;

    box-shadow:0 3px 10px rgba(0,0,0,.06);

}

.rating-row .stars{

    color:#ffb400;

    font-size:16px;

    letter-spacing:1.5px;

    text-shadow:0 1px 2px rgba(0,0,0,.15);

}

.rating-row .rating-number{

    background:linear-gradient(135deg,#16a34a,#22c55e);

    color:#fff;

    font-weight:700;

    font-size:14px;

    min-width:30px;
    height:30px;

    border-radius:8px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 3px 8px rgba(34,197,94,.30);

}

.rating-row small{

    color:#666;

    font-size:12px;

    font-weight:600;

}

.rating-row small:only-child{

    display:inline-block;

    padding:6px 10px;

    background:#ecfdf5;

    border:1px solid #bbf7d0;

    border-radius:18px;

    color:#15803d;

    font-weight:700;

}

.rating-row:hover{

    transform:translateY(-1px);

    transition:.25s;

    box-shadow:0 6px 15px rgba(0,0,0,.08);

}

@media(max-width:768px){

.rating-row{

    padding:5px 10px;

    gap:5px;

}

.rating-row .stars{

    font-size:14px;

}

.rating-row .rating-number{

    width:28px;
    height:28px;

    font-size:12px;

}

.rating-row small{

    font-size:11px;

}

}

.stars{
    color:#fbbf24;
    font-size:18px;
    letter-spacing:1px;
}

.rating-number{
    font-size:17px;
    font-weight:700;
    color:#111827;
}



.save-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:10px 18px;

    border:none;
    border-radius:8px;

    background:#f5f5f5;
    color:#333;

    cursor:pointer;

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.save-btn:hover{
    background:#ececec;
}

.save-btn .heart{
    font-size:18px;
    transition:.3s;
}

.save-btn.saved{
    background:#ffeaea;
    color:#e53935;
}

.save-btn.saved .heart{
    color:#e53935;
}

.card-actions{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.card-actions a,
.card-actions button{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    padding:12px 10px;
    border-radius:10px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
    box-sizing:border-box;
}

@media (max-width:768px){

.card-actions{
    gap:6px;
}

.card-actions a,
.card-actions button{
    flex:1;
    padding:8px 4px;
    font-size:12px;
    font-weight:600;
}

}

/* Mobile Slider Dots */
.gallery-dots{
    display:none;
}

@media (max-width:768px){

.gallery-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:10px;
}

.gallery-dots .dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#cbd5e1;
    transition:.3s;
}

.gallery-dots .dot.active{
    width:24px;
    border-radius:20px;
    background:#0f766e;
}

}

.hero{
    position:relative;
    width:100%;
    height:240px !important;   /* reduce here */
    min-height:160px !important;
    max-height:240px !important;

    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center 35%;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.08);
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
    width:90%;
    max-width:900px;
    text-align:center;
    color:#fff;
}

.hero h1{
    display:none;
    
    font-size:42px;
    margin-bottom:10px;
}

.hero p{
    display:none;
    
    font-size:18px;
}

@media(max-width:768px){

    .hero{
        display:none;
    }

}

/* ======================================
   MOBILE COMPACT SPACING
====================================== */
@media (max-width:768px){

    .tourist-page{
        width:100%;
        max-width:100%;
        padding-left:4px !important;
        padding-right:4px !important;
        margin:0 auto;
    }

    .primary-view-new{
        padding:0 !important;
        margin-bottom:15px;
    }

    .modern-card{
        margin-top:10px;
        border-radius:14px;
    }

    .card-content{
        padding:10px !important;
    }

    .seo-content{
        margin:0 4px !important;
    }

    .filter-box{
        margin-left:4px;
        margin-right:4px;
        padding:8px;
    }

}

/* ==========================
   MOBILE FILTER TOP SPACING
========================== */
@media (max-width:768px){

    .filter-box{
        margin:2px 4px 5px !important;
    }

}

/*==========================
    BREADCRUMB
===========================*/
.breadcrumb{
    max-width:1200px;
    margin:18px auto;
    padding:12px 20px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:500;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.breadcrumb a{
    color:#0f766e;
    text-decoration:none;
    transition:.25s;
}

.breadcrumb a:hover{
    color:#0b5f58;
    text-decoration:none;
}

.breadcrumb span{
    color:#555;
    font-weight:600;
}

/*==========================
      SEO INTRO
===========================*/

.seo-intro{

    max-width:1200px;
    margin:30px auto;

    padding:28px 35px;

    background:linear-gradient(135deg,#ffffff,#f8fffe);

    border:1px solid #d8ece8;

    border-left:6px solid #0f766e;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    font-family:
    "Segoe UI",
    Roboto,
    "Noto Sans",
    Arial,
    sans-serif;

}

.seo-intro h2{

    margin:0 0 18px;

    font-size:34px;

    font-weight:700;

    line-height:1.25;

    color:#114b45;

    letter-spacing:.2px;

}

.seo-intro p{

    margin:10px 0;

    color:#444;

    font-size:17px;

    line-height:1.65;

    text-align:justify;

}

/*==========================
      STATE LINK
===========================*/

.state-link{

    color:#0f766e;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.state-link:hover{

    color:#084c46;

    text-decoration:underline;

}


/*==========================
      TABLET
===========================*/

@media (max-width:992px){

.seo-intro{

    margin:20px 15px;

    padding:22px;

}

.seo-intro h2{

    font-size:28px;

}

.seo-intro p{

    font-size:16px;

}

.breadcrumb{

    margin:15px;

    font-size:14px;

}

}


/*==========================
      MOBILE
===========================*/

@media (max-width:768px){

.seo-intro{

    margin:15px;

    padding:18px;

    border-left:4px solid #0f766e;

}

.seo-intro h2{

    margin:0;

    font-size:22px;

    text-align:center;

    line-height:1.35;

}

/* Hide intro paragraphs on mobile */

.seo-intro p{

    display:none;

}

.breadcrumb{

    margin:12px;

    padding:10px 15px;

    font-size:13px;

    gap:6px;

    border-radius:10px;

}

}


/*==========================
    VERY SMALL DEVICES
===========================*/

@media (max-width:480px){

.seo-intro h2{

    font-size:20px;

}

.breadcrumb{

    font-size:12px;

}

}