/* --- General Variables & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.bg-light {
    background-color: #f8f9fa;
}
a {
    text-decoration: none;
    transition: 0.3s ease;
}

/* --- Premium Header & Nav --- */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid #D52B1E;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 40px;
    border-radius: 5px;
}
.logo span { color: #D52B1E; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: #555;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
    color: #D52B1E;
}
.swiss-time {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 13px;
    color: #D52B1E;
    font-weight: bold;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn {
    background: #D52B1E;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}
.cta-btn:hover { background: #b02016; }

/* --- Section Typography --- */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D52B1E;
    margin: 10px auto 0;
}
.sub-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
}

/* --- Layout Grids --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.margin-bottom { margin-bottom: 40px; }

/* --- Component Cards --- */
.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body { padding: 25px; }
.category {
    font-size: 12px;
    text-transform: uppercase;
    color: #D52B1E;
    font-weight: 700;
}
.card-body h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #2c3e50;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #D52B1E;
    font-weight: 600;
}

/* --- Amazon Product Cards --- */
.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.product-card img {
    width: 100%;
    height: auto;          /* ২৫০ বাদ দিয়ে অটো করে দিন, এতে ছবির রেশিও ঠিক থাকবে */
    max-height: 200px;     /* ছবি যেন অতিরিক্ত বড় না হয়ে যায়, তাই সর্বোচ্চ হাইট ফিক্সড */
    object-fit: contain;   /* ছবিকে চারপাশ থেকে বক্সে ফিট করাবে */
    padding: 10px;         /* প্যাডিং একটু কমিয়ে দিন যাতে বক্সের ভেতর বেশি জায়গা পায় */
    display: block;
    margin: 0 auto;
}
.product-info {
    padding: 25px;
    background: #fafafa;
    border-top: 1px solid #eee;
    flex-grow: 1;
}
.affiliate-btn {
    display: block;
    text-align: center;
    background: #FF9900;
    color: #111;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}
.affiliate-btn:hover { background: #e68a00; }

/* --- Booking Cards --- */
.booking-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #D52B1E;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.booking-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.booking-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.booking-btn.hotel { background: #003580; } /* Booking.com Color */
.booking-btn.hotel:hover { background: #002252; }
.booking-btn.transport { background: #ff5722; }
.booking-btn.transport:hover { background: #e04819; }

/* --- Premium Footer --- */
footer {
    background: #222;
    color: #bbb;
    font-size: 14px;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-about { max-width: 450px; }
.footer-about h3, .footer-links h3 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #bbb; }
.footer-links ul li a:hover { color: #fff; }
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    background: #1a1a1a;
}
.disclosure {
    font-size: 11px;
    color: #777;
    margin-bottom: 8px;
}

/* --- Mobile Responsive CSS --- */
@media(max-width: 768px) {
    nav { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links { flex-direction: column; gap: 10px; }
    .hero-content h1 { font-size: 32px; }
    .container { padding: 40px 15px; }
}

/* Blog Text Fix Mode */
.article-text, .article-text p {
    display: block !important;
    visibility: visible !important;
    color: #444444 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    opacity: 1 !important;
}

main.container {
    display: block !important;
    min-height: 100vh !important;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* ট্যাবলেট স্ক্রিনে ২টা করে দেখাবে */
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr); /* মোবাইল স্ক্রিনে ১টা করে দেখাবে */
    }
}

/* ব্লগ বুকিং বক্সের স্টাইল */
.blog-booking-box {
    background-color: #f9f9f9;
    border-left: 4px solid #d92323; /* আপনার ব্র্যান্ডের লাল কালার */
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
}
.booking-box-text {
    font-weight: 500;
    color: #333;
    font-size: 15px;
    margin: 0;
}
.blog-booking-btn {
    background-color: #d92323;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-booking-btn:hover {
    background-color: #b01a1a;
    transform: translateY(-2px);
}
/* Mobile Responsive Fixes by SwissVista */
@media screen and (max-width: 768px) {
    /* পুরো বডির অতিরিক্ত ডান পাশের অংশ হাইড করার জন্য */
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    /* নেভিগেশন বার মোবাইল ফ্রেন্ডলি করার জন্য */
    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0;
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .swiss-time {
        position: static;
        margin-top: 5px;
    }

    /* গ্রিড এবং কার্ডগুলো মোবাইলে ১ কলামে দেখানোর জন্য */
    .grid-2, .gear-grid, .booking-card {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .card, .tool-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0;
    }

    /* যেকোনো ইমেজ যেন স্ক্রিনের বাইরে না যায় */
    img {
        max-width: 100%;
        height: auto;
    }
}
/* Mobile Responsive Style (For Screens under 768px) */
@media screen and (max-width: 768px) {
    nav {
        position: relative;
        justify-content: space-between;
        padding: 15px 20px;
    }

    /* মোবাইল স্ক্রিনে মেইন লিংকের লিস্টকে হাইড করে নিচে নামিয়ে আনা */
    .nav-links {
        display: none; /* ডিফল্টভাবে মেনু বন্ধ থাকবে */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
        text-align: center;
    }

    /* মেনু ওপেন হলে এই ক্লাসটি যোগ হবে */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0 !important;
    }

    /* হ্যামবার্গার টগল বাটন ডিজাইন */
    .menu-toggle {
        display: block !important;
        font-size: 24px;
        color: #111;
        cursor: pointer;
    }
}

/* ডেস্কটপে টগল বাটন হাইড রাখার জন্য */
.menu-toggle {
    display: none;
}

/* ==========================================================================
   🚨 SWISSVISTA NAVBAR MOBILE FIX (CSS-এর একদম নিচে পেস্ট করবেন)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* নেভিগেশন বারকে ফ্লেক্স ও দুই পাশে জায়গা দেওয়া */
    header nav {
        display: flex !important;
        flex-direction: row !important; /* কলাম হবে না, পাশাপাশিই থাকবে */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 20px !important;
        position: relative !important;
    }

    /* লোগো এবং ঘড়ির পজিশন ঠিক রাখা */
    .logo {
        order: 1 !important;
    }

    .swiss-time {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 15px !important;
        font-size: 12px !important;
        padding: 4px 10px !important;
    }

    /* হ্যামবার্গার বাটনটি ডানে থাকবে */
    .menu-toggle {
        display: block !important;
        order: 3 !important;
        font-size: 22px !important;
        cursor: pointer !important;
    }

    /* আসল জ্যামের জায়গা: মেনু লিস্টকে মোবাইল স্ক্রিনে পুরোপুরি হাইড ও ড্রপডাউন করা */
    .nav-links {
        display: none !important; /* ডিফল্টভাবে বন্ধ */
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        z-index: 9999 !important;
    }

    /* জাভাস্ক্রিপ্ট যখন .active ক্লাস যোগ করবে তখন মেনু খুলবে */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100% !important;
        text-align: center !important;
        margin: 10px 0 !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 8px 0 !important;
        font-size: 15px !important;
    }
}
/* ==========================================================================
   📱 SWISSVISTA NAVBAR MOBILE FIX 
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* ১. বডির ডান পাশের উপচে পড়া খালি জায়গা বন্ধ করা */
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* ২. নেভিগেশন বারকে মোবাইলে পাশাপাশি রাখা (ভাঙবে না) */
    header nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* লোগো বামে থাকবে */
    .logo {
        order: 1 !important;
    }

    /* ঘড়িটি লোগোর ঠিক পাশে সুন্দর করে বসবে */
    .swiss-time {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 15px !important;
        font-size: 12px !important;
        padding: 4px 10px !important;
        white-space: nowrap !important;
        display: block !important;
    }

    /* ৩. ইনলাইন 'display: none' কে ওভাররাইড করে মোবাইলে বাটনটি দেখানো */
    .menu-toggle {
        display: block !important; /* এটি আপনার html-এর display:none-কে কেটে বাটনটি দেখাবে */
        order: 3 !important;       /* বাটনটি একদম ডানে থাকবে */
        font-size: 24px !important;
        cursor: pointer !important;
    }

    /* ৪. মেনু লিস্টকে মোবাইল স্ক্রিনে ড্রপডাউন করা (ক্লিক করার আগে লুকিয়ে থাকবে) */
    .nav-links {
        display: none !important; 
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        z-index: 9999 !important;
    }

    /* বাটনে ক্লিক করলে মেনু খোলার জন্য ক্লাস */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100% !important;
        text-align: center !important;
        margin: 10px 0 !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 8px 0 !important;
        font-size: 16px !important;
    }
}

