
:root {
--ocean: #1A6B8A; --coral: #C8503E; --gold: #E8B84B;
--cream: #F5EEE0; --deep: #1B2B1E; --red: #B5291C;
--jungle: #4A7C59; --sand: #D4B483; --white: #FAFAF7;
--ink: #1C1C1C; --muted: #6B6B5E; --black: #0F1A12;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }
hr{border-color:rgba(0,0,0,0.06); border-width:1px;}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
}
nav.dark,
nav.scrolled { background: rgba(27,43,30,0.96); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--deep) !important; padding: 0.55rem 1.4rem; border-radius: 2px; }
.nav-cta:hover { background: var(--coral) !important; color: var(--white) !important; }
.nav-toggle{display:none;}

nav .show-search{font-size:25px; cursor:pointer;}
nav.dark a,
nav.dark .nav-toggle,
nav.dark .nav-logo {color: var(--white)!important;}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--black); padding: 4rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; justify-items: center;}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 1rem; text-decoration: none;}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a {color: rgba(255,255,255,0.5);}

/* SHARED */
section { padding: 7rem 4rem; }
.section-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--deep); line-height: 1.2; margin-bottom: 1.2rem; }
.section-title em { font-style: italic; color: var(--coral); }
.section-body { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 540px; }
.btn-primary { background: var(--gold); color: var(--deep); padding: 0.9rem 2.4rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-primary:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); padding: 0.9rem 2.4rem; border: 1px solid rgba(255,255,255,0.5); text-align:center; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost--pill{text-transform: capitalize; background:transparent;color:var(--gold);border:1px solid var(--gold);border-radius:999px;padding:.5rem 2rem;transition:.25s}
.btn-ghost--pill:hover{background:var(--gold);color:#fff}

.btn-white--pill{text-transform: capitalize; background:#fff;color:var(--deep);border:1px solid #fff;border-radius:999px;padding:.5rem 2rem;transition:.25s}
.btn-white--pill:hover{background:var(--gold); color:#fff}

.btn-brown--pill{text-transform: capitalize; background:#433c37;color:#fff;border:1px solid #fff;border-radius:999px;padding:.5rem 2rem;transition:.25s}
.btn-brown--pill:hover{background:#fff; color:var(--deep); border:1px solid #fff;}

/*Search*/
.search-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    display: none;
    padding: 1.2rem 4rem;
    background: rgba(27,43,30,1);
}

.search-box .search-wrap{display:flex; gap:5px;}
.search-box .close-search{color: var(--gold); position: absolute; z-index: 101; font-size: 50px; right: 2rem; display:none;}

.search-box input{font-size:23px; width:100%; height:50px; color:#fff; border:none; background:none; outline: none;}
.search-box input::placeholder {color:var(--gold);}
.search-box input::-ms-input-placeholder {color:var(--gold);}
.search-box input::-ms-input-placeholder {color:var(--gold);}

/* HOME */
/* HERO */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(46,134,171,0.15) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 900; line-height: 1.0; color: var(--white); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.9s 0.5s forwards; }
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 300; color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 620px; margin: 0 auto 2.5rem; opacity: 0; animation: fadeUp 0.9s 0.7s forwards; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.9s forwards; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll svg { width: 18px; }

/* STATS */
.stats-strip { background: var(--deep); color: var(--white); display: flex; justify-content: center; overflow: hidden; }
.stat-item { flex: 1; max-width: 220px; padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem; }

/* WHY */
#why { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 7rem 6rem; }
.why-visual { position: relative; height: 560px; }
.why-img-main { position: absolute; top: 0; left: 0; width: 72%; height: 78%; background: center/cover; border-radius: 3px; box-shadow: 20px 20px 0 var(--sand); }
.why-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 50%; background: center/cover; border-radius: 3px; border: 4px solid var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.why-badge { position: absolute; top: 52%; left: 58%; transform: translate(-50%, -50%); background: var(--deep); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; padding: 1rem 1.4rem; text-align: center; line-height: 1.3; z-index: 2; }
.why-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.why-feature { display: flex; align-items: flex-start; gap: 1rem; }
.why-icon { width: 40px; height: 40px; background: var(--deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.why-feature h4 { font-size: 0.95rem; font-weight: 500; color: var(--deep); margin-bottom: 0.2rem; }
.why-feature p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* QUOTE */
.quote-break { background: var(--coral); padding: 5rem 4rem; text-align: center; }
.quote-text { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-style: italic; font-weight: 400; color: var(--white); max-width: 780px; margin: 0 auto; line-height: 1.5; }
.quote-attr { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 1.5rem; }

/* EXPERIENCES */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.exp-card { padding: 2rem; border: 1px solid rgba(0,0,0,0.07); border-radius: 3px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.exp-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--coral); transform: scaleX(0); transition: transform 0.3s; }
.exp-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.exp-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.exp-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* BLOG PREVIEW */
#blog { background: var(--white); padding: 7rem 4rem; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.blog-link { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--coral); padding-bottom: 2px; transition: color 0.2s; }
.blog-link:hover { color: var(--red); border-color: var(--red); }
.blog-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; }
.blog-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.blog-img { width: 100%; aspect-ratio: 16/10; border-radius: 2px; background: var(--sand); overflow: hidden; }
.blog-card:hover .blog-img-inner { transform: scale(1.04); }
.blog-img-inner { width: 100%; height: 100%; transition: transform 0.4s; background-size:cover; background-repeat:no-repeat;}
.blog-cat { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); margin-top: 1.2rem; margin-bottom: 0.5rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--deep); line-height: 1.25; margin-bottom: 0.6rem; }
.blog-card:first-child .blog-title { font-size: 1.55rem; }
.blog-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.blog-meta { font-size: 0.75rem; color: var(--sand); margin-top: 0.8rem; }

/* TESTIMONIALS */
#testimonials { background: var(--deep); padding: 7rem 4rem; }
#testimonials .section-title { color: var(--white); }
#testimonials .section-eyebrow { color: var(--gold); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.test-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 2rem; }
.test-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.test-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; }
.test-author { display: flex; align-items: center; gap: 0.8rem; }
.test-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 0.85rem; }
.test-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.test-from { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* CONTACT */
/* PAGE WRAPPER */
.page-wrapper { padding-top: 73px; min-height: 100vh; }

/* PAGE HERO STRIP */
.contact-hero {
    padding:20px 0 40px; position: relative;
    background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(26,35,50,0.75) 100%),
    center/cover;
    display: flex; align-items: center;
}
.contact-hero-content { padding: 0 5rem; }
.page-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; }
.contact-hero h1 em { font-style: italic; color: var(--gold); }
.contact-hero p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-top: 0.8rem; max-width: 480px; line-height: 1.65; }

