/* ============================================
   PRECISION METALWORKS - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --charcoal: #1A1A1A;
    --steel: #2B6CB0;
    --steel-dark: #1A4A8A;
    --orange: #E85D04;
    --orange-glow: #FF7B2C;
    --silver: #F0F4F8;
    --silver-mid: #CBD5E0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A5568;
    --text-light: #718096;
    --nav-height: 72px;
    --radius: 4px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02rem;
    text-transform: none !important
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === UTILITY === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-steel {
    background: var(--steel);
    color: var(--white);
}

.btn-steel:hover {
    background: var(--steel-dark);
    transform: translateY(-2px);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--charcoal);
    z-index: 1000;
    border-bottom: 2px solid var(--orange);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.nav-logo img.logo {
    filter: grayscale(1) contrast(100) invert(1) brightness(2);
    mix-blend-mode: screen;
}

.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .logo-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    row-gap: 10px;
    margin-left: -8px;
}

.logo-text .name {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text .tagline {
    font-size: 0.85rem;
    color: var(--silver-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links>li {
    flex-shrink: 0;
}

.nav-links>li>a,
.nav-links>li>button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>button:hover,
.nav-links>li>a.active,
.nav-links>li>button.active {
    color: var(--orange);
    background: rgba(232, 93, 4, 0.08);
}

.nav-links .chevron {
    font-size: 0.7rem;
    transform: 0.2s;
}

.nav-links>li:hover .chevron {
    transform: rotate(180deg);
}

.navbar {
    z-index: 9999;
}

/* ===== DROPDOWN CONTAINER ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

/* ===== SERVICES BUTTON (always visible) ===== */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    color: var(--orange);
    background: rgba(232, 93, 4, 0.08);
}

/* ===== DROPDOWN MENU (hidden by default) ===== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: var(--silver);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

/* hover effect */
.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(232, 93, 4, 0.12);
    color: var(--orange);
    padding-left: 26px;
}

/* remove last border */
.dropdown-menu a:last-child {
    border-bottom: none;
}

/* ===== SHOW ON HOVER ===== */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== OPTIONAL: smooth animation ===== */
.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* === MOBILE NAV === */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a,
.mobile-nav button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav button:hover,
.mobile-nav a.active,
.mobile-nav button.active {
    color: var(--orange);
}

.mobile-sub {
    padding-left: 16px;
    display: none;
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--silver-mid);
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-sub a:hover,
.mobile-sub a.active {
    color: var(--orange);
}

/* === HOME PAGE HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding-top: var(--nav-height);
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: heroKenBurns 6s ease-in-out forwards;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
    }
}

/* Gradient overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.25) 70%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 35%);
    pointer-events: none;
}

/* Slide Progress Dots */
.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.hero-dot {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--orange);
    border-radius: 2px;
    transition: none;
}

.hero-dot.active::after {
    width: 100%;
    transition: width 5s linear;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.97) 0%, rgba(26, 26, 26, 0.75) 100%),
        url('https://images.unsplash.com/photo-1565193566173-7a0ee3dbe261?w=1600&q=80') center/cover no-repeat;
}

/* Laser spark effect */
.hero-spark {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 40% 60%, rgba(232, 93, 4, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }
}

.laser-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--orange), transparent);
    animation: laser-sweep 2.5s ease-in-out infinite;
    opacity: 0.6;
}

.laser-line:nth-child(1) {
    height: 200px;
    right: 28%;
    top: 20%;
    animation-delay: 0s;
}

.laser-line:nth-child(2) {
    height: 140px;
    right: 18%;
    top: 35%;
    animation-delay: 0.8s;
}

.laser-line:nth-child(3) {
    height: 180px;
    right: 35%;
    top: 55%;
    animation-delay: 1.6s;
}

@keyframes laser-sweep {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    30% {
        opacity: 0.7;
        transform: scaleY(1);
    }

    70% {
        opacity: 0.7;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
    }
}

