/* ==========================================================
   FUNYATRA HOME PAGE
   Clean • Professional • Responsive • AdSense-friendly
   Works with the existing index.php markup
========================================================== */

:root{
    --home-primary:#0f766e;
    --home-primary-dark:#0b5f59;
    --home-accent:#f59e0b;
    --home-orange:#f97316;
    --home-ink:#14213d;
    --home-text:#526173;
    --home-muted:#718096;
    --home-bg:#f7fafc;
    --home-white:#fff;
    --home-border:#e5eaf0;
    --home-shadow:0 12px 32px rgba(15,23,42,.08);
    --home-radius:20px;
    --home-max:1240px;
}

*{box-sizing:border-box;}

body{
    margin:0;
    background:#fff;
    color:var(--home-text);
    font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

a{color:inherit;}
img{max-width:100%;}
button,input,select{font:inherit;}

/* ==========================================================
   HERO
========================================================== */
.hero{
    position:relative;
    min-height:430px;
    overflow:hidden;
    isolation:isolate;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(90deg,rgba(4,25,39,.86),rgba(4,25,39,.42),rgba(4,25,39,.12)),
        linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.45));
}

.hero-content{
    width:min(var(--home-max),92%);
    margin:auto;
    min-height:430px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 0 80px;
    color:#fff;
}

.hero-content h1{
    max-width:760px;
    margin:0 0 16px;
    font-size:clamp(34px,5vw,58px);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1.2px;
    text-shadow:0 5px 20px rgba(0,0,0,.28);
}

.hero-content p{
    max-width:720px;
    margin:0;
    font-size:clamp(16px,2vw,20px);
    line-height:1.7;
    color:rgba(255,255,255,.94);
}

/* ==========================================================
   MAIN WRAPPER
========================================================== */
.tourist-page{
    width:min(var(--home-max),92%);
    margin:auto;
}

.home-section,
.trending-section,
.toprated-section,
.state-section,
.travel-tips-section{
    width:100%;
    max-width:var(--home-max);
    margin:56px auto;
}

/* ==========================================================
   SEARCH / FILTER
========================================================== */
.filter-box{
    position:relative;
    z-index:10;
    width:100%;
    margin:-42px auto 0;
    padding:22px;
    background:rgba(255,255,255,.97);
    border:1px solid rgba(226,232,240,.95);
    border-radius:22px;
    box-shadow:0 18px 45px rgba(15,23,42,.13);
    backdrop-filter:blur(12px);
}

.search-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1.45fr auto;
    gap:12px;
    align-items:stretch;
}

.search-item{
    position:relative;
    min-width:0;
}

.search-item select,
.search-item input{
    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid var(--home-border);
    border-radius:12px;
    background:#fff;
    color:var(--home-ink);
    outline:none;
    transition:border-color .2s,box-shadow .2s;
}

.search-item select:focus,
.search-item input:focus{
    border-color:var(--home-primary);
    box-shadow:0 0 0 3px rgba(15,118,110,.10);
}

.search-item .icon{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
}

.search-item .icon + input{padding-left:42px;}

#searchSuggestions{
    position:absolute;
    left:0;
    right:0;
    top:56px;
    z-index:1000;
    background:#fff;
    border:1px solid var(--home-border);
    border-radius:12px;
    box-shadow:var(--home-shadow);
    overflow:hidden;
}

#searchSuggestions:empty{display:none;}

#searchBtn{
    height:52px;
    min-width:120px;
    padding:0 22px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,var(--home-primary),#159b91);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(15,118,110,.20);
    transition:transform .2s,box-shadow .2s;
}

#searchBtn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(15,118,110,.28);
}

.empty-search,
.no-results{
    margin:15px 0;
    padding:15px 8px;
    text-align:center;
    background:#f8fafc;
    border:1px solid var(--home-border);
    border-radius:16px;
}

.empty-search p,
.no-results p{margin:0;color:var(--home-muted);}
.no-results h3{margin:0 0 8px;color:var(--home-ink);}

/* ==========================================================
   SEARCH RESULT CARD
========================================================== */
.home-search{
    margin:32px 0;
    background:#fff;
    border:1px solid var(--home-border);
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--home-shadow);
}

.home-search-header{padding:22px 24px 8px;}

.home-search-title{
    margin:0 0 7px;
    font-size:26px;
    line-height:1.25;
    font-weight:750;
    color:var(--home-ink);
}

.home-search-title a{text-decoration:none;}
.home-search-title a:hover{color:var(--home-primary);}

.home-search-location{
    margin:0;
    color:var(--home-muted);
    font-size:14px;
}

