/* =====================================================================
   Farmtrac Jaipur — Modern Premium Theme
   Loaded LAST so it upgrades the legacy Bootstrap look.
   Author: redesign 2026. Uses a scoped .ft-* namespace to avoid
   clashing with the old style.css / skin CSS.
   ===================================================================== */

:root {
    --ft-red: #e4002b;
    --ft-red-dark: #b30021;
    --ft-red-soft: #fff0f2;
    --ft-ink: #14161c;
    --ft-ink-2: #2a2d36;
    --ft-muted: #6b7280;
    --ft-bg: #ffffff;
    --ft-bg-soft: #f5f6f8;
    --ft-bg-dark: #14161c;
    --ft-line: #e7e9ee;
    --ft-radius: 16px;
    --ft-radius-sm: 10px;
    --ft-shadow: 0 10px 30px rgba(20, 22, 28, .08);
    --ft-shadow-lg: 0 24px 60px rgba(20, 22, 28, .16);
    --ft-shadow-red: 0 12px 30px rgba(228, 0, 43, .28);
    --ft-display: 'Barlow Condensed', 'Oswald', sans-serif;
    --ft-body: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --ft-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */
body {
    font-family: var(--ft-body);
    color: var(--ft-ink-2);
    background: var(--ft-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.ft-scope h1, .ft-scope h2, .ft-scope h3, .ft-scope h4, .ft-scope h5,
.ft-hero h1, .ft-section-title, .ft-tractor-card .ft-t-name,
.ft-footer h4, .ft-detail h1, .ft-detail h2, .ft-detail h3 {
    font-family: var(--ft-display);
    color: var(--ft-ink);
    letter-spacing: .2px;
}

a { text-decoration: none; }

.ft-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- buttons ---------- */
.ft-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ft-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ft-ease);
    line-height: 1;
}
.ft-btn i { font-size: 15px; }
.ft-btn-primary { background: var(--ft-red); color: #fff; box-shadow: var(--ft-shadow-red); }
.ft-btn-primary:hover { background: var(--ft-red-dark); color: #fff; transform: translateY(-3px); }
.ft-btn-dark { background: var(--ft-ink); color: #fff; }
.ft-btn-dark:hover { background: #000; color: #fff; transform: translateY(-3px); }
.ft-btn-outline { border-color: var(--ft-red); color: var(--ft-red); background: transparent; }
.ft-btn-outline:hover { background: var(--ft-red); color: #fff; }
.ft-btn-light { background: #fff; color: var(--ft-ink); border-color: var(--ft-line); }
.ft-btn-light:hover { border-color: var(--ft-red); color: var(--ft-red); }
.ft-btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.ft-btn-ghost:hover { background: #fff; color: var(--ft-ink); }
.ft-btn-sm { padding: 9px 18px; font-size: 14px; }
.ft-btn-block { width: 100%; justify-content: center; }

/* =====================================================================
   HEADER
   ===================================================================== */
.ft-topbar {
    background: var(--ft-ink);
    color: #cfd2da;
    font-size: 13.5px;
}
.ft-topbar .ft-container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; flex-wrap: wrap; gap: 6px 22px; }
.ft-topbar a { color: #cfd2da; display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.ft-topbar a:hover { color: #fff; }
.ft-topbar i { color: var(--ft-red); }
.ft-topbar .ft-top-social a { width: 30px; height: 30px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.ft-topbar .ft-top-social a:hover { background: var(--ft-red); }
.ft-top-left { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-top-social { display: flex; gap: 8px; }

.ft-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(20,22,28,.06);
    transition: box-shadow .3s, padding .3s;
}
.ft-header .ft-container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 20px; }
.ft-header.is-stuck { box-shadow: 0 6px 26px rgba(20,22,28,.12); }
.ft-logo img { max-height: 56px; width: auto; transition: max-height .3s; }
.ft-header.is-stuck .ft-logo img { max-height: 48px; }

.ft-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ft-menu > li { position: relative; }
.ft-menu > li > a {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--ft-display); font-weight: 600; font-size: 17px;
    text-transform: uppercase; letter-spacing: .4px;
    color: var(--ft-ink); padding: 12px 16px; border-radius: 8px;
    transition: color .2s;
}
.ft-menu > li > a:hover, .ft-menu > li.active > a { color: var(--ft-red); }
.ft-menu > li > a .caret { font-size: 10px; opacity: .6; transition: transform .2s; }
.ft-menu > li:hover > a .caret { transform: rotate(180deg); }

.ft-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 220px; background: #fff; border-radius: 12px;
    box-shadow: var(--ft-shadow-lg); padding: 10px; list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .22s var(--ft-ease); border-top: 3px solid var(--ft-red);
}
.ft-menu > li:hover .ft-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.ft-dropdown a {
    display: block; padding: 11px 14px; border-radius: 8px;
    color: var(--ft-ink-2); font-weight: 500; font-size: 15px; transition: all .18s;
}
.ft-dropdown a:hover, .ft-dropdown a.active { background: var(--ft-red-soft); color: var(--ft-red); padding-left: 20px; }

.ft-header-cta { display: flex; align-items: center; gap: 16px; }
.ft-call { display: flex; align-items: center; gap: 12px; }
.ft-call .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--ft-red-soft); color: var(--ft-red); display: grid; place-items: center; font-size: 18px; }
.ft-call .txt small { display: block; font-size: 12px; color: var(--ft-muted); text-transform: uppercase; letter-spacing: .5px; }
.ft-call .txt a { font-family: var(--ft-display); font-size: 20px; font-weight: 700; color: var(--ft-ink); }

.ft-burger { display: none; width: 48px; height: 48px; border: none; background: var(--ft-red); border-radius: 10px; font-size: 22px; color: #fff; cursor: pointer; flex: 0 0 auto; }

/* mobile drawer */
.ft-drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1099; opacity: 0; visibility: hidden; transition: .3s; }
.ft-drawer-backdrop.open { opacity: 1; visibility: visible; }
.ft-drawer {
    position: fixed; top: 0; right: -340px; width: 320px; max-width: 88vw; height: 100%;
    background: #fff; z-index: 1100; box-shadow: -10px 0 40px rgba(0,0,0,.2);
    transition: right .35s var(--ft-ease); overflow-y: auto; padding: 22px;
}
.ft-drawer.open { right: 0; }
.ft-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--ft-line); }
.ft-drawer-head img { max-height: 46px; }
.ft-drawer-close { background: var(--ft-bg-soft); border: none; width: 40px; height: 40px; border-radius: 10px; font-size: 20px; cursor: pointer; }
.ft-drawer-menu, .ft-drawer-menu ul { list-style: none; margin: 0; padding: 0; }
.ft-drawer-menu > li { border-bottom: 1px solid var(--ft-line); }
.ft-drawer-menu a { display: block; padding: 13px 4px; font-family: var(--ft-display); font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--ft-ink); }
.ft-drawer-menu ul a { padding-left: 18px; font-size: 15px; font-weight: 500; text-transform: none; color: var(--ft-muted); }
.ft-drawer-menu a.active, .ft-drawer-menu a:hover { color: var(--ft-red); }

/* =====================================================================
   HERO
   ===================================================================== */
.ft-hero { position: relative; }
.ft-hero .carousel-item { height: min(82vh, 760px); min-height: 460px; }
.ft-hero .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.ft-hero .ft-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,11,15,.82) 0%, rgba(10,11,15,.55) 45%, rgba(10,11,15,.15) 100%);
    display: flex; align-items: center;
}
.ft-hero-inner { max-width: 640px; color: #fff; }
.ft-hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ft-red); color: #fff; font-family: var(--ft-display);
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 14px;
    padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
}
.ft-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 62px); line-height: 1.02; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; }
.ft-hero h1 span { color: var(--ft-red); }
.ft-hero p { font-size: 18px; color: #dfe1e7; margin-bottom: 28px; max-width: 520px; }
.ft-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.ft-hero .carousel-control-prev, .ft-hero .carousel-control-next { width: 56px; height: 56px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border-radius: 50%; opacity: 1; backdrop-filter: blur(4px); margin: 0 18px; border: 1px solid rgba(255,255,255,.3); }
.ft-hero .carousel-control-prev:hover, .ft-hero .carousel-control-next:hover { background: var(--ft-red); }
.ft-hero .carousel-indicators { bottom: 24px; }
.ft-hero .carousel-indicators [data-bs-target] { width: 34px; height: 5px; border-radius: 3px; }

/* quick-stat strip under hero */
.ft-quickbar { background: var(--ft-red); color: #fff; }
.ft-quickbar .ft-container { display: grid; grid-template-columns: repeat(4, 1fr); }
.ft-quickbar .qb { display: flex; align-items: center; gap: 14px; padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.18); }
.ft-quickbar .qb:last-child { border-right: none; }
.ft-quickbar .qb i { font-size: 30px; opacity: .9; }
.ft-quickbar .qb b { display: block; font-family: var(--ft-display); font-size: 26px; line-height: 1.1; margin-bottom: 3px; }
.ft-quickbar .qb span { display: block; font-size: 13.5px; opacity: .95; line-height: 1.2; }

/* =====================================================================
   SECTIONS / HEADINGS
   ===================================================================== */
.ft-section { padding: 84px 0; }
.ft-section.soft { background: var(--ft-bg-soft); }
.ft-section.dark { background: var(--ft-bg-dark); color: #cfd2da; }
.ft-section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.ft-section-head.left { margin-left: 0; text-align: left; }
.ft-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ft-red); font-family: var(--ft-display); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.ft-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--ft-red); }
.ft-section-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; text-transform: uppercase; line-height: 1.08; margin: 0 0 14px; }
.ft-section-head p { color: var(--ft-muted); font-size: 16.5px; margin: 0; }
.ft-section.dark .ft-section-title { color: #fff; }

/* =====================================================================
   TRACTOR CARDS
   ===================================================================== */
.ft-grid { display: grid; gap: 28px; }
.ft-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ft-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.ft-tractor-card {
    background: #fff; border-radius: var(--ft-radius); overflow: hidden;
    box-shadow: var(--ft-shadow); border: 1px solid var(--ft-line);
    transition: transform .3s var(--ft-ease), box-shadow .3s; display: flex; flex-direction: column;
}
.ft-tractor-card:hover { transform: translateY(-8px); box-shadow: var(--ft-shadow-lg); }
.ft-t-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(180deg,#f3f4f7,#e9ebf0); }
.ft-t-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ft-ease); }
.ft-tractor-card:hover .ft-t-media img { transform: scale(1.06); }
.ft-t-badge { position: absolute; top: 14px; left: 14px; background: var(--ft-red); color: #fff; font-family: var(--ft-display); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 12.5px; padding: 6px 13px; border-radius: 50px; }
.ft-t-badge.dark { background: rgba(20,22,28,.85); left: auto; right: 14px; }
.ft-t-quick { position: absolute; inset: auto 0 0 0; display: flex; gap: 8px; padding: 12px; justify-content: center; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent); opacity: 0; transform: translateY(10px); transition: .3s; }
.ft-tractor-card:hover .ft-t-quick { opacity: 1; transform: translateY(0); }
.ft-t-quick a { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--ft-ink); display: grid; place-items: center; font-size: 15px; transition: .2s; }
.ft-t-quick a:hover { background: var(--ft-red); color: #fff; }

.ft-t-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.ft-t-seg { font-size: 13px; color: var(--ft-red); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }
.ft-t-name { font-size: 23px; font-weight: 700; margin: 4px 0 14px; line-height: 1.12; }
.ft-t-name a { color: var(--ft-ink); }
.ft-t-name a:hover { color: var(--ft-red); }
.ft-t-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 18px; padding: 14px 0; border-top: 1px solid var(--ft-line); border-bottom: 1px solid var(--ft-line); }
.ft-t-specs .sp { text-align: center; }
.ft-t-specs .sp i { color: var(--ft-red); font-size: 18px; }
.ft-t-specs .sp b { display: block; font-family: var(--ft-display); font-size: 18px; color: var(--ft-ink); line-height: 1.1; margin-top: 4px; }
.ft-t-specs .sp span { font-size: 11.5px; color: var(--ft-muted); text-transform: uppercase; letter-spacing: .4px; }
.ft-t-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ft-t-price small { display: block; font-size: 11.5px; color: var(--ft-muted); text-transform: uppercase; letter-spacing: .5px; }
.ft-t-price b { font-family: var(--ft-display); font-size: 20px; color: var(--ft-ink); }

