@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --red: #BE2D26;
    --darkred: #8B191B;
    --cream: #EBE9E1;
    --white: #ffffff;
    --black: #000000;
    --grey: #f5f5f3;
    --mid-grey: #888;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 48px rgba(190, 45, 38, 0.18);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Thin-iF6626350c96c3e.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Thin-Italic-iF6626350c9204d.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Extralight-iF6626350c56af4.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Extralight-Italic-iF6626350c51a9c.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Light-iF6626350c6db36.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Light-Italic-iF6626350c68fe5.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Regular-iF6626350c83fdf.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Regular-Italic-iF6626350c7f4f6.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Medium-iF6626350c78103.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Medium-Italic-iF6626350c725e0.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Semibold-iF6626350c8d55c.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Semibold-Italic-iF6626350c889ba.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Bold-Italic-iF6626350c420cc.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Extrabold-iF6626350c4c856.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Extrabold-Italic-iF6626350c47867.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Heavy-iF6626350c62afa.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('font/Blauer Nue Font/Blauer-Nue-Heavy-Italic-iF6626350c5cbff.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Blauer Nue', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Blauer Neue fallback: use a bold geometric look via CSS */
.font-primary {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}
p{
      font-family: "Noto Sans", sans-serif!important;

}
/* ===== PAGE MANAGEMENT ===== */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow var(--transition);
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 32px;
}

.logo-bar {
    width: 5px;
    border-radius: 1px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    transition: height var(--transition);
}

.logo-bar:nth-child(1) {
    height: 32px;
    background: var(--darkred);
}

.logo-bar:nth-child(2) {
    height: 26px;
    background: #A52020;
}

.logo-bar:nth-child(3) {
    height: 20px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
}

.logo-bar:nth-child(4) {
    height: 15px;
    background: #CC4040;
}

.logo-bar:nth-child(5) {
    height: 10px;
    background: #DD5555;
}

.logo-bar:nth-child(6) {
    width: 2px;
    height: 32px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
}

.logo-bar:nth-child(7) {
    width: 2px;
    height: 22px;
    background: #CC4040;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.04em;
}

.logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: var(--mid-grey);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #000000ab;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    background: none;
}

.nav-link:hover {
    background: var(--grey);
    color: var(--red);
}

.nav-link.active {
    color: var(--red);
    font-weight: 600;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 6px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--darkred);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(190, 45, 38, 0.35);
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 32px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
}

.mobile-menu .nav-cta {
    margin-top: 16px;
    justify-content: center;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(90deg, var(--white) 0px, var(--white) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, var(--white) 0px, var(--white) 1px, transparent 1px, transparent 60px);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-red-strip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38%;
    background: linear-gradient(135deg, var(--red), var(--darkred));
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 32px;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190, 45, 38, 0.15);
    border: 1px solid rgba(190, 45, 38, 0.3);
    color: #ff8a82;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    text-align: center;
}

.hero-label i {
    font-size: 9px;
}

.hero-title {
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    text-align: center;
}

.hero-title span {
    color: var(--red);
}

.hero-tagline {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 48px auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--darkred);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(190, 45, 38, 0.4);
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-panel-stack {
    position: relative;
    width: 340px;
    height: 300px;
}

.panel-card {
    position: absolute;
    border-radius: 4px;
    transition: transform var(--transition);
}

.panel-card:nth-child(1) {
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, #c8c8c8, #a0a0a0);
    top: 80px;
    left: 0;
    transform: rotate(-8deg);
    box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.4);
}

.panel-card:nth-child(2) {
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, var(--red), var(--darkred));
    top: 50px;
    left: 40px;
    transform: rotate(-3deg);
    box-shadow: -4px 8px 32px rgba(0, 0, 0, 0.35);
}

