/* ── RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', Arial, sans-serif;
    color: #F5F5F5;
    background: #0d0d0d;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */

.navbar-bs {
    background-color: whitesmoke !important;
    padding: 20px 40px !important;
}

.navbar-bs .container-fluid {
    padding: 0;
}

.navbar-bs .bs-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(197, 20, 37) !important;
    text-decoration: none;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-bs .bs-logo:hover {
    color: rgb(197, 20, 37) !important;
}

.navbar-bs .bs-nav {
    gap: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-right: 30px;
    align-items: center;
}

.navbar-bs .bs-link {
    color: black !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 !important;
    text-decoration: none;
    transition: 0.3s ease;
}

.navbar-bs .bs-link:hover,
.navbar-bs .bs-link:focus {
    background-color: rgb(197, 20, 37) !important;
    color: white !important;
    padding: 10px 15px !important;
}

.navbar-bs .bs-link.active,
.navbar-bs .bs-link:active {
    color: black !important;
    background-color: transparent !important;
}

.navbar-bs .bs-toggler {
    border-color: rgba(0, 0, 0, 0.3) !important;
    padding: 4px 8px;
}

.navbar-bs .bs-toggler:focus {
    box-shadow: 0 0 0 2px rgba(197, 20, 37, 0.3) !important;
}

/* ══════════════════════════════
   SMOOTH SCROLL
══════════════════════════════ */
html {
    scroll-behavior: smooth;
}

.card-container {
    scroll-margin-top: 120px;
}

/* ══════════════════════════════
   HERO VIDEO SECTION
══════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero span {
    color: rgb(197, 20, 37);
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #B3B3B3;
    max-width: 600px;
}

/* ══════════════════════════════
   SHARED BUTTON STYLES
══════════════════════════════ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: rgb(197, 20, 37);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s ease;
    border: 2px solid rgb(197, 20, 37);
}

.btn:hover {
    background: transparent;
    color: rgb(197, 20, 37);
}

/* ══════════════════════════════
   SHOPPING / OWNERSHIP TOOLS
══════════════════════════════ */
.shopping-tools {
    background: #0a0a0a;
    padding: 70px 40px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

/* faint watermark */
.shopping-tools::before {
    content: 'OWN IT';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 260px;
    color: rgba(255, 255, 255, 0.015);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
}

.shopping-tools-header {
    text-align: center;
    margin-bottom: 48px;
}

.st-label {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgb(197, 20, 37);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.st-label::before,
.st-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgb(197, 20, 37);
    opacity: 0.5;
}

.st-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
}

.st-title span {
    color: rgb(197, 20, 37);
}

/* Grid of tool cards */
.st-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.st-card {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 44px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, background 0.35s ease;
    gap: 12px;
}

/* Red bottom border reveal on hover */
.st-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: rgb(197, 20, 37);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.st-card:hover::after {
    width: 100%;
}

.st-card:hover {
    background: #161616;
    border-color: #2a2a2a;
}

/* Featured (center) card */
.st-card--featured {
    background: rgb(197, 20, 37);
    border-color: rgb(197, 20, 37);
}

.st-card--featured::after {
    background: #fff;
}

.st-card--featured:hover {
    background: #b8111e;
    border-color: #b8111e;
}

.st-card--featured .st-card-title,
.st-card--featured .st-card-sub,
.st-card--featured .st-icon,
.st-card--featured .st-arrow {
    color: #fff;
}

/* Icon */
.st-icon {
    font-size: 32px;
    color: rgb(197, 20, 37);
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.st-card:hover .st-icon {
    transform: translateY(-4px);
}

.st-card--featured .st-icon {
    color: rgba(255,255,255,0.9);
}

/* Card title */
.st-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
}

/* Card subtitle */
.st-card-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #555;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s;
}

.st-card:hover .st-card-sub {
    color: #777;
}

/* Arrow */
.st-arrow {
    margin-top: auto;
    font-size: 13px;
    color: rgb(197, 20, 37);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.st-card:hover .st-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .st-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .st-grid {
        grid-template-columns: 1fr;
    }

    .shopping-tools {
        padding: 50px 20px 60px;
    }
}

/* ══════════════════════════════
   FAT BOY HERO SECTION
══════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #0d0d0d;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgb(197, 20, 37) 30%, rgb(197, 20, 37) 70%, transparent);
    opacity: 0.5;
    z-index: 2;
}

.container-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    position: relative;
    z-index: 3;
}

.left {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 40px 0 60px;
    overflow: hidden;
}

.left::before {
    content: '114';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 320px;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    bottom: -40px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.left img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
    animation: floatIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.left img:hover {
    filter: drop-shadow(0 60px 120px rgba(197, 20, 37, 0.9));
    transform: translateY(-6px);
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
}

.series-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.series-badge span {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgb(197, 20, 37);
}

.series-badge::before,
.series-badge::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgb(197, 20, 37);
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 120px);
    line-height: 0.88;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-title .first-letter {
    color: rgb(197, 20, 37);
}

.main-title .outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    color: transparent;
    display: block;
}

.subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #333);
}

.divider-line:last-child {
    background: linear-gradient(to left, transparent, #333);
}

.divider-middle {
    width: 6px;
    height: 6px;
    background: rgb(197, 20, 37);
    transform: rotate(45deg);
}

.description {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #777;
    max-width: 420px;
    margin-bottom: 48px;
    font-style: italic;
    animation: fadeUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stats {
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}

.stat-value span {
    font-size: 20px;
    color: rgb(197, 20, 37);
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeUp 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-ghost {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
    color: #fff;
    border-color: #fff;
}

.hero-label {
    position: absolute;
    bottom: 36px;
    left: 60px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: #2a2a2a;
    text-transform: uppercase;
    z-index: 4;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   BIKES CARDS SECTION
══════════════════════════════ */
.card-container {
    background: #111;
    padding: 70px 40px;
}