.home-search-box{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
    min-height:330px;
}

.home-search-gallery{
    position:relative;
    min-height:330px;
    overflow:hidden;
    background:#edf2f7;
}

.home-search-gallery-main{
    position:absolute;
    inset:0;
}

.home-search-gallery-main img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .4s;
}

.home-search-gallery-main:hover img{transform:scale(1.03);}

.home-search-gallery-side{
    position:absolute;
    right:14px;
    top:14px;
    bottom:14px;
    width:105px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.home-search-gallery-side a{
    min-height:0;
    flex:1;
    overflow:hidden;
    border-radius:10px;
    border:2px solid rgba(255,255,255,.85);
    box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.home-search-gallery-side img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-search-mobile-slider,
.home-search-slider-dots{display:none;}

.home-search-result-content{
    padding:26px;
    display:flex;
    flex-direction:column;
    min-width:0;
}

.home-search-result-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.home-search-type{
    display:inline-flex;
    align-items:center;
    padding:6px 11px;
    border-radius:30px;
    background:#e8f6f4;
    color:var(--home-primary-dark);
    font-size:12px;
    font-weight:700;
}

.home-search-rating{
    color:#b45309;
    font-weight:750;
    white-space:nowrap;
}

.home-search-rating small{
    color:var(--home-muted);
    font-weight:500;
}

.home-search-description{
    margin:0 0 18px;
    color:#526173;
    font-size:15px;
    line-height:1.75;
}

.home-search-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    padding:15px;
    margin-bottom:20px;
    background:#f8fafc;
    border:1px solid #edf1f5;
    border-radius:14px;
}

.home-search-info div{
    min-width:0;
    color:#475569;
    font-size:13px;
    line-height:1.5;
}

.home-search-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:auto;
}