/* MAIN LAYOUT */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; min-height: calc(100vh - 360px); }

/* LEFT PANEL */
.contact-left { background: var(--deep); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: flex-start; position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,150,62,0.1) 0%, transparent 70%); pointer-events: none; }
.contact-left::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(46,134,171,0.08) 0%, transparent 70%); pointer-events: none; }

.left-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.left-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.left-title em { font-style: italic; color: var(--gold); }
.left-body { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 2.5rem; }

.contact-infos { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.contact-info { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info h5 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-info p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.social-row { display: flex; gap: 0.75rem; margin-top: auto; padding-top: 1rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.social-btn:hover { border-color: var(--gold); background: rgba(232,184,75,0.1); }

.promise-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 1.4rem; margin-top: 2rem; }
.promise-box p { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.5); line-height: 1.6; }
.promise-box strong { color: var(--gold); font-style: normal; }

/* PLAN — FORM */
#plan {padding: 4rem 4rem;}
#plan h3{font-size: clamp(1.8rem, 4vw, 2rem);}
#plan p{ color: #a3a7ad !important;}
#plan .form-group label:not(.error){color: var(--gold) !important;}
#plan .form-group .form-control{border-radius:8px;}

/* RIGHT PANEL — FORM */
.contact-right { padding: 4rem 4.5rem; background: var(--cream); }
.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.form-header p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* TRIP TYPE SELECTOR */
.trip-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.trip-type { border: 1px solid var(--sand); border-radius: 3px; padding: 1rem; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--white); }
.trip-type:hover { border-color: var(--coral); }
.trip-type.selected { border-color: var(--deep); background: var(--deep); }
.trip-type.selected .tt-icon, .trip-type.selected .tt-label { color: var(--white); }
.tt-icon { font-size: 1.3rem; margin-bottom: 0.3rem; }
.tt-label { font-size: 0.78rem; font-weight: 500; color: var(--deep); }
.type-radio {display: none;}