.panel-card:nth-child(3) {
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, #f5d060, #d4a820);
    top: 20px;
    left: 60px;
    transform: rotate(2deg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-panel-stack.fire-themed .panel-card:nth-child(1) {
    background: linear-gradient(135deg, #BE2D26, #8B191B);
}

.hero-panel-stack.fire-themed .panel-card:nth-child(2) {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.hero-panel-stack.fire-themed .panel-card:nth-child(3) {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.hero-panel-stack.color-themed .panel-card:nth-child(1) {
    background: linear-gradient(135deg, #BE2D26, #8B191B);
}

.hero-panel-stack.color-themed .panel-card:nth-child(2) {
    background: linear-gradient(135deg, #f5d060, #d4a820);
}

.hero-panel-stack.color-themed .panel-card:nth-child(3) {
    background: linear-gradient(135deg, #2a6a2a, #1a4a1a);
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 4;
}

.hero-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin: 0 20px 48px 20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-slider-nav {
        bottom: 20px;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 32px;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--mid-grey);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--grey);
}

.features-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
}

.feature-card {
    background: var(--white);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    z-index: 1;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    /* background: var(--cream); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 24px;
 
}



.feature-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.product-card-img {
    height: auto;
    position: relative;
    overflow: hidden;
    border: solid 2px #8B191B;
}

.product-card-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-body {
    padding: 28px;
}

.product-card-grade {
    display: inline-block;
    background: var(--cream);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.product-card-desc {
    font-size: 16px;
    color: var(--mid-grey);
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: gap var(--transition);
}

.product-card-link:hover {
    gap: 12px;
}

/* Color swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--border);
    cursor: pointer;
    transition: transform var(--transition);
}

.swatch:hover {
    transform: scale(1.2);
}

/* ===== WHY LAYRO ===== */
.why-section {
    background: var(--black);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item:last-child {
    border-bottom: none;
}

.why-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    min-width: 32px;
    margin-top: 3px;
}

.why-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-item-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
      font-family: "Noto Sans", sans-serif;

    line-height: 1.65;
}

.why-visual {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.specs-table td:last-child {
    color: var(--red);
    font-weight: 600;
    text-align: right;
}

.specs-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== ABOUT ===== */
.about-hero {
    background: var(--cream);
    padding: 120px 32px 60px;
}

.about-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.75;
    margin-top: 24px;
}

.about-hero-desc+.about-hero-desc {
    margin-top: 16px;
}

.about-visual-block {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-stat {
    text-align: center;
    padding: 24px;
    background: var(--grey);
    border-radius: 10px;
}

.about-stat-num {
    font-size: 40px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    color: var(--mid-grey);
    margin-top: 6px;
}

.about-content {
    padding: 80px 32px;
    background: var(--white);
}

.about-content-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.about-col-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-col-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.lab-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.lab-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.lab-image-block {
    min-height: 360px;
}

.lab-image {
    height: 100%;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.team-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 24px;
    display: grid;
    gap: 16px;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(190, 45, 38, 0.12);
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: #666;
}

.about-extra-section {
    padding: 80px 0;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.extra-card {
    background: var(--grey);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.extra-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-highlight {
    margin-top: 60px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    border-radius: 16px;
    padding: 60px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-highlight-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.about-highlight-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.about-address {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-address span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {

    .about-hero-inner,
    .about-cols,
    .about-highlight {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        padding: 40px;
    }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-hero {
    background: var(--black);
    padding: 120px 32px 80px;
    color: var(--white);
}

.product-detail-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-detail-badge {
    display: inline-block;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.product-detail-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 32px;
}

.product-detail-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    min-height: 300px;
}

.detail-section {
    padding: 80px 32px;
}

.detail-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.specs-block {
    background: var(--grey);
    border-radius: 12px;
    padding: 32px;
}

.specs-block-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    color: var(--mid-grey);
}

.spec-val {
    font-weight: 600;
    text-align: right;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.app-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
}

.app-chip:hover {
    border-color: var(--red);
    color: var(--red);
}

.app-chip i {
    color: var(--red);
    font-size: 14px;
}

.colors-section {
    background: var(--grey);
    padding: 80px 32px;
}

.colors-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.colors-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.color-cat-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.color-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.color-chip {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform var(--transition);
}

.color-chip:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.color-chip-swatch {
    height: 64px;
}

.color-chip-name {
    padding: 8px;
    font-size: 10px;
    font-weight: 600;
    background: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 32px;
    background: none;
    border: none;
    transition: color var(--transition);
}

.back-btn:hover {
    color: var(--white);
}

@media (max-width: 900px) {

    .product-detail-hero-inner,
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT ===== */
.contact-hero {
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    padding: 120px 32px 80px;
    color: var(--white);
}

.contact-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.contact-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
}

.contact-section {
    padding: 80px 32px;
    background: var(--white);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-info-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.contact-info-value a {
    color: var(--black);
    text-decoration: none;
}

.contact-info-value a:hover {
    color: var(--red);
}

.contact-form {
    background: var(--grey);
    border-radius: 16px;
    padding: 48px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(190, 45, 38, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.form-submit:hover {
    background: var(--darkred);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(190, 45, 38, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: #f0fff4;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-weight: 600;
    margin-top: 16px;
    font-size: 15px;
}

.map-section {
    padding: 0 32px 80px;
    background: var(--white);
}

.map-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.map-placeholder {
    border-radius: 16px;
    background: var(--grey);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-direction: column;
    gap: 12px;
    color: var(--mid-grey);
}

.map-placeholder i {
    font-size: 40px;
    color: var(--red);
}

.map-placeholder p {
    font-size: 14px;
}

.map-placeholder strong {
    font-size: 16px;
    color: var(--black);
}

@media (max-width: 900px) {

    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 32px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
}

.footer-tag {
    color: var(--red);
    font-weight: 600;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CALL BANNER ===== */
.call-banner {
    background: linear-gradient(135deg, var(--red), var(--darkred));
    padding: 60px 32px;
    text-align: center;
    color: var(--white);
}

.call-banner-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.call-banner-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.call-banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    padding: 14px 32px;
    background: var(--white);
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.7s ease both;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--grey);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    border-radius: 3px;
}

/* ===== UTILITY ===== */
.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.text-red {
    color: var(--red);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* ===== SIMPLE PRODUCT SLIDER ===== */
.simple-product-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slide {
    flex: 0 0 33.333%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.slide-info {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.slide-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff6b6b, var(--darkred));
}

.product-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.slide-info h3 {
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.slide-info p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.slide-btn:hover {
    background: var(--darkred);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190, 45, 38, 0.3);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: linear-gradient(
  135deg,
  #8B191B 0%,
  #A32022 30%,
  #BE2D26 60%,
  #FF1D25 100%
);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive Design for Simple Slider */
@media (max-width: 900px) {
    .simple-product-slider {
        padding: 30px 20px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slide-image img {
        max-width: 250px;
    }

    .slide-info {
        padding: 30px;
        text-align: center;
    }

    .slide-info h3 {
        font-size: 28px;
    }

    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 540px) {
    .simple-product-slider {
        padding: 20px 15px;
    }

    .slide-image img {
        max-width: 200px;
    }

    .slide-info {
        padding: 20px;
    }

    .slide-info h3 {
        font-size: 24px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ===== CLIENTS LOGO SLIDER ===== */
.clients-section {
    background: var(--grey);
    padding: 80px 32px;
}

.clients-slider {
    overflow: hidden;
    margin-top: 40px;
}

.clients-track {
    display: flex;
    width: calc(200px * 12);
    /* 6 logos + 6 duplicates */
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin: 0 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--mid-grey);
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

@media (max-width: 900px) {
    .clients-track {
        width: calc(150px * 12);
    }

    .client-logo {
        flex: 0 0 150px;
        height: 60px;
        margin: 0 15px;
    }
}

/* Brochure Button */
.nav-brochure {
      padding: 10px 35px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #8B191B;
    border: 2px solid #8B191B !important;

  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.nav-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(190, 45, 38, 0.35);
}

/* Optional premium glass feel */
.nav-brochure {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Mobile adjustments */
.mobile-menu .nav-brochure {
  justify-content: center;
  margin-top: 10px;
}