.hero-container {
    margin-left: 0;
    padding-left: 6vw;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 93, 4, 0.15);
    border: 1px solid rgba(232, 93, 4, 0.4);
    border-radius: 2px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-eyebrow span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero h1 {
    font-size: clamp(3rem, 2.2rem, 5.5rem);
    font-weight: 500;
    color: var(--white) !important;
    margin-bottom: 20px;
    text-transform: initial;
}

.hero h1 em {
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
    color: var(--orange);
}

.hero p {
    font-size: 1.1rem;
    color: var(--silver-mid);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    background: var(--steel);
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.hero-stats .container {
    display: flex;
    gap: 40px;
}

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

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--orange);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--silver-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 10px;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--steel);
    padding: 18px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-item .ti-icon {
    font-size: 1.2rem;
}

/* === SECTION DEFAULTS === */
.section {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 0;
    }
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.75;
}

/* === SERVICES OVERVIEW === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Row 1: Text + 3 cards */
.services-row-1 {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

/* Row 2: 2 cards + text (indented) */
.services-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 24px;
    align-items: center;
    margin-left: 6vw;
}

/* Text block styling */
.services-text-block {
    padding-right: 20px;
}

.services-text-block h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: none;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.services-text-block p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 480px;
}

/* ---- MOBILE: 3-row layout ---- */
/* Row 1: paragraph + laser cutting */
/* Row 2: bending + fabrication + powder coating (3 cards) */
/* Row 3: finished products + second paragraph */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.95rem;
    }

    .services-row-1 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Text block spans full width on top */
    .services-row-1>.services-text-block {
        grid-column: 1 / 2;
    }

    /* Laser cutting beside text */
    .services-row-1>.service-card:nth-child(2) {
        grid-column: 2 / 3;
    }

    /* Bending, Fabrication go to next row as a 3-card strip */
    .services-row-1>.service-card:nth-child(3) {
        grid-column: 1 / 2;
    }

    .services-row-1>.svc-fabrication {
        grid-column: 2 / 3;
    }

    .services-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-left: 0;
    }

    /* Powder coating + finished products stay on the same row */
    .services-row-2>.svc-powder {
        grid-column: 1 / 2;
    }

    .services-row-2>.svc-finished {
        grid-column: 2 / 3;
    }

    /* Keep the manufacturing text block on its own row */
    .services-row-2>.services-text-block {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    /* Reduce card sizes on phone */
    .card-img {
        height: 122px !important;
    }

    .card-body {
        padding: 8px !important;
    }

    .card-body h3 {
        font-size: 0.68rem !important;
        margin-bottom: 3px !important;
    }

    .card-body p {
        font-size: 0.55rem !important;
        margin-bottom: 4px !important;
    }

    .card-link {
        font-size: 0.5rem !important;
    }

    .services-text-block h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .services-text-block p {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .services-text-block .feature-list {
        margin: 10px 0 0;
        gap: 4px 8px;
    }

    .services-text-block .feature-list li {
        font-size: 0.62rem;
        line-height: 1.3;
        padding-left: 18px;
        font-weight: 500;
    }

    .services-text-block .feature-list li::before {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }

    .section-label {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .why-section>div {
        display: block !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .why-section .section-header {
        margin-bottom: 24px;
    }

    .why-section .section-header p {
        max-width: none;
    }

    .why-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px !important;
        width: 100%;
    }

    .why-item {
        width: 100% !important;
        min-width: 0;
        padding: 18px 12px !important;
    }
}

.service-card {
    background: var(--white);
    border: 3px solid var(--silver-mid);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-img {
    height: 250px;
    overflow: hidden;
    background: var(--charcoal);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
}

.card-icon {
    width: 18px;
    height: 48px;
    background: rgba(232, 93, 4, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.card-body h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 12px;
}

/* === WHY US === */
.why-section {
    background: var(--silver);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-section .section-header h2 {
    color: var(--charcoal);
}

.why-section .section-header p {
    color: var(--charcoal);
}

.why-section .section-label {
    color: var(--orange);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-item {
    padding: 40px 32px;
    width: 250px;
    background: var(--white);
    transition: background 0.3s;
    /* margin-right: 5px; */
}

.why-item:hover {
    background: rgba(232, 93, 4, 0.05);
}

.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232, 93, 4, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.why-item h4 {
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* === REGIONS === */
.regions-section {
    background: var(--silver);
}

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

.region-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--silver-mid);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.region-card.hq {
    border-top: 3px solid var(--orange);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.region-flag {
    font-size: 3rem;
    margin-bottom: 16px;
}

.region-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.region-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.region-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
    background: var(--orange);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 32px;
}

.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-banner .btn-outline:hover {
    color: var(--orange);
}

/* === FOOTER === */
footer {
    background: #111;
    color: var(--silver-mid);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-text .name {
    font-size: 1.2rem;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 260px;
    color: var(--silver-mid);
}

.footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--silver-mid);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--silver-mid);
}

.footer-contact-item .fci-icon {
    color: var(--orange);
    margin-top: 2px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: left;
}


.blog-post-featured {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-featured img {
    display: block;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--silver-mid);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    color: var(--white);
}

.blog-post-featured {
    max-width: 800px;
    margin: 0 auto;
}
.blog-post-featured img {
    display: block;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


/* === PAGE HERO (inner pages) === */
.page-hero {
    background: var(--charcoal);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1rem;
    color: var(--silver-mid);
    max-width: 560px;
    line-height: 1.75;
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--silver-mid);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--orange);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.2);
}

/* === SERVICE DETAIL LAYOUT === */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.detail-img {
    border-radius: var(--radius);
    overflow: visible;
    height: auto;
    box-shadow: none;
    border: none;
}

.detail-img img {
    width: 180%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    box-shadow: none;
}

.detail-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.detail-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-list {
    margin: 24px 0;
    font-size: 0.6rem !important;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--silver);
    font-size: 0.9rem;
    color: var(--text-mid);
}

.feature-list li::before {
    content: '▸';
    color: var(--orange);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* === PRODUCTS PAGE === */
.products-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px var(--silver-mid);
    background: var(--white);
    color: var(--text-mid);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--silver-mid);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    min-width: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.product-img {
    height: 220px;
    background: var(--silver);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-body {
    padding: 24px;
}

.product-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.product-body h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.product-short-description {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--silver-mid);
    color: var(--text-mid);
    background: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

.product-action-btn:hover {
    transform: translateY(-2px);
}

.product-action-btn.whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.08);
}