/*SWIPER*/
.swiper-button-prev svg,
.swiper-button-next svg {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    color: var(--ink) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}


.swiper-button-prev::before {
    content: "<";
    font-size: 20px;
}

.swiper-button-next::before {
    content: ">";
    font-size: 20px;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
.form-group label.error, .form-group div.error, .form-group .text-danger{color:#f00; margin-top:5px;}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--sand); border-radius: 2px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink);
    background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(200,150,62,0.1); }
.form-group textarea { height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B5E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }
.form-note a { color: var(--coral); text-decoration: none; }

.form-submit-row { display: flex; align-items: center; gap: 1.5rem; }
.form-submit { background: var(--deep); color: var(--white); border: none; padding: 1rem 2.8rem; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: all 0.25s; }
.form-submit:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,150,62,0.3); }
.form-guarantee { font-size: 0.78rem; color: var(--muted); }
.form-guarantee strong { color: var(--jungle); }

/* SUCCESS STATE */
.success-state { display: none; text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-state h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--deep); margin-bottom: 0.8rem; }
.success-state p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0 auto 1.5rem; }
.success-back { display: inline-block; background: var(--deep); color: var(--white); padding: 0.8rem 2rem; border-radius: 2px; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.success-back:hover { background: var(--coral); }

/* FAQ STRIP */
.faq-strip { background: var(--white); padding: 5rem 5rem; }
.faq-strip h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--deep); margin-bottom: 2.5rem; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.faq-item { padding: 1.5rem; border: 1px solid rgba(0,0,0,0.07); border-radius: 3px; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 6px 25px rgba(0,0,0,0.08); }
.faq-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--deep); margin-bottom: 0.6rem; }
.faq-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* BLOGS */
/* PAGE HERO */
.page-hero {
    height: 420px;
    position: relative;
    background: linear-gradient(160deg, rgba(27,43,30,0.88) 0%, rgba(27,43,30,0.5) 100%), url('../../Media/1002/sea.jpg') center/cover;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
}
.page-hero-content { padding: 0 4rem 4rem; }
.page-hero-footer{padding:0 2rem 2rem; display:flex; flex-wrap:wrap; grid-gap:15px; justify-content:space-around; align-items:center; color:#fff; width:100%;}
.page-hero-footer > div{min-width:150px; line-height:1.8;}
.page-hero-footer > div p{font-size:.8rem;}
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; }
.page-title em { font-style: italic; color: var(--gold); }
.page-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(255,255,255,0.75); margin-top: 1rem; max-width: 480px; line-height: 1.6; }

/* FILTER BAR */
.filter-bar { background: var(--cream); padding: 1.2rem 4rem; display: flex; gap: 0.6rem; align-items: center; border-bottom: 1px solid var(--sand); flex-wrap: wrap; }
.filter-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-right: 0.5rem; }
.filter-btn { padding: 0.4rem 1rem; border: 1px solid var(--sand); border-radius: 20px; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--muted); cursor: pointer; text-decoration:none; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--deep); color: var(--white); border-color: var(--deep); }

/* MAIN LAYOUT */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; padding: 4rem; max-width: 1280px; margin: 0 auto; }