/* =====================================================================
   ABOUT / SPLIT
   ===================================================================== */
.ft-split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.ft-split .ft-split-media { position: relative; }
.ft-split .ft-split-media img { width: 100%; border-radius: var(--ft-radius); box-shadow: var(--ft-shadow-lg); }
.ft-split .ft-split-media .badge-float { position: absolute; bottom: -22px; right: -14px; background: var(--ft-red); color: #fff; padding: 20px 26px; border-radius: 14px; box-shadow: var(--ft-shadow-red); }
.ft-split .badge-float b { font-family: var(--ft-display); font-size: 40px; line-height: 1; display: block; color: #fff; }
.ft-split .badge-float span { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: #fff; font-weight: 600; opacity: 1; }
.ft-split .legacy-content :is(h1,h2,h3) { font-family: var(--ft-display); text-transform: uppercase; color: var(--ft-ink); }
.ft-split .legacy-content p { color: var(--ft-muted); line-height: 1.8; }

/* =====================================================================
   ADVANTAGES / FEATURE CARDS
   ===================================================================== */
.ft-feature { background: #fff; border-radius: var(--ft-radius); padding: 34px 28px; box-shadow: var(--ft-shadow); border: 1px solid var(--ft-line); transition: .3s var(--ft-ease); text-align: center; height: 100%; }
.ft-feature:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--ft-shadow-lg); }
.ft-feature .ico { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 20px; background: var(--ft-red-soft); color: var(--ft-red); display: grid; place-items: center; font-size: 34px; transition: .3s; }
.ft-feature:hover .ico { background: var(--ft-red); color: #fff; transform: rotate(-6deg); }
.ft-feature h4 { font-family: var(--ft-display); font-size: 22px; text-transform: uppercase; margin: 0 0 10px; }
.ft-feature h4 a { color: var(--ft-ink); }
.ft-feature p { color: var(--ft-muted); font-size: 15px; margin: 0; line-height: 1.7; }

/* =====================================================================
   IMPLEMENT / SMALL CARDS
   ===================================================================== */
.ft-impl-card { background: #fff; border-radius: var(--ft-radius-sm); overflow: hidden; box-shadow: var(--ft-shadow); border: 1px solid var(--ft-line); transition: .3s var(--ft-ease); }
.ft-impl-card:hover { transform: translateY(-6px); box-shadow: var(--ft-shadow-lg); }
.ft-impl-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--ft-bg-soft); }
.ft-impl-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ft-impl-card:hover .ft-impl-media img { transform: scale(1.08); }
.ft-impl-card .cap { padding: 14px 12px; text-align: center; font-family: var(--ft-display); font-weight: 600; font-size: 17px; color: var(--ft-ink); text-transform: uppercase; }

/* =====================================================================
   PORTFOLIO
   ===================================================================== */
.ft-portfolio { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.ft-portfolio .pf { border-radius: var(--ft-radius-sm); overflow: hidden; position: relative; }
.ft-portfolio .pf img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ft-portfolio .pf:hover img { transform: scale(1.08); }
.ft-portfolio .pf::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(228,0,43,.35), transparent 60%); opacity: 0; transition: .3s; }
.ft-portfolio .pf:hover::after { opacity: 1; }
.ft-portfolio .pf.big { grid-column: span 2; grid-row: span 2; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.ft-tst { background: #fff; border-radius: var(--ft-radius); padding: 32px 28px; box-shadow: var(--ft-shadow); border: 1px solid var(--ft-line); height: 100%; display: flex; flex-direction: column; transition: transform .3s var(--ft-ease), box-shadow .3s; position: relative; }
.ft-tst:hover { transform: translateY(-6px); box-shadow: var(--ft-shadow-lg); }
.ft-tst .quote { position: absolute; top: 22px; right: 26px; color: var(--ft-red); font-size: 40px; opacity: .12; }
.ft-tst .stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.ft-tst p { color: var(--ft-ink-2); font-size: 15.5px; line-height: 1.8; margin: 0 0 22px; flex: 1; }
.ft-tst .who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--ft-line); padding-top: 18px; }
.ft-tst .who img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ft-red-soft); }
.ft-tst .who h5 { margin: 0; font-family: var(--ft-display); font-size: 19px; color: var(--ft-ink); line-height: 1.1; }
.ft-tst .who span { font-size: 13px; color: var(--ft-red); font-weight: 500; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.ft-cta { position: relative; background: var(--ft-ink); color: #fff; overflow: hidden; }
.ft-cta::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(228,0,43,.5), transparent 70%); }
.ft-cta .ft-container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 54px 20px; flex-wrap: wrap; }
.ft-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); text-transform: uppercase; margin: 0 0 8px; }
.ft-cta p { color: #b9bcc6; margin: 0; font-size: 16px; }
.ft-cta .ft-cta-phone { font-family: var(--ft-display); font-size: 30px; color: #fff; }
.ft-cta .ft-cta-phone i { color: var(--ft-red); }

/* =====================================================================
   PAGE / SUB BANNER (inner pages)
   ===================================================================== */
.ft-page-banner { position: relative; background-size: cover; background-position: center; padding: 96px 0; text-align: center; }
.ft-page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,28,.55), rgba(20,22,28,.78)); }
.ft-page-banner .ft-container { position: relative; }
.ft-page-banner h1 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); text-transform: uppercase; margin: 0 0 12px; }
.ft-crumbs { display: flex; gap: 10px; justify-content: center; color: #dfe1e7; font-size: 14.5px; }
.ft-crumbs a { color: #dfe1e7; }
.ft-crumbs a:hover { color: var(--ft-red); }
.ft-crumbs .sep { opacity: .6; }
.ft-crumbs .active { color: var(--ft-red); }

/* =====================================================================
   TRACTOR DETAIL PAGE
   ===================================================================== */
.ft-detail { padding: 70px 0; }
.ft-detail-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.ft-detail-media { position: sticky; top: 110px; }
.ft-detail-media .main { border-radius: var(--ft-radius); overflow: hidden; box-shadow: var(--ft-shadow-lg); border: 1px solid var(--ft-line); background: #fff; }
.ft-detail-media .main img { width: 100%; display: block; }
.ft-detail-info .ft-t-seg { font-size: 14px; }
.ft-detail-info h1 { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; margin: 6px 0 10px; line-height: 1.05; }
.ft-detail-info .tagline { color: var(--ft-muted); font-size: 17px; margin-bottom: 22px; }
.ft-detail-hi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.ft-detail-hi .hi { background: var(--ft-bg-soft); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--ft-line); }
.ft-detail-hi .hi i { font-size: 24px; color: var(--ft-red); }
.ft-detail-hi .hi b { display: block; font-family: var(--ft-display); font-size: 20px; color: var(--ft-ink); line-height: 1; }
.ft-detail-hi .hi span { font-size: 12.5px; color: var(--ft-muted); text-transform: uppercase; letter-spacing: .4px; }
.ft-detail-price { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 20px; }
.ft-detail-price b { font-family: var(--ft-display); font-size: 30px; color: var(--ft-red); }
.ft-detail-price small { color: var(--ft-muted); }
.ft-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }

.ft-detail-desc { margin-top: 14px; }
.ft-detail-desc p { color: var(--ft-ink-2); line-height: 1.85; }

.ft-spec-block { margin-top: 46px; }
.ft-spec-block h2 { font-size: 28px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.ft-spec-block h2::before { content: ''; width: 6px; height: 26px; background: var(--ft-red); border-radius: 3px; }
.ft-spec-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: var(--ft-shadow); }
.ft-spec-table tr { border-bottom: 1px solid var(--ft-line); }
.ft-spec-table tr:nth-child(odd) { background: var(--ft-bg-soft); }
.ft-spec-table td { padding: 14px 18px; font-size: 15px; }
.ft-spec-table td:first-child { font-weight: 600; color: var(--ft-ink); width: 45%; }
.ft-spec-table td:last-child { color: var(--ft-ink-2); }

.ft-feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ft-feature-list li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--ft-line); border-radius: 10px; padding: 14px 16px; }
.ft-feature-list li i { color: var(--ft-red); margin-top: 3px; }