.product-action-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.product-action-btn.view {
    color: var(--steel);
    border-color: rgba(43, 108, 176, 0.35);
    background: rgba(43, 108, 176, 0.08);
}

.product-action-btn.view:hover {
    background: var(--steel);
    border-color: var(--steel);
    color: var(--white);
}

.view-desktop {
    width: auto;
    padding: 0 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.view-mobile {
    display: none;
}

.products-section .products-container {
    margin-left: 150px;
    margin-right: 150px;
    max-width: min(1440px, calc(100% - 64px));
    padding-left: 0;
    padding-right: 24px;
}

.products-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.products-main {
    min-width: 0;
}

.products-grid-container {
    width: 100%;
    min-width: 0;
}

.products-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    background: var(--white);
    border: 1px solid var(--silver-mid);
    border-radius: var(--radius);
    border-top: 3px solid var(--orange);
    padding: 24px 16px;
    width: 260px;
    flex-shrink: 0;
}

.sidebar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--silver-mid);
}

.category-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    gap: 8px;
    min-width: 0;
}

.category-sidebar-btn span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.category-sidebar-btn:hover {
    background: var(--silver);
    color: var(--charcoal);
}

.category-sidebar-btn.active {
    background: rgba(232, 93, 4, 0.1);
    color: var(--orange);
    border-color: rgba(232, 93, 4, 0.25);
    font-weight: 600;
}

.cat-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--silver);
    padding: 2px 8px;
    border-radius: 999px;
    min-width: 28px;
    text-align: center;
}

.category-sidebar-btn.active .cat-count {
    background: var(--orange);
    color: var(--white);
}

.sidebar-empty {
    font-size: 0.85rem;
    color: var(--text-light);
}

.products-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--text-mid);
    text-align: center;
    width: 100%;
}