/* FEATURED POST */
.featured-post { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.featured-img { aspect-ratio: 4/3; border-radius: 3px; overflow: hidden; }
.featured-img-inner { width: 100%; height: 100%; background-size: cover;  background-repeat:no-repeat; transition: transform 0.5s; }
.featured-post:hover .featured-img-inner { transform: scale(1.03); }
.featured-badge { display: inline-block; background: var(--coral); color: var(--white); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 1px; margin-bottom: 1rem; }
.featured-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--deep); line-height: 1.2; margin-bottom: 1rem; }
.featured-excerpt { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.featured-meta { font-size: 0.75rem; color: var(--sand); margin-bottom: 1.5rem; }
.read-more { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--coral); padding-bottom: 2px; transition: color 0.2s; }
.read-more:hover { color: var(--red); border-color: var(--red); }

/* POST GRID */
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.post-card { text-decoration: none; color: inherit; display: block; }
.post-img { aspect-ratio: 16/10; border-radius: 2px; overflow: hidden; background: var(--sand); margin-bottom: 1rem; }
.post-img-inner { width: 100%; height: 100%; transition: transform 0.4s; background-size:cover; background-repeat:no-repeat;}
.post-card:hover .post-img-inner { transform: scale(1.04); }
.post-cat { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.4rem; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep); line-height: 1.3; margin-bottom: 0.5rem; }
.post-card:hover .post-title { color: var(--coral); }
.post-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.post-meta { font-size: 0.72rem; color: var(--sand); margin-top: 0.6rem; }

/* SIDEBAR */
.sidebar { padding-top: 0; }
.sidebar-widget { background: var(--cream); border-radius: 3px; padding: 1.8rem; margin-bottom: 1.5rem; }
.sidebar-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--sand); }
.sidebar-tip-list { list-style: none; }
.sidebar-tip-list li { padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.87rem; color: var(--muted); cursor: pointer; }
.sidebar-tip-list li:hover { color: var(--coral); }
.sidebar-tip-list li:last-child { border-bottom: none; }
.sidebar-tip-list li::before { content: '→ '; color: var(--coral); }
.sidebar-tip-list a { text-decoration: none; color: inherit; transition: color 0.2s; }
.sidebar-tip-list a:hover { color: var(--coral); }