.card-container .card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-container .card:hover {
    transform: translateY(-6px);
    border-color: rgb(197, 20, 37);
}

.card-container .card-img-top {
    height: 280px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.card-container .card:hover .card-img-top {
    filter: grayscale(0%);
}

.card-container .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-container .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
}

.card-container .card-text {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin: 0;
}

.btn-card {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 28px;
    background: transparent;
    color: rgb(197, 20, 37);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgb(197, 20, 37);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-card:hover {
    background: rgb(197, 20, 37);
    color: #fff;
}

/* ══════════════════════════════
   EXPERIENCE / MOTOVERSE SECTION
══════════════════════════════ */
.experience-section {
    background: #0d0d0d;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Subtle background watermark */
.experience-section::before {
    content: 'H·D';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 380px;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -10px;
    white-space: nowrap;
}

/* Top accent line */
.experience-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(197, 20, 37) 30%, rgb(197, 20, 37) 70%, transparent);
    opacity: 0.6;
}

/* ── Experience Section Heading ── */
.experience-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.exp-label {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgb(197, 20, 37);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.exp-label::before,
.exp-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgb(197, 20, 37);
    opacity: 0.5;
}

.exp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
}

.exp-title span {
    color: rgb(197, 20, 37);
}

.exp-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #555;
    letter-spacing: 1px;
    margin: 0;
}

/* Container for the cards */
.experience-container {
    position: relative;
    z-index: 2;
}

/* ── HD Cards ── */
.hd-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #1e1e1e;
    border-left: 3px solid #1e1e1e;
    transition: border-color 0.4s ease;
}

.hd-card:hover {
    border-color: rgb(197, 20, 37);
}

.hd-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: grayscale(30%) brightness(0.85);
}

.hd-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

/* Card sizes */
.hd-big-card {
    height: 440px;
}

.hd-small-card {
    height: 200px;
}

/* ── Card Overlay ── */
.hd-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 22px;
    transition: background 0.4s ease;
}

.hd-card:hover .hd-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
}

/* Tag badge (top-left) */
.hd-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: rgb(197, 20, 37);
    padding: 5px 12px;
    line-height: 1;
}

/* Bottom content block */
.hd-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hd-card:hover .hd-card-content {
    transform: translateY(0);
}

.hd-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.hd-small-card .hd-card-title {
    font-size: 20px;
}

.hd-card-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.hd-small-card .hd-card-desc {
    display: none;
}

.hd-card:hover .hd-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* CTA link */
.hd-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(197, 20, 37);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, color 0.3s, border-color 0.3s;
    width: fit-content;
}

.hd-card:hover .hd-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.hd-card-btn:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.hd-card-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.hd-card-btn:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════
   SHOP BY CATEGORY
══════════════════════════════ */
.shop-category {
    background: #0d0d0d;
    padding: 60px 0 0;
}

.shop-category-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.shop-category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 20px;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shop-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.shop-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 24px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.shop-label i {
    font-size: 12px;
}

.shop-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding: 18px 0 50px;
}

.shop-tagline {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin: 0;
}

.shop-dealer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(197, 20, 37);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 28px;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-item img {
        height: 320px;
    }

    .shop-footer-bar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background: #111;
    color: #ccc;
    font-family: 'Barlow', sans-serif;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, rgb(197, 20, 37) 0%, transparent 60%);
}

footer::before {
    content: 'HD';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.025);
    position: absolute;
    top: -20px;
    right: -20px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -8px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
}

.footer-brand .bar {
    width: 4px;
    height: 42px;
    background: rgb(197, 20, 37);
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
}

.footer-brand-tagline {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-top: 3px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: rgb(197, 20, 37);
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    max-width: 240px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.footer-col ul li {
    display: block;
    width: 100%;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.social-btn:hover {
    border-color: rgb(197, 20, 37);
    color: #fff;
    background: rgba(197, 20, 37, 0.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: #444;
    letter-spacing: 1px;
}

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

.footer-bottom-links a {
    font-size: 12px;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: rgb(197, 20, 37);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 992px) {
    .navbar-bs {
        padding: 16px 20px !important;
    }

    .navbar-bs .bs-nav {
        gap: 0;
        padding-right: 0;
    }

    .navbar-bs .bs-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #ddd;
        display: block;
        width: 100%;
    }

    .navbar-bs .bs-link:hover,
    .navbar-bs .bs-link:focus {
        padding: 12px 15px !important;
    }

    .hd-big-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .container-main {
        grid-template-columns: 1fr;
    }

    .hero-section::after {
        display: none;
    }

    .left {
        padding: 60px 30px 0;
    }

    .right {
        padding: 40px 30px 60px;
    }

    .main-title {
        font-size: 80px;
    }

    .stats {
        gap: 24px;
    }

    /* ── FOOTER FIX: single column on mobile ── */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li {
        display: block;
        width: 100%;
    }

    .footer-col ul li a {
        display: block;
    }

    .experience-section {
        padding: 60px 0 70px;
    }

    .hd-big-card {
        height: 340px;
    }

    .hd-small-card {
        height: 180px;
    }

    .hd-card-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .hd-card-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .experience-title {
        font-size: 52px;
    }
}