.home-search-buttons a,
.save-btn{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 15px;
    border-radius:10px;
    border:1px solid var(--home-border);
    background:#fff;
    color:var(--home-ink);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.home-search-explore{
    background:var(--home-primary)!important;
    color:#fff!important;
    border-color:var(--home-primary)!important;
}

.home-search-map:hover,
.save-btn:hover{border-color:var(--home-primary);color:var(--home-primary);}

.home-search-explore:hover{background:var(--home-primary-dark)!important;}

.save-btn.saved{background:#fff1f2;border-color:#fecdd3;color:#be123c;}

.results-count{
    margin:20px 0 0;
    color:var(--home-muted);
    font-size:14px;
    text-align:center;
}

/* ==========================================================
   SECTION HEADERS
========================================================== */
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
    margin-bottom:24px;
}

.section-header h2,
.section-title h2{
    margin:0;
    color:var(--home-ink);
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:-.4px;
}

.section-header p{
    margin:7px 0 0;
    color:var(--home-muted);
    font-size:15px;
    line-height:1.6;
}

.section-title{
    margin-bottom:22px;
}

.view-all-btn{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 17px;
    border:1px solid #b7ddd9;
    border-radius:10px;
    background:#fff;
    color:var(--home-primary);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:.2s;
}

.view-all-btn:hover{
    background:var(--home-primary);
    color:#fff;
    border-color:var(--home-primary);
}

.view-all-btn.orange{border-color:#fed7aa;color:#c2410c;}
.view-all-btn.orange:hover{background:var(--home-orange);border-color:var(--home-orange);color:#fff;}

/* =========================
   POPULAR CATEGORY GRID
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}


/* =========================
   CATEGORY CARD
========================= */

.category-card {
    display: block;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}


/* =========================
   CATEGORY IMAGE
========================= */

.category-image {
    width: 100%;
    height: 165px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}


/* =========================
   CATEGORY CONTENT
========================= */

.category-content {
    padding: 14px;
}

.category-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #102a43;
}

.category-content p {
    margin: 0;
    font-size: 13px;
    color: #607d8b;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-image {
        height: 130px;
    }

    .category-content {
        padding: 11px;
    }

    .category-content h3 {
        font-size: 16px;
    }

    .category-content p {
        font-size: 12px;
    }

}
/* ==========================================================
   TRENDING
========================================================== */
.trending-section{
    padding:32px;
    background:linear-gradient(145deg,#f0faf8,#f5f9ff);
    border:1px solid #e1efed;
    border-radius:24px;
}

.trending-wrapper,
.toprated-wrapper,
.state-slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.trending-slider,
.toprated-slider,
.state-slider{
    width:100%;
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:5px 2px 10px;
}

.trending-slider::-webkit-scrollbar,
.toprated-slider::-webkit-scrollbar,
.state-slider::-webkit-scrollbar{display:none;}

.trend-card{
    position:relative;
    flex:0 0 265px;
    width:265px;
    height:385px;
    overflow:hidden;
    border-radius:18px;
    color:#fff;
    text-decoration:none;
    background:#123;
    box-shadow:0 10px 25px rgba(15,23,42,.14);
    transition:transform .25s;
}

.trend-card:hover{transform:translateY(-6px);}
.trend-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s;}
.trend-card:hover img{transform:scale(1.05);}
.trend-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(2,12,20,.92),rgba(2,12,20,.08) 65%);}
.trend-number{position:absolute;top:14px;left:14px;padding:6px 10px;border-radius:9px;background:#fff;color:var(--home-ink);font-weight:800;font-size:14px;z-index:2;}
.wishlist-icon{position:absolute;top:14px;right:14px;width:38px;height:38px;border:1px solid rgba(255,255,255,.3);border-radius:50%;background:rgba(0,0,0,.18);backdrop-filter:blur(8px);color:#fff;font-size:21px;cursor:pointer;z-index:3;}
.trend-content{position:absolute;left:18px;right:18px;bottom:18px;z-index:2;}
.trend-content h3{margin:0 0 5px;font-size:23px;line-height:1.2;color:#fff;}
.trend-content p{margin:0 0 10px;font-size:14px;color:rgba(255,255,255,.9);}
.trend-tag{display:inline-block;padding:5px 9px;border-radius:20px;background:rgba(15,118,110,.92);font-size:11px;font-weight:700;margin-bottom:10px;}
.trend-rating{display:flex;gap:6px;align-items:center;font-size:13px;font-weight:650;}

.trend-nav,.top-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:44px;
    height:44px;
    border:1px solid var(--home-border);
    border-radius:50%;
    background:#fff;
    color:var(--home-ink);
    box-shadow:0 8px 20px rgba(15,23,42,.12);
    font-size:19px;
    cursor:pointer;
}
.trend-nav:hover,.top-nav:hover{background:var(--home-primary);color:#fff;border-color:var(--home-primary);}
.trend-nav.prev,.top-nav.prev{left:-20px;}
.trend-nav.next,.top-nav.next{right:-20px;}

/* ==========================================================
   TOP RATED
========================================================== */
.toprated-section{
    padding:32px;
    background:linear-gradient(145deg,#fffaf2,#fff);
    border:1px solid #f5e6cf;
    border-radius:24px;
}

.top-card{
    flex:0 0 250px;
    width:250px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border:1px solid var(--home-border);
    border-radius:17px;
    background:#fff;
    color:var(--home-ink);
    text-decoration:none;
    box-shadow:0 8px 24px rgba(15,23,42,.07);
    transition:transform .25s,box-shadow .25s;
}

.top-card:hover{transform:translateY(-5px);box-shadow:0 16px 32px rgba(15,23,42,.13);}
.top-image{position:relative;width:100%;height:165px;overflow:hidden;background:#edf2f7;}
.top-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s;}
.top-card:hover .top-image img{transform:scale(1.05);}
.rating-badge{position:absolute;top:12px;right:12px;padding:6px 10px;border-radius:20px;background:#15803d;color:#fff;font-size:12px;font-weight:800;}
.top-content{padding:15px;text-align:left;}
.top-content h3{margin:0 0 5px;color:var(--home-ink);font-size:18px;line-height:1.3;}
.top-content .state{margin:0 0 10px;color:var(--home-muted);font-size:13px;}
.info-list{width:100%;}
.info-list div{color:var(--home-muted);font-size:12px;line-height:1.55;}
.info-list span{display:block;color:var(--home-ink);font-weight:650;margin-top:2px;}

/* ==========================================================
   EXPLORE BY STATE
========================================================== */
.state-section{
    padding:32px;
    background:linear-gradient(145deg,#f5f9ff,#eef7ff);
    border:1px solid #e0ebf8;
    border-radius:24px;
}

.state-card{
    position:relative;
    flex:0 0 240px;
    width:240px;
    height:285px;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    color:#fff;
    box-shadow:0 10px 25px rgba(15,23,42,.12);
}

.state-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s;}
.state-card:hover img{transform:scale(1.06);}
.state-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(2,20,30,.9),rgba(2,20,30,.05) 65%);}
.state-content{position:absolute;left:14px;right:14px;bottom:14px;padding:14px;border:1px solid rgba(255,255,255,.2);border-radius:14px;background:rgba(255,255,255,.08);backdrop-filter:blur(10px);}
.state-badge{display:inline-flex;padding:5px 9px;border-radius:20px;background:#f59e0b;color:#fff;font-size:11px;font-weight:750;}
.state-content h3{margin:8px 0 4px;color:#fff;font-size:21px;line-height:1.2;}
.state-content p{margin:0;color:rgba(255,255,255,.9);font-size:12px;line-height:1.45;}
.state-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:42px;height:42px;border:1px solid var(--home-border);border-radius:50%;background:#fff;color:var(--home-ink);font-size:19px;cursor:pointer;box-shadow:0 8px 20px rgba(15,23,42,.12);}
.state-arrow:hover{background:var(--home-primary);color:#fff;border-color:var(--home-primary);}
.state-arrow.left{left:-18px;}.state-arrow.right{right:-18px;}

/* ==========================================================
   NEARBY
========================================================== */
.card-slider{
    min-height:90px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.loading,
.location-message{
    grid-column:1/-1;
    padding:28px;
    text-align:center;
    border:1px solid var(--home-border);
    border-radius:16px;
    background:#f8fafc;
    color:var(--home-muted);
}

.location-message h3{margin:0 0 7px;color:var(--home-ink);}
.location-message p{margin:0 0 14px;line-height:1.6;}
.location-message button{padding:10px 16px;border:0;border-radius:10px;background:var(--home-primary);color:#fff;font-weight:700;cursor:pointer;}

/* ==========================================================
   TRAVEL TIPS
========================================================== */
.travel-tips-section{padding:0;}
.travel-tips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.travel-tip-card{display:flex;align-items:center;gap:14px;padding:18px;border:1px solid var(--home-border);border-radius:16px;background:#fff;box-shadow:0 7px 22px rgba(15,23,42,.06);transition:.25s;}
.travel-tip-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(15,23,42,.10);}
.travel-tip-card img{width:52px;height:52px;object-fit:contain;flex:0 0 52px;}
.tip-content h3{margin:0 0 5px;color:var(--home-ink);font-size:16px;line-height:1.3;}
.tip-content p{margin:0;color:var(--home-muted);font-size:13px;line-height:1.55;}

/* ==========================================================
   NEWSLETTER
========================================================== */
.newsletter{
    width:min(1000px,100%);
    margin:60px auto 40px;
    padding:38px 28px;
    text-align:center;
    border-radius:24px;
    background:linear-gradient(135deg,#0b5f59,#0f766e);
    color:#fff;
    box-shadow:0 18px 40px rgba(15,118,110,.20);
}

.newsletter h2{margin:0 0 9px;font-size:30px;color:#fff;}
.newsletter > p{max-width:650px;margin:0 auto 20px;color:rgba(255,255,255,.88);line-height:1.6;}
.newsletter form{max-width:620px;margin:auto;display:flex;gap:10px;}
.newsletter input[type=email]{flex:1;min-width:0;height:48px;padding:0 15px;border:0;border-radius:10px;outline:none;}
.newsletter button{height:48px;padding:0 20px;border:0;border-radius:10px;background:#f59e0b;color:#fff;font-weight:750;cursor:pointer;}
.newsletter button:hover{background:#d97706;}
#newsletterMsg{margin:12px 0 0;color:#fff;}

/* ==========================================================
   SMALL HIGHLIGHTS
========================================================== */
.about-highlights{
    width:min(var(--home-max),92%);
    margin:10px auto 45px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:9px;
}

.about-highlights span{
    padding:8px 12px;
    border:1px solid var(--home-border);
    border-radius:30px;
    background:#fff;
    color:var(--home-muted);
    font-size:12px;
}

.about-highlights i{font-style:normal;margin-right:4px;}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media(max-width:1050px){
    .search-grid{grid-template-columns:1fr 1fr;}
    #searchBtn{width:100%;}
    .category-grid{grid-template-columns:repeat(2,1fr);}
    .travel-tips-grid{grid-template-columns:repeat(2,1fr);}
    .card-slider{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:768px){
    .hero{min-height:350px;}
    .hero-content{min-height:350px;padding:55px 0 65px;}
    .hero-content h1{font-size:34px;letter-spacing:-.7px;}
    .hero-content p{font-size:15px;line-height:1.6;}

    .tourist-page{width:min(94%,var(--home-max));}
    .filter-box{margin:-28px 0 0;padding:13px;border-radius:16px;}
    .search-grid{grid-template-columns:1fr;gap:9px;}
    .search-item select,.search-item input,#searchBtn{height:48px;}

    .home-section,
    .trending-section,
    .toprated-section,
    .state-section,
    .travel-tips-section{margin:38px auto;}

    .trending-section,
    .toprated-section,
    .state-section{padding:18px;border-radius:18px;}

    .section-header{align-items:flex-start;gap:12px;margin-bottom:16px;}
    .section-header h2,.section-title h2{font-size:23px;}
    .section-header p{font-size:13px;line-height:1.5;}
    .view-all-btn{padding:8px 11px;font-size:12px;white-space:nowrap;}

    .category-grid{
        display:flex;
        overflow-x:auto;
        grid-template-columns:none;
        gap:12px;
        scrollbar-width:none;
        padding:2px 2px 8px;
    }
    .category-grid::-webkit-scrollbar{display:none;}
    .category-card{flex:0 0 185px;}
    .category-image{height:125px;}
    .category-content{padding:11px 12px 13px;}
    .category-content h3{font-size:15px;}
    .category-content p{font-size:12px;}

    .home-search{margin:22px 0;border-radius:17px;}
    .home-search-header{padding:16px 15px 8px;}
    .home-search-title{font-size:20px;}
    .home-search-location{font-size:12px;line-height:1.5;}
    .home-search-box{display:block;min-height:0;}
    .home-search-gallery{min-height:0;height:auto;background:none;}
    .home-search-gallery-main,.home-search-gallery-side{display:none;}
    .home-search-mobile-slider{display:flex;width:100%;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;}
    .home-search-mobile-slider::-webkit-scrollbar{display:none;}
    .home-search-slide{flex:0 0 100%;height:220px;scroll-snap-align:start;}
    .home-search-slide img{width:100%;height:100%;object-fit:cover;display:block;}
    .home-search-slider-dots{display:flex;justify-content:center;gap:5px;padding:9px 0 0;}
    .home-search-dot{width:6px;height:6px;border-radius:50%;background:#cbd5e1;}
    .home-search-dot.active{background:var(--home-primary);width:18px;border-radius:10px;}
    .home-search-result-content{padding:15px;}
    .home-search-result-top{align-items:flex-start;margin-bottom:11px;}
    .home-search-rating{font-size:12px;}
    .home-search-rating small{display:none;}
    .home-search-description{font-size:13px;line-height:1.6;margin-bottom:13px;}
    .home-search-info{grid-template-columns:1fr 1fr;gap:7px;padding:11px;margin-bottom:13px;}
    .home-search-info div{font-size:11px;}
    .home-search-buttons{gap:7px;}
    .home-search-buttons a,.save-btn{min-height:38px;padding:7px 10px;font-size:11px;flex:1;}

    .trend-card{flex-basis:225px;width:225px;height:330px;}
    .trend-content h3{font-size:20px;}
    .trend-content p{font-size:12px;}
    .trend-nav,.top-nav{display:none;}

    .toprated-slider{gap:12px;}
    .top-card{flex-basis:225px;width:225px;}
    .top-image{height:145px;}
    .top-content h3{font-size:16px;}

    .state-slider{gap:12px;}
    .state-card{flex-basis:210px;width:210px;height:255px;}
    .state-content h3{font-size:19px;}
    .state-arrow{display:none;}

    .card-slider{grid-template-columns:1fr;gap:12px;}
    .travel-tips-grid{grid-template-columns:1fr;gap:11px;}
    .travel-tip-card{padding:14px;}
    .travel-tip-card img{width:44px;height:44px;flex-basis:44px;}
    .tip-content h3{font-size:15px;}
    .tip-content p{font-size:12px;}

    .newsletter{margin:40px auto 28px;padding:28px 16px;border-radius:18px;}
    .newsletter h2{font-size:24px;}
    .newsletter form{flex-direction:column;}
    .newsletter input[type=email],.newsletter button{width:100%;}
    .about-highlights{width:94%;margin-bottom:30px;}
}

@media(max-width:480px){
    .hero-content h1{font-size:29px;}
    .hero-content p{font-size:14px;}
    .category-card{flex-basis:170px;}
    .category-image{height:115px;}
    .home-search-slide{height:200px;}
    .home-search-buttons a,.save-btn{font-size:10px;padding:7px 8px;}
    .about-highlights span{font-size:11px;padding:7px 9px;}
}

@media (max-width: 600px) {

    .search-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .search-item p {
        display: none !important;
    }

}

/* Prevent accidental underline on homepage cards/buttons */
.category-card,
.trend-card,
.top-card,
.state-card,
.home-search a,
.view-all-btn,
.travel-tip-card{ text-decoration:none; }