/* NEWSLETTER WIDGET */
.newsletter-widget { background: var(--deep); border-radius: 3px; padding: 1.8rem; margin-bottom: 1.5rem; }
.newsletter-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.6rem; }
.newsletter-widget p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.2rem; }
.newsletter-widget input { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; background: rgba(255,255,255,0.05); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; margin-bottom: 0.7rem; outline: none; }
.newsletter-widget input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-widget button { width: 100%; padding: 0.75rem; background: var(--gold); color: var(--deep); border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.newsletter-widget button:hover { background: var(--coral); color: var(--white); }

/* CTA WIDGET */
.cta-widget { background: var(--coral); border-radius: 3px; padding: 1.8rem; text-align: center; }
.cta-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.6rem; font-style: italic; }
.cta-widget p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.2rem; }
.cta-widget a { display: block; background: var(--white); color: var(--coral); padding: 0.8rem; border-radius: 2px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.cta-widget a:hover { background: var(--deep); color: var(--white); }

/* PAGINATION */
.pagination { display: flex; gap: 0.5rem; align-items: center; margin-top: 3rem; }
.page-num { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--sand); border-radius: 2px; font-size: 0.85rem; color: var(--muted); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.page-num:hover, .page-num.active { background: var(--deep); color: var(--white); border-color: var(--deep); }

/* BLOG DETAIL */
/* POST HERO */
.post-hero {
    height: 520px; position: relative;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    display: flex; align-items: flex-end; padding-top: 80px;
}
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,43,30,0.95) 0%, rgba(27,43,30,0.18) 60%); }
.post-hero-content { position: relative; z-index: 2; padding: 0 5rem 3.5rem; max-width: 900px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem;}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.post-cat-tag { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.post-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.post-hero-meta { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.post-author { display: flex; align-items: center; gap: 0.6rem; }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--white); }
.author-name { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.meta-divider { color: rgba(255,255,255,0.2); }
.post-date { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.read-time { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* PROGRESS BAR */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 200; transition: width 0.1s; width: 0%; }

/* ARTICLE LAYOUT */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 5rem; padding: 5rem 5rem 5rem; max-width: 1280px; margin: 0 auto; }

/* ARTICLE CONTENT */
.article-content { min-width: 0; }
.article-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 300; color: var(--deep); line-height: 1.8; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--sand); }
.article-content p { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; line-height: 1.88; color: #2a2a2a; margin-bottom: 1.5rem; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; color: var(--deep); margin: 1rem 0; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--deep); margin: 1.8rem 0 0.7rem; }
.article-content img{width:100%;}
.article-content ul, .article-content ol {
    list-style-position: outside;
    padding-left: 40px;
    margin-bottom:15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    line-height: 1.88;
    color: #2a2a2a;
}

.tip-box { background: var(--cream); border-left: 3px solid var(--coral); padding: 1.2rem 1.5rem; margin: 1.8rem 0; border-radius: 0 3px 3px 0; }
.tip-box strong { color: var(--coral); }
.tip-box p { font-size: 0.95rem !important; margin: 0 !important; color: var(--muted) !important; line-height: 1.65 !important; }

.warning-box { background: #fff8f5; border-left: 3px solid var(--red); padding: 1.2rem 1.5rem; margin: 1.8rem 0; border-radius: 0 3px 3px 0; }
.warning-box strong { color: var(--red); }
.warning-box p { font-size: 0.95rem !important; margin: 0 !important; color: var(--muted) !important; }

.pull-quote { background: var(--deep); padding: 2rem 2.5rem; margin: 2.5rem 0; border-radius: 3px; }
.pull-quote p { font-family: 'Playfair Display', serif !important; font-size: 1.3rem !important; font-style: italic; color: var(--gold) !important; line-height: 1.6 !important; margin: 0 !important; }

.article-img { width: 100%; border-radius: 3px; margin: 2rem 0; overflow: hidden; }
.article-img-inner { width: 100%; height: 320px; background: url('https://images.unsplash.com/photo-1612889038506-3a8b6e9e03a9?w=1000&q=80') center/cover; }
.article-img figcaption { font-size: 0.78rem; color: var(--muted); padding: 0.6rem 0; font-style: italic; }

/* TAGS + SHARE */
.article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--sand); }
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tag { padding: 0.3rem 0.9rem; background: var(--cream); border-radius: 20px; font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: all 0.2s; }
.tag:hover { background: var(--deep); color: var(--white); }
.share-row { display: flex; align-items: center; gap: 1rem; }
.share-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.share-btn { padding: 0.4rem 1rem; border: 1px solid var(--sand); border-radius: 2px; font-size: 0.8rem; color: var(--muted); cursor: pointer; background: transparent; transition: all 0.2s; }
.share-btn:hover { background: var(--deep); color: var(--white); border-color: var(--deep); }

/* RELATED POSTS */
.related-posts { background: var(--cream); padding: 4rem 5rem; }
.related-posts h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--deep); margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.related-card { text-decoration: none; color: inherit; }
.related-img { aspect-ratio: 16/10; border-radius: 2px; overflow: hidden; background: var(--sand); margin-bottom: 1rem; }
.related-img-inner { width: 100%; height: 100%; transition: transform 0.4s; background-size:cover; background-repeat:no-repeat;}
.related-card:hover .related-img-inner { transform: scale(1.04); }
.related-cat { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.3rem; }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--deep); line-height: 1.3; }
.related-card:hover .related-title { color: var(--coral); }
.related-meta { font-size: 0.72rem; color: var(--sand); margin-top: 0.4rem; }

/* POST SIDEBAR */
.post-sidebar { padding-top: 0.5rem; }
.sidebar-form input, .sidebar-form textarea, .sidebar-form select { width: 100%; padding: 0.7rem 0.9rem; margin-bottom: 0.8rem; border: 1px solid var(--sand); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; background: var(--white); color: var(--ink); transition: border-color 0.2s; outline: none; }
.sidebar-form input:focus, .sidebar-form textarea:focus { border-color: var(--coral); }
.sidebar-form textarea { height: 100px; resize: vertical; }
.sidebar-form button { width: 100%; padding: 0.8rem; background: var(--deep); color: var(--white); border: none; border-radius: 2px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s; }
.sidebar-form button:hover { background: var(--coral); }
#sidebar-success { display: none; color: var(--jungle); font-size: 0.85rem; margin-top: 0.8rem; text-align: center; }

