*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #faf6f0;
    --orange: #e85d04;
    --dark-orange: #c44e02;
    --brown: #1a0a00;
    --text-dark: #1a0a00;
    --text-muted: #6b5a4e;
    --white: #ffffff;
    --brand-color: #b8431a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--orange);
}

.btn-book {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}
.btn-book:hover {
    background: var(--dark-orange);
    transform: translateY(-1px);
}

/* ===== HERO ===== */

.hero-left {
    padding: 80px 60px 80px 80px;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7ed;
    border: 1px solid #fddcb5;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}
.hero-badge::before {
    content: "✦";
    font-size: 10px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--orange);
    margin-bottom: 4px;
}

.hero-subtitle {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--orange);
}
.btn-primary:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #d4c4b8;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-stats {
    padding: 15px;
    border-top: 1px solid #e8ddd5;
    background-color: #ffe5da;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
}
/* --- Hero Section Basic Layout --- */
.hero {
    min-height: 600px;
    padding-top: 42px;
    overflow: hidden;
}

.hero-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 350px;
    background: rgb(255 246 242);
}

.hero-right {
    position: relative; /* কার্ডগুলো ইমেজের উপর ভাসানোর জন্য মাস্ট */
    height: 600px; /* ব্যানারের হাইট কন্ট্রোল করবে */
    overflow: hidden;
    width: 100%;
    min-width: 350px;
}

/* --- Main Background Image --- */
.hero-img-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Image Overlay/Gradient */
.hero-img-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    z-index: 1;
}

/* --- Tour Cards Strip Container --- */
.tour-cards-strip {
    position: absolute;
    bottom: 40px; /* নিচ থেকে পজিশন */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    width: 95%;
    justify-content: center;
    z-index: 10; /* ওভারলে এর উপরে থাকবে */
}

/* --- Custom Tour Card (ছবির মতো ডিজাইন) --- */
.custom-tour-card {
    background: #ffffff !important; /* একদম স্বচ্ছ সাদা */
    border-radius: 12px;
    padding: 12px;
    width: 320px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* প্রিমিয়াম শ্যাডো */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.custom-tour-card:hover {
    transform: translateY(-5px);
}

/* কার্ডের ভেতরের কন্টেন্ট লেআউট */
.card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Top Badge (Featured/Popular) --- */
.card-top-badge {
    color: #e85d04; /* অরেঞ্জ কালার */
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    font-size: 14px;
    color: #e85d04;
}

/* --- Card Image Box --- */
.card-img-box {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Text Information --- */
.card-info-box {
    display: flex;
    flex-direction: column;
}

.tour-name {
    font-size: 14px;
    color: #b04b1d; /* ছবির মতো ব্রাউন-অরেঞ্জ */
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.tour-price {
    font-size: 18px;
    color: #b04b1d;
    font-weight: 900;
    margin: 0;
}

.tour-note {
    font-size: 10px;
    color: #666;
    margin: 0;
}

footer {
    background: #0d0600;
    padding: 60px 80px 32px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-name {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 220px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.social-btn:hover {
    background: var(--orange);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--orange);
}

.footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-address a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