.products-state i {
    font-size: 2rem;
    color: var(--silver-mid);
}

.products-state h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--charcoal);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--silver);
    color: var(--silver-mid);
    font-size: 2rem;
}

/* Product details page */
.product-detail-shell {
    padding: 70px 0;
}

.product-detail-card {
    background: var(--white);
    border: 1px solid var(--silver-mid);
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Product detail - Top section (image + summary side-by-side) */
.product-detail-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.product-detail-image {
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.product-detail-summary {
    padding: 32px 36px;
}

.product-detail-summary h1 {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(232, 93, 4, 0.12);
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-short-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 500;
}

/* Product detail - Bottom section (full description + specs) */
.product-detail-bottom {
    padding: 32px 36px;
    border-top: 1px solid var(--silver-mid);
}

/* Key Features section */
.product-key-features {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--silver-mid);
}

.product-key-features h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.key-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 0;
    padding: 0;
}

.key-features-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.93rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
}

.key-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.product-full-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

.product-full-desc-wrap h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.product-specs-meta {
    padding: 16px;
    background: var(--silver);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
    margin-top: 20px;
}

.product-specs-meta h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.product-specs-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-specs-meta-item {
    background: var(--white);
    border: 1px solid var(--silver-mid);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 0;
}

.product-specs-meta-item span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
}

.product-specs-meta-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

.product-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.product-detail-loading,
.product-detail-error {
    padding: 48px;
    text-align: center;
    color: var(--text-mid);
}

.product-detail-error {
    color: #c0392b;
}

@media (max-width: 900px) {
    .products-section .products-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .products-sidebar {
        position: static;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-body {
        padding: 14px;
    }

    .product-body h3 {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .product-short-description {
        display: none;
    }

    .product-img {
        height: 150px;
    }

    .product-action-btn {
        width: 36px;
        height: 36px;
    }

    .view-desktop {
        display: none;
    }

    .view-mobile {
        display: inline-flex;
    }

    .product-detail-top {
        grid-template-columns: 1fr;
    }

    .product-detail-summary {
        padding: 22px 18px;
    }

    .product-detail-summary h1 {
        font-size: 1.25rem;
    }

    .product-detail-bottom {
        padding: 22px 18px;
    }

    .product-specs-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 901px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .product-img {
        height: 160px;
    }

    .product-body {
        padding: 14px 16px;
    }

    .product-body h3 {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .product-short-description {
        display: -webkit-box;
        margin-bottom: 10px;
    }

    .view-desktop {
        display: inline-flex;
    }

    .view-mobile {
        display: none;
    }

    .product-cat {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
}

/* === ABOUT PAGE === */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
}

.about-badge .ab-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .ab-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--silver);
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--silver-mid);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 500;
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
}

.contact-info h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info>p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 93, 4, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cd-text h5 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    font-family: 'Barlow Condensed', sans-serif;
}

.cd-text p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--silver-mid);
    border-radius: var(--radius);
    border-top: 3px solid var(--orange);
}

.form-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Barlow Condensed', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--silver-mid);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--silver);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PAGE HERO === */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 1));
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 10px;
    letter-spacing: 0.05em;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--silver-mid);
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--orange);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange-glow);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span:last-child {
    color: var(--silver-mid);
}