.toc-list { list-style: none; counter-reset: toc; }
.toc-list li { counter-increment: toc; padding: 0.55rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.6rem; }
.toc-list li:last-child { border-bottom: none; }
.toc-list li::before { content: counter(toc, decimal-leading-zero); color: var(--gold); font-weight: 600; font-size: 0.75rem; min-width: 22px; }
.toc-list a { text-decoration: none; color: inherit; transition: color 0.2s; }
.toc-list a:hover { color: var(--coral); }

.dark-widget { background: var(--deep) !important; }
.dark-widget h3 { color: var(--gold) !important; border-color: rgba(255,255,255,0.1) !important; }
.dark-widget p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 1.2rem; }
.dark-widget a { display: block; text-align: center; background: var(--gold); color: var(--deep); padding: 0.8rem; border-radius: 2px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.dark-widget a:hover { background: var(--coral); color: var(--white); }

/* PACKAGE LAYOUT */
.w-100{width:100%;}
.pd-0{padding:0;}
.mb-1{margin-bottom:1rem;}
.mb-3{margin-bottom:3rem;}
.bg-deep{background: var(--deep);}
.bg-cream{background: var(--cream);}
.text-white{color: #fff !important;}
.text-gold{color: var(--gold);}
.text-steppe{color: var(--coral);}
.text-upper{text-transform:uppercase;}
.text-right{text-align:right;}
.text-center{text-align:center;}
.justify-content-center{justify-content: center;}

.package-layout{max-width: 1280px;  margin: 0 auto; display: grid; grid-template-columns:1fr; }
.package-layout.top{padding: 7rem 1.5rem 3rem;}
.package-layout h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--deep); line-height: 1.2;}
.package-layout h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; color: var(--deep); margin: 1rem 0; }
.package-layout h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--deep); margin: 1.8rem 0 1rem; }

/* PACKAGE CONTENT */
.page-hero-package{height:500px; min-height:100vh; }

.package-layout{max-width:1280px;margin:0 auto;padding:1.5rem;}
.package-layout.top{padding-top:7rem;}
.package-content img{width:100%;}
.package-content p { font-size: 1rem; line-height: 1.5; margin-bottom: 1.5rem; }
.package-content ul,.package-content ol{padding-left:20px;margin-bottom:1rem;line-height:1.8;}
.package-content ul > li > ul,
.package-content ul > li > ol{margin-bottom:.5rem;}
.package-content li {font-size: 1rem;}

.package-content .breadcrumb{color:var(--deep);}
.package-content .breadcrumb a{color:inherit;text-decoration:none;}
.package-content .breadcrumb a:hover{text-decoration:underline;}

#package-list .page-hero{min-height:600px; min-height:100vh;}
#package .page-hero{min-height:600px; min-height:100vh;}

.package-itinerary{border-top:1px solid; padding:1rem 0;}
.package-itinerary:last-child{border-bottom:1px solid; }
.package-itinerary p { font-size: 1rem; line-height: 1.5; margin-bottom: 1.5rem; }
.package-layout h2 { margin:.5rem 0 1rem 0; }

.package-list > .row{border-bottom:1px solid; padding:2rem 0;}
.package-list > .row:last-child{border-bottom:none;}
.package-list h3{margin-top:0;}
.package-cat{display:flex; flex-wrap:wrap; grid-gap:10px; align-items:center; margin-bottom:1rem;}
.package-cat .filter-btn{border:1px solid var(--muted);}