/* related */
.ft-related { padding: 70px 0; background: var(--ft-bg-soft); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.ft-footer { background: var(--ft-bg-dark); color: #a7abb6; padding: 70px 0 0; }
.ft-footer .ft-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; }
.ft-footer h4 { color: #fff; font-family: var(--ft-display); font-size: 20px; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 22px; position: relative; padding-bottom: 12px; }
.ft-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--ft-red); border-radius: 2px; }
.ft-footer .foot-logo { max-height: 54px; margin-bottom: 18px; }
.ft-footer p { line-height: 1.8; font-size: 14.5px; }
.ft-footer ul { list-style: none; margin: 0; padding: 0; }
.ft-footer .foot-links li { margin-bottom: 11px; }
.ft-footer .foot-links a { color: #a7abb6; transition: .2s; display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; }
.ft-footer .foot-links a::before { content: '\203A'; color: var(--ft-red); font-size: 18px; line-height: 1; }
.ft-footer .foot-links a:hover { color: #fff; padding-left: 4px; }
.ft-footer .foot-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14.5px; line-height: 1.6; }
.ft-footer .foot-contact li i { color: var(--ft-red); font-size: 17px; margin-top: 3px; }
.ft-footer .foot-contact a { color: #a7abb6; }
.ft-footer .foot-contact a:hover { color: #fff; }
.ft-foot-social { display: flex; gap: 10px; margin-top: 18px; }
.ft-foot-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; display: grid; place-items: center; transition: .25s; }
.ft-foot-social a:hover { background: var(--ft-red); transform: translateY(-3px); }
.ft-footer .foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 13.5px; }
.ft-footer .foot-bottom a { color: var(--ft-red); }

/* floating helpers */
.ft-fab { position: fixed; right: 20px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.ft-fab a, .ft-fab button { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 22px; box-shadow: var(--ft-shadow-lg); border: none; cursor: pointer; transition: transform .2s; }
.ft-fab a:hover, .ft-fab button:hover { transform: scale(1.08); }
.ft-fab .wa { background: #25d366; }
.ft-fab .call { background: var(--ft-red); }
.ft-fab .top { background: var(--ft-ink); opacity: 0; visibility: hidden; }
.ft-fab .top.show { opacity: 1; visibility: visible; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ft-ease), transform .7s var(--ft-ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
    .ft-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
    .ft-footer .ft-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 991px) {
    .ft-menu, .ft-header-cta .ft-call { display: none; }
    .ft-burger { display: grid; place-items: center; margin-left: auto; }
    .ft-header .ft-container { min-height: 72px; }
    .ft-grid.cols-3, .ft-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .ft-split, .ft-detail-grid { grid-template-columns: 1fr; gap: 34px; }
    .ft-detail-info h1 { margin-top: 0; }
    .ft-detail-media { position: static; }
    .ft-detail-desc, .ft-spec-block .ft-grid { grid-template-columns: 1fr !important; }
    .ft-quickbar .ft-container { grid-template-columns: repeat(2, 1fr); }
    .ft-quickbar .qb { padding: 16px 12px; }
    .ft-quickbar .qb i { font-size: 24px; }
    .ft-quickbar .qb:nth-child(2) { border-right: none; }
    .ft-quickbar .qb:nth-child(1), .ft-quickbar .qb:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.18); }
    .ft-portfolio { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 640px) {
    .ft-section { padding: 58px 0; }
    .ft-grid.cols-3, .ft-grid.cols-4 { grid-template-columns: 1fr; }
    .ft-footer .ft-foot-grid { grid-template-columns: 1fr; }
    .ft-feature-list { grid-template-columns: 1fr; }
    .ft-detail-hi { grid-template-columns: 1fr; }
    .ft-hero .ft-hero-overlay { background: linear-gradient(180deg, rgba(10,11,15,.5), rgba(10,11,15,.85)); }
    .ft-hero .carousel-control-prev, .ft-hero .carousel-control-next { display: none; }
    .ft-hero h1 { font-size: 34px; }
    .ft-portfolio .pf.big { grid-column: span 2; grid-row: span 1; }
    .ft-cta .ft-container { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
    .ft-header-cta .ft-btn { display: none; }        /* keep only the burger */
    .ft-header .ft-logo img { max-height: 46px; }
    .ft-quickbar .qb b { font-size: 21px; }
    .ft-quickbar .qb span { font-size: 12px; }
}

/* =====================================================================
   HOMEPAGE v2 ENHANCEMENTS
   ===================================================================== */

/* ---- Floating USP cards (overlap hero) ---- */
.ft-usp-bar { position: relative; z-index: 6; margin-top: -70px; }
.ft-usp-bar .ft-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ft-usp-card {
    background: #fff; border-radius: 16px; box-shadow: var(--ft-shadow-lg);
    border: 1px solid var(--ft-line); padding: 24px 22px;
    display: flex; align-items: center; gap: 16px; transition: transform .3s var(--ft-ease), box-shadow .3s;
}
.ft-usp-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(20,22,28,.2); }
.ft-usp-card .ico { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 14px; background: var(--ft-red-soft); color: var(--ft-red); display: grid; place-items: center; font-size: 26px; transition: .3s; }
.ft-usp-card:hover .ico { background: var(--ft-red); color: #fff; }
.ft-usp-card b { display: block; font-family: var(--ft-display); font-size: 22px; color: var(--ft-ink); line-height: 1.05; }
.ft-usp-card span { font-size: 13.5px; color: var(--ft-muted); }

/* ---- About section (clean, curated) ---- */
.ft-about-content .ft-section-title { font-size: clamp(26px, 3vw, 38px); line-height: 1.1; margin: 0 0 16px; }
.ft-about-lead { color: var(--ft-ink-2); font-size: 16.5px; line-height: 1.8; margin: 0; }
.ft-about-sign { margin: 4px 0 24px; }
.ft-about-sign span { display: block; font-style: italic; color: var(--ft-muted); font-size: 15px; margin-bottom: 4px; }
.ft-about-sign strong { font-family: var(--ft-display); color: var(--ft-ink); font-size: 16.5px; letter-spacing: .3px; }

/* ---- About USP checklist ---- */
.ft-usp-list { list-style: none; margin: 20px 0 22px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.ft-usp-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--ft-ink-2); font-size: 15px; }
.ft-usp-list li i { color: var(--ft-red); margin-top: 3px; font-size: 15px; }
.ft-about-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Tame the legacy admin-authored about HTML so it reads cleanly */
.ft-split .legacy-content img { max-width: 130px; height: auto; float: none; border-radius: 12px; box-shadow: var(--ft-shadow); margin: 0 0 16px; }
.ft-split .legacy-content :is(h1,h2,h3) { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; margin: 0 0 14px; }
.ft-split .legacy-content p { margin: 0 0 12px; }
.ft-split .legacy-content p:last-child { margin-bottom: 0; }

/* ---- Tabbed Farm Solutions ---- */
.ft-tab-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.ft-tab-btn {
    font-family: var(--ft-display); font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    font-size: 16px; padding: 12px 30px; border-radius: 50px; border: 2px solid var(--ft-line);
    background: #fff; color: var(--ft-ink); cursor: pointer; transition: all .25s var(--ft-ease);
    display: inline-flex; align-items: center; gap: 9px;
}
.ft-tab-btn i { font-size: 15px; }
.ft-tab-btn:hover { border-color: var(--ft-red); color: var(--ft-red); }
.ft-tab-btn.active { background: var(--ft-red); border-color: var(--ft-red); color: #fff; box-shadow: var(--ft-shadow-red); }
.ft-tab-panel { display: none; }
.ft-tab-panel.active { display: block; animation: ftTabFade .45s var(--ft-ease); }
@keyframes ftTabFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 991px) {
    .ft-usp-bar { margin-top: -50px; }
    .ft-usp-bar .ft-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ft-usp-list { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .ft-usp-bar { margin-top: 24px; }
    .ft-usp-bar .ft-container { grid-template-columns: 1fr; }
    .ft-tab-btn { padding: 10px 20px; font-size: 14px; }
}

/* ============================================================
   Blog / News — listing cards, detail article, sidebar
   ============================================================ */
.ft-post-card {
    background: #fff; border-radius: var(--ft-radius, 16px); overflow: hidden;
    border: 1px solid var(--ft-line); box-shadow: var(--ft-shadow);
    display: flex; flex-direction: column; transition: transform .35s var(--ft-ease), box-shadow .35s var(--ft-ease);
}
.ft-post-card:hover { transform: translateY(-8px); box-shadow: var(--ft-shadow-lg); }
.ft-post-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(180deg,#f3f4f7,#e9ebf0); }
.ft-post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ft-ease); }
.ft-post-card:hover .ft-post-media img { transform: scale(1.06); }
.ft-chip {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--ft-red); color: #fff; font-family: var(--ft-display);
    font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    font-size: 11.5px; padding: 6px 12px; border-radius: 30px; box-shadow: var(--ft-shadow-red);
}
.ft-chip.dark { background: var(--ft-ink); box-shadow: none; }
.ft-post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ft-post-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--ft-muted); font-size: 13px; margin-bottom: 12px; }
.ft-post-meta i { color: var(--ft-red); margin-right: 5px; }
.ft-post-title { font-size: 20px; font-weight: 700; line-height: 1.24; margin: 0 0 12px; }
.ft-post-title a { color: var(--ft-ink); }
.ft-post-title a:hover { color: var(--ft-red); }
.ft-post-excerpt { color: var(--ft-muted); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.ft-post-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ft-red); font-size: 14.5px; }
.ft-post-more i { transition: transform .3s var(--ft-ease); }
.ft-post-card:hover .ft-post-more i { transform: translateX(5px); }