/* মোবাইল স্ক্রিনের জন্য জাদুকরী ফিক্স */
@media screen and (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important; /* ডান পাশের সাদা খালি জায়গা চিরতরে বন্ধ */
    }
    .menu-toggle {
        display: block !important; /* বাটন মোবাইলে দেখাবে */
    }
    .nav-links {
        display: none !important; /* নরমালি মেনু লুকানো থাকবে */
        flex-direction: column !important;
        position: absolute !important;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }
    .nav-links.active {
        display: flex !important; /* ক্লিক করলে মেনু নেমে আসবে */
    }
}

/* === Consolidated Mobile Fix === */
html,body{max-width:100%;overflow-x:hidden;}
*{box-sizing:border-box;}
img{max-width:100%;height:auto;}
@media (max-width:768px){
  [style*="min-width:320px"]{min-width:100%!important;}
  .grid-2{grid-template-columns:1fr!important;}
  .gear-grid{display:flex!important;flex-direction:column!important;}
  .card,.booking-card,.tool-box{max-width:100%!important;width:100%!important;}
}

.destination-section{
margin:70px 0;
}

.section-number{
display:inline-block;
background:#D52B1E;
color:#fff;
padding:8px 14px;
border-radius:30px;
font-weight:700;
margin-bottom:15px;
}

.article-image{
width:100%;
border-radius:12px;
margin:25px 0;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.travel-tip,
.photo-spot{
background:#f8f9fa;
padding:22px;
border-left:5px solid #D52B1E;
border-radius:10px;
margin:30px 0;
}

.info-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
margin:35px 0;
}

.info-box div{
background:#fff;
border:1px solid #eee;
padding:18px;
border-radius:10px;
text-align:center;
}

.ticket-box{
background:linear-gradient(135deg,#D52B1E,#ef5350);
padding:28px;
border-radius:12px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
color:#fff;
margin:40px 0;
flex-wrap:wrap;
}

.ticket-btn{
background:#fff;
color:#D52B1E;
padding:14px 24px;
border-radius:8px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.ticket-btn:hover{
transform:translateY(-2px);
}

.section-divider{
margin:70px 0;
border:none;
border-top:1px solid #eee;
}