.package-more{margin-top:10px;}
.package-more .card {
    aspect-ratio: 4 / 5; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
    justify-content: end;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.package-more .card h3{color:#fff;}
.package-more .filter-btn:not(:hover){background:#433c37; color:#fff;}

.package-layout .text-expand{margin-bottom:10px; cursor:pointer;}
.package-itinerary.active .collapse-content {
    max-height: 100%;
}
.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
.collapse-toggle {
    cursor: pointer;
    display:flex;
    justify-content:space-between;
}
.icon-wrapper {
    display: flex;
    text-align:center;
}

.icon {
    font-size: 1.8rem;
    font-weight: normal;
    background: #fff;
    border-radius: 5px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    transform: translateY(-1px);
}
.icon-minus { display: none;}
.package-itinerary.active .icon-plus {display: none;}
.package-itinerary.active .icon-minus {display: inline;}

.icon-list > ul {padding-left:0; list-style-type:none;}
.icon-list > ul > li > ul,
.icon-list > ul > li > ol{padding-left:40px !important;}
.icon-list.check > ul > li::before  {content: "✔ "; padding-right:5px; font-weight:bold;}
.icon-list.cancel > ul > li::before  {content: "✖ "; padding-right:5px; font-weight:bold;}


/* RESPONSIVE */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    #why { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .why-visual { height: 300px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-left { padding: 3rem 2rem; }
    .faq-grid { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .article-layout { grid-template-columns: 1fr; gap: 3rem; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .contact-hero-content { padding: 0 1.5rem; }
    .contact-right { padding: 3rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .trip-types { grid-template-columns: repeat(3, 1fr); }
    .faq-strip { padding: 3rem 1.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; align-items: flex-start; }
    .page-hero-content { padding: 0 1.5rem 3rem; }
    .filter-bar { padding: 1rem 1.5rem; }
    .blog-layout { padding: 2rem 1.5rem; gap: 2rem; }
    .featured-post { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .post-hero-content { padding: 0 1.5rem 2.5rem; }
    .article-layout { padding: 3rem 1.5rem; }
    .related-posts { padding: 3rem 1.5rem; }
    .related-grid { grid-template-columns: 1fr; }
}

.row{display:flex; flex-wrap:wrap; margin:0 -15px;}
.row [class*="col-lg-"],
.row [class*="col-md-"]{padding: 0 15px;}
.col-lg-3 {width:25%;}
.col-lg-6 {width:50%;}
.col-lg-9 {width:75%;}
.col-lg-12 {width:100%;}

.color-red{color: var(--red);}

@media only screen and (max-width: 991.98px) {
    .stats-strip{flex-wrap: wrap; min-width: 150px;}
}


@media only screen and (max-width: 767.98px) {
    .col-md-3 {width:25%;}
    .col-md-6 {width:50%;}
    .col-md-9 {width:75%;}
    .col-md-12 {width:100%;}

    .sort-md-first{order:-1; margin-bottom:1rem;}

    #blog,
    #testimonials{padding: 5.5rem 1.5rem;}

    #plan{padding: 4rem 1.5rem;}
    
    .exp-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }

    .page-hero-footer{text-align:center;}
    .page-hero-footer > div {min-width: 105px;}

    .footer-grid { grid-template-columns: 1fr 1fr; justify-items: left;}
    .footer-grid div:first-child{grid-column:1 /span 2;}

    .footer-bottom{flex-direction:column; grid-gap:10px;}

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        min-height: 100vh;
        background: rgba(27,43,30,0.96);
        flex-direction: column;
        gap: 3rem;
        padding: 6rem 0 3rem 0;
        display: none;
    }

    .nav-links.active {display: flex;}
    .nav-links a {font-size: 1.8rem;}
    .nav-toggle { display: block; cursor: pointer; font-size: 1.5rem; color: white; }

    .search-box {width:100%; height:100%; position:fixed;}
    .search-box .search-wrap {flex-direction:column; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); gap: 50px; width: calc(100% - 4rem);}
    .search-box .search-wrap input{border-bottom:1px solid var(--gold);}
    .search-box .close-search{display: block;}
    .show-search{font-size:2.5rem !important;}
    .show-search::after {
        content: " Search guild";
        cursor:pointer;
        font-size: 1.2rem;
        vertical-align: middle;
        font-family: sans-serif;
    }
}   