/* === SERVICE DETAIL === */
.service-detail {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.detail-img:hover img {
    transform: scale(1.05);
}

.detail-text h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.detail-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.feature-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .regions-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        padding-top: calc(var(--nav-height) + 20px);
        padding-bottom: 40px;
    }

    .hero-slide {
        background-position: center bottom !important;
    }

    .hero-container {
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.15rem !important;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn {
        font-size: 0.85rem;
        padding: 12px 22px;
    }

    .hero-stats {
        position: static;
        margin-top: 32px;
        padding-bottom: 10px;
    }

    .hero-stats .container {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .trust-inner {
        gap: 24px;
    }

    .trust-item {
        font-size: 0.82rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .regions-section .container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .regions-section .section-header {
        text-align: center;
    }

    .regions-section .section-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    /* Service page hero mobile fixes */
    .page-hero {
        padding: 100px 0 60px !important;
    }

    .page-hero .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .page-hero h1 {
        font-size: 2rem !important;
    }

    .detail-text h2,
    .cta-banner h2,
    .product-modal-content h2,
    .form-title {
        font-size: 1.8rem;
    }

    .why-item h4 {
        font-size: 0.95rem;
    }

    .why-item p {
        font-size: 0.75rem;
    }

    .why-num {
        font-size: 2.2rem;
    }

    .region-card h3 {
        font-size: 1.2rem;
    }

    .region-card p,
    .cta-banner p,
    .page-hero p,
    .detail-text p,
    .product-body p,
    .footer-col a,
    .footer-contact-item,
    .contact-info>p,
    .cd-text p {
        font-size: 0.82rem;
    }

    .nav-logo .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-logo img.logo {
        height: 50px !important;
        width: auto ! //
    }

    .logo-text .name {
        font-size: 0.85rem;
    }

    .logo-text .tagline {
        display: block;
        font-size: 0.55rem;
    }

    .sheet-bending-hero {
        background-size: auto 160% !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;
    }

    /* Reduce section top spacing on mobile */
    .service-detail {
        padding: 50px 0 !important;
    }

    .section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 380px) {
    .navbar .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .nav-logo img.logo {
        height: 42px !important;
    }

    .logo-text .name {
        font-size: 0.78rem;
    }

    .logo-text .tagline {
        font-size: 0.5rem;
    }
}

/* Laser cutting services text section */
.laser-cutting-services {
    padding: 0 0 70px;
    background: var(--white);
}

.laser-cutting-services-content {
    max-width: 680px;
    text-align: left;
}

.laser-cutting-services-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.laser-cutting-services-content p {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.laser-cutting-services-content ul {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    list-style: none;
}

.laser-cutting-services-content li {
    position: relative;
    padding-left: 24px;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

.laser-cutting-services-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
}

@media (max-width: 768px) {
    .laser-cutting-services {
        padding: 0 0 50px;
    }
}

/* Laser cutting intro image layout */
.laser-design-intro .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.laser-design-intro .detail-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.laser-design-intro .detail-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laser-design-intro .detail-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .laser-design-intro .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .laser-design-intro .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

.services-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.services-image img,
.services-image video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.laser-cutting-services-content {
    max-width: none;
}

/* =============================================
   LASER CUTTING PAGE - Desktop Styles
   ============================================= */

/* Laser Hero */
.laser-hero {
    padding: 160px 0 140px !important;
    text-align: left;
    background-image:
        linear-gradient(to right, rgba(6, 3, 62, 0.95) 0%, rgba(2, 2, 20, 0.95) 35%, rgba(0, 0, 0, 0) 100%),
        url('assets/images/hero/homehero/laserhomehero.jpg');
    background-size: cover;
    background-position: center right;
}

.laser-hero-container {
    max-width: 700px !important;
    margin-left: 0 !important;
    margin-right: auto;
    padding-left: 8vw !important;
}

.laser-hero h1 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 16px;
}

.laser-hero p {
    text-align: left;
}

.laser-hero .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Section containers */
.laser-section-container {
    padding: 0.1px 0;
    margin-left: 0;
    padding-left: 6vw;
    max-width: 100%;
    padding-right: 6vw;
}

/* =============================================
   LASER CUTTING PAGE - Mobile Styles
   ============================================= */
@media (max-width: 768px) {

    /* === HERO === */
    .laser-hero {
        padding: 110px 0 60px !important;
        text-align: left;
        background-image:
            linear-gradient(to bottom, rgba(6, 3, 62, 0.92) 0%, rgba(2, 2, 20, 0.88) 60%, rgba(0, 0, 0, 0.7) 100%),
            url('assets/images/hero/homehero/laserhomehero.jpg');
        background-size: cover;
        background-position: center center;
    }

    .laser-hero-container {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .laser-hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 14px;
        line-height: 1.08;
    }

    .laser-hero p {
        font-size: 0.88rem !important;
        line-height: 1.65;
        color: var(--silver-mid);
    }

    .laser-hero .section-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .laser-hero .hero-btns {
        margin-top: 24px;
        gap: 10px;
    }

    .laser-hero .hero-btns .btn {
        padding: 11px 24px;
        font-size: 0.85rem;
    }

    /* === SECTION CONTAINERS === */
    .laser-section-container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
    }

    /* === INTRO / DESIGN SECTION === */
    .laser-design-intro {
        padding: 40px 0 !important;
    }

    .laser-design-intro .detail-img {
        order: -1;
        margin-bottom: 8px;
    }

    .laser-design-intro .detail-img img {
        border-radius: var(--radius);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .laser-design-intro .detail-text .section-label {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .laser-design-intro .detail-text h2 {
        font-size: 1.6rem !important;
        margin-bottom: 14px;
    }

    .laser-design-intro .detail-text p {
        font-size: 0.88rem !important;
        line-height: 1.7;
    }

    .laser-design-intro .detail-text .btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    /* === SERVICES CONTENT GRID (text + image) === */
    .services-content-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .services-image {
        order: -1;
    }

    .services-image img {
        border-radius: var(--radius);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    /* === LASER CUTTING SERVICES CONTENT === */
    .laser-cutting-services {
        padding: 40px 0 !important;
    }

    .laser-cutting-services-content h2 {
        font-size: 1.6rem !important;
        margin-bottom: 14px;
    }

    .laser-cutting-services-content p {
        font-size: 0.88rem !important;
        line-height: 1.7;
    }

    .laser-cutting-services-content ul {
        margin-top: 18px;
        gap: 8px;
    }

    .laser-cutting-services-content li {
        font-size: 0.88rem;
        line-height: 1.6;
        padding-left: 22px;
    }

    /* === FEATURE LIST (capabilities checklist) === */
    .laser-cutting-services .feature-list,
    .laser-design-intro .feature-list {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin: 20px 0;
    }

    .laser-cutting-services .feature-list li,
    .laser-design-intro .feature-list li {
        font-size: 0.88rem;
        padding-left: 28px;
    }

    /* === PROCESS SECTION (How It Works) === */
    .laser-hero~.section .why-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .laser-hero~.section .why-item {
        padding: 24px 20px !important;
    }

    .laser-hero~.section .why-num {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .laser-hero~.section .why-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .laser-hero~.section .why-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .laser-hero~.section .section-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .laser-hero~.section .section-header p {
        margin-left: auto;
        margin-right: auto;
    }

    /* === CTA BANNER === */
    .laser-hero~.cta-banner {
        padding: 50px 20px;
    }

    .laser-hero~.cta-banner h2 {
        font-size: 1.6rem;
    }

    .laser-hero~.cta-banner p {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .laser-hero~.cta-banner .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .laser-hero {
        padding: 100px 0 50px !important;
    }

    .laser-hero h1 {
        font-size: 1.85rem !important;
    }

    .laser-hero p {
        font-size: 0.82rem !important;
    }

    .laser-hero .hero-btns {
        flex-direction: column;
    }

    .laser-hero .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Fab Hero overrides */
.laser-hero.fab-hero {
    background-image:
        linear-gradient(to right, rgba(6, 3, 62, 0.95) 0%, rgba(2, 2, 20, 0.95) 35%, rgba(0, 0, 0, 0) 100%),
        url('../assets/images/services/fabimages/fabcover.jpg') !important;
}

@media (max-width: 768px) {
    .laser-hero.fab-hero {
        background-image:
            linear-gradient(to bottom, rgba(6, 3, 62, 0.92) 0%, rgba(2, 2, 20, 0.88) 60%, rgba(0, 0, 0, 0.7) 100%),
            url('../assets/images/services/fabimages/fabcover.jpg') !important;
    }
}

/* Sheet Bending Hero overrides */
.laser-hero.bending-hero {
    background-image:
        linear-gradient(to right, rgba(6, 3, 62, 0.95) 0%, rgba(2, 2, 20, 0.95) 35%, rgba(0, 0, 0, 0) 100%),
        url('../assets/images/services/bendingimages/metalbendcover.jpg') !important;
    background-size: cover;
    background-position: center right;
}