:root{
    --primary:#7a1320;
    --primary-dark:#5d0d18;
    --dark:#141414;
    --dark-2:#1c1c1c;
    --graphite:#2b2b2b;
    --muted:#7b7b7b;
    --soft:#f4f2f1;
    --white:#ffffff;
    --border:rgba(255,255,255,.08);
    --radius:22px;
    --shadow:0 14px 40px rgba(0,0,0,.14);
    --container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:#fbf9f8;
    color:#181818;
    line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.site-header{
    position:sticky;top:0;z-index:100;
    background:linear-gradient(90deg,var(--primary),#6a0f1b 60%, #530913);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.nav-wrap{
    display:flex;align-items:center;justify-content:space-between;
    gap:20px;min-height:78px;
}
.brand-logo{display:inline-flex;align-items:baseline;font-weight:800;letter-spacing:.5px}
.brand-main{color:#fff;font-size:1.5rem}
.brand-dot{color:#fff;font-size:1.5rem}
.brand-sub{color:#bababa;font-size:1.18rem;margin-left:1px}
.main-nav{display:flex;align-items:center;gap:24px}
.main-nav a{
    color:rgba(255,255,255,.92);font-weight:600;position:relative
}
.main-nav a::after{
    content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;
    background:#fff;transition:.25s ease
}
.main-nav a:hover::after{width:100%}
.header-actions{display:flex;align-items:center;gap:16px}
.lang-switcher{
    display:flex;gap:6px;padding:5px;border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.08);border-radius:999px
}
.lang-switcher a{
    color:#fff;padding:7px 11px;border-radius:999px;font-size:.82rem;font-weight:700
}
.lang-switcher a.active{background:#fff;color:var(--primary)}
.menu-toggle{display:none;background:none;border:none;padding:0;cursor:pointer}
.menu-toggle span{
    display:block;width:26px;height:3px;background:#fff;margin:5px 0;border-radius:99px
}
.btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:13px 18px;border-radius:14px;font-weight:700;border:none;cursor:pointer;
    transition:.25s ease;box-shadow:none
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark)}
.btn-outline{
    border:1px solid rgba(255,255,255,.22);color:#fff;background:rgba(255,255,255,.07)
}
.btn-dark{background:var(--dark);color:#fff}
.btn-danger{background:#c03434;color:#fff}
.btn-small{padding:8px 12px;border-radius:10px;font-size:.88rem}
.btn-block{width:100%}
.inline-link{font-weight:700;color:var(--primary)}
.hero-section{
    background:
        radial-gradient(circle at top right, rgba(122,19,32,.16), transparent 26%),
        linear-gradient(180deg, #1b1b1b 0%, #171717 100%);
    color:#fff;padding:80px 0 70px
}
.hero-grid{
    display:grid;grid-template-columns:1.25fr .75fr;gap:36px;align-items:center
}
.hero-badge{
    display:inline-flex;padding:8px 14px;border-radius:999px;
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.09);
    margin-bottom:18px;color:#dfd0d3;font-weight:700;font-size:.9rem
}
.hero-section h1{
    margin:0 0 14px;font-size:clamp(2.2rem,4vw,4.2rem);line-height:1.06;max-width:11ch
}
.hero-section p{max-width:58ch;color:#d8d1d1;font-size:1.05rem}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.hero-card{
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.08);padding:26px;border-radius:28px;
    backdrop-filter:blur(8px);box-shadow:var(--shadow)
}
.hero-stat{
    display:flex;justify-content:space-between;align-items:center;
    padding:16px 0;border-bottom:1px solid rgba(255,255,255,.08)
}
.hero-stat:last-child{border-bottom:none}
.hero-stat strong{font-size:1.8rem;color:#fff}
.hero-stat span{color:#bcbcbc}
.features-section,.tours-section,.contact-section,.listing-section,.tour-detail-section{padding:70px 0}
.section-head{
    display:flex;justify-content:space-between;align-items:end;gap:16px;margin-bottom:24px
}
.section-head h2,.page-intro h1{margin:0;font-size:clamp(1.8rem,3vw,2.7rem)}
.features-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:20px
}
.feature-card,.card,.tour-card,.empty-box{
    background:#fff;border-radius:var(--radius);box-shadow:var(--shadow)
}
.feature-card{padding:28px;border:1px solid rgba(20,20,20,.06)}
.feature-card h3{margin:0 0 10px}
.tour-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tour-card{overflow:hidden;border:1px solid rgba(20,20,20,.06)}
.tour-image{position:relative;display:block;background:#e9e3e4;aspect-ratio:4/3;overflow:hidden}
.tour-image img{width:100%;height:100%;object-fit:cover;transition:.35s ease}
.tour-card:hover .tour-image img{transform:scale(1.05)}
.tour-badge{
    position:absolute;left:14px;top:14px;background:var(--primary);color:#fff;
    padding:8px 12px;border-radius:999px;font-size:.78rem;font-weight:700
}
.tour-image-placeholder{
    width:100%;height:100%;
    background:linear-gradient(135deg,#d8d0d0,#b18b92 40%,#5c101a);
}
.tour-image-placeholder.large{aspect-ratio:16/9;border-radius:var(--radius)}
.tour-body{padding:20px}
.tour-meta,.tour-services{
    display:flex;flex-wrap:wrap;gap:10px;font-size:.88rem;color:#666
}
.tour-meta span,.tour-services span{
    padding:7px 10px;background:#f4f1f1;border-radius:999px
}
.tour-body h3{margin:14px 0 8px;font-size:1.15rem;line-height:1.3}
.tour-place{margin:0 0 16px;color:#666}
.tour-bottom{
    display:flex;justify-content:space-between;gap:16px;align-items:end;margin-top:20px
}
.tour-bottom small{display:block;color:#888}
.page-intro{
    padding:56px 0 18px;background:linear-gradient(180deg,#1b1b1b,#111);
    color:#fff
}
.page-intro p{color:#c9c1c1;max-width:60ch}
.listing-grid{display:grid;grid-template-columns:320px 1fr;gap:24px;align-items:start}
.filter-box,.admin-panel,.admin-login-box{
    background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid rgba(20,20,20,.06)
}
.filter-box{padding:22px;position:sticky;top:98px}
.filter-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.filter-toggle{display:none}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.field label{font-weight:700;color:#3b3b3b;font-size:.95rem}
.field input,.field textarea,.field select{
    width:100%;padding:13px 14px;border:1px solid #ddd;border-radius:14px;background:#fff
}
.field textarea{resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.filter-actions,.button-row,.social-row{display:flex;gap:12px;flex-wrap:wrap}
.load-more-wrap{text-align:center;margin-top:24px}
.detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:24px}
.detail-content,.detail-specs,.sticky-box{padding:26px}
.detail-content h1{margin:8px 0 10px;font-size:clamp(2rem,4vw,3.2rem);line-height:1.1}
.detail-image img{border-radius:var(--radius);box-shadow:var(--shadow)}
.spec-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.spec-grid div{
    background:#faf7f6;border:1px solid #eee;padding:16px;border-radius:18px
}
.spec-grid strong{display:block;font-size:.86rem;color:#666;margin-bottom:6px}
.price-box{
    background:linear-gradient(180deg,#1b1b1b,#141414);color:#fff;padding:18px;border-radius:20px;margin-bottom:18px
}
.price-box small{display:block;color:#c7bbbb}
.price-box strong{font-size:2rem}
.sticky-box{position:sticky;top:98px}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.contact-list p{margin:.3rem 0}
.site-footer{
    background:#131313;color:#ddd;padding-top:54px;border-top:4px solid var(--primary)
}
.footer-grid{
    display:grid;grid-template-columns:1.3fr .7fr .7fr 1fr;gap:24px
}
.site-footer h4{margin:0 0 12px;color:#fff}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin:10px 0}
.footer-links a{color:#d3d3d3}
.footer-bottom{
    display:flex;justify-content:space-between;gap:12px;align-items:center;
    padding:24px 0;margin-top:28px;border-top:1px solid rgba(255,255,255,.08)
}

/* admin */
.admin-body{background:#f5f2f1}
.admin-layout{display:grid;grid-template-columns:280px 1fr;min-height:100vh}
.admin-sidebar{
    background:linear-gradient(180deg,var(--dark),#1b1b1b);padding:28px 20px;color:#fff
}
.admin-brand{margin-bottom:26px}
.admin-nav{display:flex;flex-direction:column;gap:10px}
.admin-nav a{
    color:#eee;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.04)
}
.admin-nav a:hover{background:rgba(255,255,255,.1)}
.admin-main{padding:24px}
.admin-topbar{margin-bottom:16px}
.admin-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:18px}
.stat-card{
    background:#fff;padding:24px;border-radius:var(--radius);box-shadow:var(--shadow)
}
.stat-card span{display:block;color:#777}
.stat-card strong{font-size:2rem}
.table-head{
    display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:16px
}
.table-wrap{overflow:auto}
.admin-table{width:100%;border-collapse:collapse;min-width:780px}
.admin-table th,.admin-table td{
    padding:14px;border-bottom:1px solid #eee;text-align:left;vertical-align:top
}
.table-actions{display:flex;gap:8px}
.admin-form .form-section{
    padding:20px;background:#faf7f6;border-radius:20px;margin-bottom:18px;border:1px solid #eee
}
.field-grid-2,.field-grid-3,.field-grid-4{
    display:grid;gap:14px
}
.field-grid-2{grid-template-columns:repeat(2,1fr)}
.field-grid-3{grid-template-columns:repeat(3,1fr)}
.field-grid-4{grid-template-columns:repeat(4,1fr)}
.alert{
    padding:13px 14px;border-radius:14px;margin-bottom:14px;font-weight:700
}
.alert.error{background:#feeaea;color:#9d1b1b}
.alert.success{background:#eaf8ef;color:#13663a}
.admin-login-body{
    min-height:100vh;display:grid;place-items:center;
    background:linear-gradient(135deg,#1a1a1a,#320d14 50%,#7a1320)
}
.admin-login-box{width:min(420px,calc(100% - 28px));padding:28px}
.login-brand{justify-content:center;margin-bottom:16px}
.empty-box{padding:30px}
.whatsapp-top{white-space:nowrap}

/* mobile */
@media (max-width: 1100px){
    .tour-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid,.hero-grid,.detail-grid,.contact-grid,.listing-grid,.features-grid{
        grid-template-columns:1fr
    }
    .filter-box{position:static}
    .sticky-box{position:static}
}
@media (max-width: 860px){
    .main-nav{
        position:absolute;left:16px;right:16px;top:86px;background:#1a1a1a;
        border-radius:18px;padding:16px;display:none;flex-direction:column;align-items:flex-start
    }
    .main-nav.open{display:flex}
    .menu-toggle{display:block}
    .header-actions .btn{display:none}
    .filter-form{display:none}
    .filter-box.open .filter-form{display:block}
    .filter-toggle{
        display:inline-flex;background:#f4f0f0;border:1px solid #eee;border-radius:999px;padding:8px 14px
    }
    .admin-layout{grid-template-columns:1fr}
    .admin-sidebar{padding-bottom:12px}
    .admin-cards,.field-grid-4,.field-grid-3,.field-grid-2{grid-template-columns:1fr}
}
@media (max-width: 640px){
    .tour-grid{grid-template-columns:1fr}
    .nav-wrap{min-height:72px}
    .brand-main,.brand-dot{font-size:1.28rem}
    .brand-sub{font-size:1rem}
    .hero-section{padding:54px 0}
    .container{width:min(var(--container),calc(100% - 20px))}
    .tour-bottom,.section-head,.footer-bottom{flex-direction:column;align-items:flex-start}
    .field-row,.spec-grid{grid-template-columns:1fr}
}
/* =========================
   HOME PREMIUM PAGE
========================= */

.hero-premium {
    position: relative;
    padding: 100px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(122, 15, 29, 0.28), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03), transparent 28%),
        linear-gradient(135deg, #151515 0%, #1b1b1b 45%, #262626 100%);
    overflow: hidden;
}

.hero-premium__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.06));
    pointer-events: none;
    z-index: 1;
}

.hero-premium__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-premium__content {
    max-width: 720px;
}

.hero-premium__badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-premium__title {
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-premium__text {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
}

.hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-premium__miniinfo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-mini-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.hero-mini-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.4;
}

.hero-premium__visual {
    display: flex;
    justify-content: flex-end;
}

.hero-showcase {
    width: 100%;
    max-width: 470px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-showcase__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-showcase__brand {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-showcase__brand span {
    color: #9a9a9a;
    font-weight: 600;
}

.hero-showcase__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #7a0f1d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-showcase__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.hero-showcase__stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-showcase__stat small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.hero-showcase__stat strong {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.hero-showcase__footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 14px;
}

/* =========================
   SEARCH STRIP
========================= */

.home-search-strip {
    position: relative;
    z-index: 5;
    margin-top: -32px;
}

.home-search-strip__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
}

.home-search-strip__text h2 {
    margin: 0 0 8px;
    color: #1c1c1c;
    font-size: 24px;
    font-weight: 800;
}

.home-search-strip__text p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

/* =========================
   COMMON SECTIONS
========================= */

.features-premium,
.tours-premium,
.home-process,
.latest-tours-section,
.brand-stats,
.social-proof {
    padding: 84px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-head h2 {
    margin: 10px 0 0;
    color: #1c1c1c;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 12px 0 0;
    color: #666666;
    line-height: 1.7;
    max-width: 720px;
}

.premium-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.inline-link {
    color: #7a0f1d;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.inline-link:hover {
    color: #560b14;
    text-decoration: underline;
}

/* =========================
   FEATURE CARDS
========================= */

.features-premium__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.premium-feature-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 15, 29, 0.18);
    box-shadow: 0 22px 45px rgba(17, 17, 17, 0.08);
}

.premium-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #7a0f1d, #5f0c17);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(122, 15, 29, 0.22);
}

.premium-feature-card h3 {
    margin: 0 0 12px;
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 800;
}

.premium-feature-card p {
    margin: 0;
    color: #666666;
    line-height: 1.8;
}

/* =========================
   TOUR GRID SUPPORT
========================= */

.premium-tour-grid {
    gap: 24px;
}

.premium-tour-grid .tour-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-tour-grid .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.10);
}

.empty-state-card {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #ececec;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

.empty-state-card h3 {
    margin: 0 0 10px;
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 800;
}

.empty-state-card p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

/* =========================
   PROCESS SECTION
========================= */

.home-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(17, 17, 17, 0.08);
}

.process-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #7a0f1d, #5f0c17);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(122, 15, 29, 0.22);
}

.process-card h3 {
    margin: 0 0 12px;
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: #666666;
    line-height: 1.8;
}

/* =========================
   BRAND STATS
========================= */

.brand-stats__wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.brand-stat {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #1a1a1a, #252525);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.brand-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
}

.brand-stat span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.5;
    font-size: 14px;
}

/* =========================
   CTA PREMIUM
========================= */

.cta-premium {
    padding: 0 0 84px;
}

.cta-premium__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px;
    border-radius: 32px;
    background: linear-gradient(135deg, #7a0f1d, #2b2b2b);
    box-shadow: 0 24px 60px rgba(122, 15, 29, 0.20);
}

.cta-premium__content h2 {
    margin: 14px 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-premium__content p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.cta-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================
   SOCIAL PROOF
========================= */

.social-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.social-proof__card {
    display: block;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-proof__card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 15, 29, 0.20);
    box-shadow: 0 22px 45px rgba(17, 17, 17, 0.08);
}

.social-proof__card strong {
    display: block;
    margin-bottom: 10px;
    color: #1c1c1c;
    font-size: 20px;
    font-weight: 800;
}

.social-proof__card span {
    display: block;
    color: #666666;
    line-height: 1.7;
    word-break: break-word;
}

/* =========================
   BUTTON IMPROVEMENTS
========================= */

.btn-lg {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
}

.btn-light {
    background: #ffffff;
    color: #1c1c1c;
    border: 1px solid #ffffff;
}

.btn-light:hover {
    background: #f4f4f4;
    color: #111111;
}

.btn-dark {
    background: #1c1c1c;
    color: #ffffff;
    border: 1px solid #1c1c1c;
}

.btn-dark:hover {
    background: #111111;
    color: #ffffff;
}

/* =========================
   OPTIONAL TOUR CARD HELPERS
========================= */

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tour-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.tour-card__body {
    padding: 20px;
}

.tour-card__title {
    margin: 0 0 10px;
    color: #1c1c1c;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.tour-card__meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #444444;
    font-size: 12px;
    font-weight: 600;
}

.tour-card__price {
    margin-bottom: 16px;
    color: #7a0f1d;
    font-size: 24px;
    font-weight: 800;
}

.tour-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

@media (max-width: 1199px) {
    .social-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-premium {
        padding: 84px 0 60px;
    }

    .hero-premium__container {
        grid-template-columns: 1fr;
    }

    .hero-premium__visual {
        justify-content: flex-start;
    }

    .hero-showcase {
        max-width: 100%;
    }

    .hero-premium__miniinfo,
    .hero-showcase__body,
    .features-premium__grid,
    .home-process__grid,
    .brand-stats__wrap {
        grid-template-columns: 1fr;
    }

    .home-search-strip__wrap,
    .cta-premium__box,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .tour-grid,
    .social-proof__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-premium {
        padding: 74px 0 52px;
    }

    .hero-premium__title {
        font-size: 34px;
    }

    .hero-premium__text {
        font-size: 15px;
    }

    .hero-showcase,
    .premium-feature-card,
    .process-card,
    .social-proof__card,
    .home-search-strip__wrap,
    .cta-premium__box,
    .empty-state-card,
    .brand-stat {
        padding: 20px;
    }

    .hero-showcase__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-showcase__brand {
        font-size: 24px;
    }

    .hero-showcase__stat strong {
        font-size: 22px;
    }

    .home-search-strip {
        margin-top: -18px;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .cta-premium__content h2 {
        font-size: 26px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-premium__actions,
    .cta-premium__actions,
    .tour-card__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-premium__actions .btn,
    .cta-premium__actions .btn,
    .tour-card__actions .btn {
        width: 100%;
        text-align: center;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: #7a0f1d;
    color: #ffffff;
    border: 1px solid #7a0f1d;
}

.btn-primary:hover {
    background: #5f0c17;
    border-color: #5f0c17;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}