/* Detail layout */
.ft-article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 46px; align-items: start; }
.ft-article { background: #fff; border-radius: var(--ft-radius, 16px); overflow: hidden; border: 1px solid var(--ft-line); box-shadow: var(--ft-shadow); }
.ft-article__hero { aspect-ratio: 16 / 8; overflow: hidden; background: linear-gradient(180deg,#f3f4f7,#e9ebf0); }
.ft-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.ft-article__body { padding: 34px clamp(22px, 4vw, 48px) 46px; }
.ft-article__meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ft-muted); font-size: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--ft-line); }
.ft-article__meta i { color: var(--ft-red); margin-right: 6px; }
.ft-article__body h1, .ft-article__body h2, .ft-article__body h3 { line-height: 1.2; margin: 30px 0 14px; font-weight: 700; }
.ft-article__body h1 { font-size: clamp(26px, 3vw, 36px); margin-top: 0; }
.ft-article__body h2 { font-size: clamp(22px, 2.4vw, 28px); }
.ft-article__body h3 { font-size: 20px; }
.ft-article__body p { color: #454955; font-size: 16.5px; line-height: 1.85; margin: 0 0 18px; }
.ft-article__body ul, .ft-article__body ol { color: #454955; font-size: 16.5px; line-height: 1.85; margin: 0 0 18px; padding-left: 22px; }
.ft-article__body li { margin-bottom: 8px; }
.ft-article__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 14px 0; }
.ft-article__body blockquote { border-left: 4px solid var(--ft-red); background: var(--ft-bg-soft); padding: 18px 22px; margin: 22px 0; border-radius: 0 10px 10px 0; font-style: italic; color: var(--ft-ink); }
.ft-article__body a { color: var(--ft-red); text-decoration: underline; }
/* CTA buttons inside the article body must keep their button styling */
.ft-article__body a.ft-btn { text-decoration: none; }
.ft-article__body a.ft-btn-primary, .ft-article__body a.ft-btn-dark { color: #fff; }
.ft-article__body a.ft-btn-outline { color: var(--ft-red); }
.ft-article__body a.ft-btn-outline:hover { color: #fff; }
.ft-lead { font-size: 18.5px !important; color: var(--ft-ink) !important; font-weight: 500; }

/* Sidebar */
.ft-sidebar-card { background: #fff; border-radius: var(--ft-radius, 16px); border: 1px solid var(--ft-line); box-shadow: var(--ft-shadow); padding: 24px; margin-bottom: 26px; }
.ft-sidebar-card h4 { font-size: 18px; font-weight: 700; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--ft-red); display: inline-block; }
.ft-recent { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--ft-line); }
.ft-recent:last-child { border-bottom: 0; padding-bottom: 0; }
.ft-recent__img { width: 74px; height: 60px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; background: #eef0f4; }
.ft-recent__t { font-size: 14.5px; font-weight: 600; line-height: 1.35; color: var(--ft-ink); }
.ft-recent__t:hover { color: var(--ft-red); }
.ft-recent__d { font-size: 12.5px; color: var(--ft-muted); margin-top: 5px; }
.ft-recent__d i { color: var(--ft-red); margin-right: 4px; }

/* Pagination */
.ft-pagination { display: flex; justify-content: center; margin-top: 46px; }
.ft-pagination .pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.ft-pagination .page-item .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--ft-line); color: var(--ft-ink); font-weight: 600; background: #fff; }
.ft-pagination .page-item .page-link:hover { border-color: var(--ft-red); color: var(--ft-red); }
.ft-pagination .page-item.active .page-link { background: var(--ft-red); border-color: var(--ft-red); color: #fff; }
.ft-pagination .page-item.disabled .page-link { opacity: .5; }

@media (max-width: 991px) {
    .ft-article-wrap { grid-template-columns: 1fr; gap: 32px; }
}
