:root {
    /* Industrial Palette - Light Evolution */
    --forge-white: #ffffff;
    --forge-light: #f8f9fa;
    --forge-silver: #e9ecef;
    --forge-steel: #6c757d;
    --forge-navy: #1a1d23;

    /* Semantic Colors - Light Mode */
    --bgColor: var(--forge-light);
    --surfaceColor: var(--forge-white);
    --textColor: var(--forge-navy);
    --textMuted: var(--forge-steel);

    /* UI Details - High Contrast for light mode */
    --industrial-radius: 6px;
    --industrial-border: 1px solid rgba(0, 0, 0, 0.1);
    --industrial-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Metallic Gradients - Inverted for light mode */
    --grad-steel: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
    --grad-safety: linear-gradient(135deg, var(--primaryColor) 0%, var(--primaryColorH) 100%);
}

/* Prevent horizontal overflow on all devices */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: 'Urbanist', sans-serif;
    /* Fallback until Chakra Petch is added */
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Industrial Components */

.btn-forge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--grad-safety);
    color: var(--forge-gunmetal);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: var(--industrial-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.btn-forge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.4);
}

.btn-forge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-forge:hover::after {
    left: 100%;
    top: 100%;
}

.card-industrial {
    background: var(--grad-steel);
    border: var(--industrial-border);
    padding: 24px;
    border-radius: var(--industrial-radius);
    position: relative;
    overflow: hidden;
}

.card-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primaryColor);
}



/* ========================================
   SECTION HEADER SYSTEM (GLOBAL)
   ======================================== */

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

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

.section-header.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.section-tag {
    display: inline-block;
    color: var(--primaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--secondaryColor);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Dark section variant */
.section-header-dark .section-tag {
    color: var(--primaryColor);
}

.section-header-dark .section-title {
    color: #ffffff;
}

/* Section header responsive */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
}

/* Modern Typography & Sections */
.modern-section-title {
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}

/* Section description & header action */
.section-desc {
    color: var(--forge-steel);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px;
}

.header-action {
    text-align: right;
}

@media (max-width: 768px) {
    .header-action {
        text-align: left;
        width: 100%;
    }

    .section-desc {
        max-width: 100%;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-modern-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-modern-section .container {
    position: relative;
    z-index: 2;
}

.industrial-bg-text {
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 18vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Chakra Petch', sans-serif;
    z-index: 0;
}

@media (max-width: 991px) {
    .services-modern-section {
        padding: 70px 0;
    }

    .industrial-bg-text {
        display: none;
    }
}

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

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-section {
    padding: 100px 0;
    background: var(--secondaryColor);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .products-section {
        padding: 70px 0;
    }
}

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

/* Service Grid (Magazine Style) */
.service-grid-border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.card-modern-service {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    padding: 40px;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-modern-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

@media (hover: hover) {
    .card-modern-service:hover::before {
        background: linear-gradient(180deg,
                transparent 0%,
                transparent 10%,
                rgba(0, 0, 0, 0.6) 40%,
                rgba(0, 0, 0, 0.95) 100%);
    }
}

.card-category {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primaryColor);
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.card-number {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.card-number::after {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (hover: hover) {
    .card-modern-service:hover .card-number {
        color: var(--primaryColor);
    }

    .card-modern-service:hover .card-number::after {
        width: 40px;
        background: var(--primaryColor);
    }
}

.card-modern-service .card-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 15px 0;
    color: #fff;
    position: relative;
    z-index: 3;
    line-height: 1.1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .card-modern-service:hover .card-title {
        transform: translateY(-5px);
    }
}

.card-modern-service .card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 3;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(20px);
}

@media (hover: hover) {
    .card-modern-service:hover .card-desc {
        max-height: 120px;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
        transform: translateY(0);
    }
}

.card-cta-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primaryColor);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease 0.1s;
}

@media (hover: hover) {
    .card-modern-service:hover .card-cta-label {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-cta-label::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primaryColor);
    transition: width 0.4s ease 0.2s;
}

@media (hover: hover) {
    .card-modern-service:hover .card-cta-label::after {
        width: 30px;
    }
}

.card-content {
    position: relative;
    z-index: 3;
}

/* Card Background & Slider */
.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.9) saturate(1.1);
}

@media (hover: hover) {
    .card-modern-service:hover .card-image-bg img {
        transform: scale(1.08);
        filter: brightness(0.75) saturate(1.2);
    }
}

/* Arrow Icon */
.card-modern-service .card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .card-modern-service:hover .card-arrow {
        opacity: 1;
        transform: scale(1);
        background: var(--primaryColor);
        color: var(--secondaryColor);
        border-color: var(--primaryColor);
    }
}

/* Slider Progress Indicator */
.card-modern-service .slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
}

.card-modern-service .slider-progress-bar {
    height: 100%;
    background: var(--primaryColor);
    width: 0%;
    transition: width linear;
}

/* Service Card Swiper Slider */
.card-image-bg .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-image-bg .swiper-wrapper {
    height: 100%;
}

.card-image-bg .swiper-slide {
    width: 100%;
    height: 100%;
}

.card-image-bg .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.9) saturate(1.1);
}

.card-modern-service:hover .card-image-bg .swiper-slide img {
    transform: scale(1.08);
    filter: brightness(0.75) saturate(1.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .card-modern-service {
        min-height: 320px;
        padding: 30px;
    }

    .card-modern-service .card-title {
        font-size: 18px;
    }

    .card-modern-service .card-arrow {
        width: 38px;
        height: 38px;
        top: 20px;
        right: 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .card-modern-service {
        min-height: 280px;
        padding: 25px 20px;
    }

    .card-modern-service .card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .card-modern-service .card-desc {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: none;
        opacity: 0.7;
    }

    .card-modern-service:hover .card-desc {
        max-height: none;
    }

    .card-number {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .card-number::after {
        width: 20px;
    }

    .card-modern-service .card-arrow {
        opacity: 1;
        transform: scale(0.9);
        width: 32px;
        height: 32px;
        top: 15px;
        right: 15px;
        font-size: 12px;
    }

    .card-category {
        font-size: 8px;
        margin-bottom: 5px;
    }

    .card-cta-label {
        display: none;
        /* Hide on mobile to keep it compact */
    }
}

/* Product Cards (Premium Dark) */
.card-modern-product {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    transition: all 0.4s;
}

.card-modern-product .product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.card-modern-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primaryColorRgb, 255, 193, 7), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.btn-view-product {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--secondaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .card-modern-product:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .card-modern-product:hover .product-image img {
        transform: scale(1.1);
    }

    .card-modern-product:hover .product-overlay {
        opacity: 1;
    }

    .card-modern-product:hover .btn-view-product {
        transform: scale(1);
    }
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.product-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}


:root {
    --header-height: 85px;
    --top-bar-height: 44px;
    --nav-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.forge-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    pointer-events: none;
}

.forge-header-wrapper>* {
    pointer-events: auto;
}

/* Desktop Menu */
.forge-desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.forge-desktop-menu .menu-item {
    position: relative;
}

.forge-desktop-menu .menu-item>a {
    color: #fff;
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.forge-desktop-menu .menu-item>a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.forge-desktop-menu .menu-item:hover>a {
    color: var(--primaryColor);
}

.forge-desktop-menu .menu-item:hover>a i {
    transform: rotate(180deg);
}

/* Sub Menu */
.forge-desktop-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: #1a1a1a;
    border-top: 2px solid var(--primaryColor);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.forge-desktop-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.forge-desktop-menu .sub-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 25px;
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.forge-desktop-menu .sub-menu li a:hover {
    color: var(--primaryColor);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 30px;
}

/* Top Bar */
.forge-top-bar {
    height: var(--top-bar-height);
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--nav-transition);
}

.forge-top-bar .top-link,
.forge-top-bar .top-info-item {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.forge-top-bar .top-link:hover {
    color: var(--primaryColor);
}

.forge-top-bar i {
    color: var(--primaryColor);
    font-size: 14px;
}

.top-info-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

/* Main Navbar */
.forge-main-nav {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--nav-transition);
}

.forge-main-nav .navbar {
    height: var(--header-height);
    padding: 0;
}

/* Scrolled State */
.header-scrolled .forge-top-bar {
    transform: translateY(-100%);
    opacity: 0;
}

.header-scrolled.forge-main-nav {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: color-mix(in srgb, var(--secondaryColor), transparent 8%) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-scrolled .forge-main-nav .navbar {
    height: 85px;
}

/* Action Button */
.btn-forge-action {
    background: var(--primaryColor);
    color: var(--secondaryColor);
    padding: 10px 22px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-forge-action:hover {
    background: #fff;
    color: var(--secondaryColor);
    transform: translateY(-2px);
}

/* Toggler */
.forge-toggler {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1102;
    position: relative;
}

.toggler-line {
    width: 32px;
    height: 2px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-2 {
    width: 22px;
    align-self: flex-end;
}

.toggler-label {
    font-family: 'Chakra Petch';
    font-size: 10px;
    color: var(--primaryColor);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 2px;
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(5px);
}

.forge-toggler:hover .line-2 {
    width: 32px;
}

.forge-toggler:hover .toggler-label {
    opacity: 1;
    transform: translateY(0);
}

/* Toggler Active State */
.forge-toggler.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Progress Bar */
.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primaryColor);
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   CUSTOM MOBILE MENU 
   ======================================== */
.forge-mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--primaryColor);
    z-index: 2000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.forge-mobile-menu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo img {
    height: 35px !important;
    width: auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(13%) fweight(300) saturate(950%) hue-rotate(182deg) brightness(96%) contrast(92%);
    /* Logo dark on yellow background */
}

/* Fallback if filter doesn't look good, just use black for logo */
.mobile-logo {
    filter: brightness(0);
}

.mobile-menu-close {
    background: var(--secondaryColor);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: var(--primaryColor);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-inner {
    padding: 20px 0 50px;
    height: calc(100vh - 86px);
    height: calc(100dvh - 86px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    flex: 1;
    margin-bottom: 40px;
}

.forge-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-link-row {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.mobile-menu-item .main-link {
    flex: 1;
    display: block;
    padding: 22px 25px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondaryColor);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-item .main-link:active {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-dropdown-btn {
    background: rgba(0, 0, 0, 0.03);
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondaryColor);
    font-size: 1.2rem;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-dropdown-btn.active {
    transform: rotate(90deg);
    background: rgba(0, 0, 0, 0.08);
}

.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    transition: max-height 0.4s ease;
}

.mobile-sub-menu.open {
    max-height: 1000px;
}

.mobile-sub-menu li a {
    display: block;
    padding: 15px 40px;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.mobile-sub-menu li a:active {
    padding-left: 45px;
    color: var(--secondaryColor);
}

.mobile-contact-card {
    background: rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin: 0 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondaryColor);
}

.card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondaryColor);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-info-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondaryColor);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-info-link i {
    color: var(--secondaryColor);
}

.mobile-socials-wrap {
    text-align: center;
}

.socials-label {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-socials-wrap .socials-wrap a {
    background: var(--secondaryColor) !important;
    color: var(--primaryColor) !important;
}

@media (max-width: 991px) {
    .forge-mobile-menu-panel {
        display: block;
    }

    .forge-main-nav .navbar {
        height: 80px;
    }

    .navbar-brand img {
        height: 40px !important;
    }
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ========================================
   HERO SLIDER STYLES
   ======================================== */

/* Premium Button Style */
.btn-forge-premium {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
}

.btn-forge-premium span {
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.btn-forge-premium .btn-line {
    height: 2px;
    width: 40px;
    background: var(--primaryColor);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-forge-premium:hover .btn-line {
    width: 100%;
}

.btn-forge-premium:hover span {
    transform: translateX(5px);
}

.btn-forge-premium:hover {
    color: #ffffff;
}

/* ========================================
   HERO PAGINATION STYLES
   ======================================== */

.hero-pagination-container {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-pagination-numbers {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1;
}

.hero-pagination-numbers .total {
    font-size: 12px;
    opacity: 0.5;
}

/* Swiper Pagination Bullets Override */
.hero-pagination-bullets {
    position: static !important;
    display: flex !important;
    gap: 15px;
    width: auto !important;
}

.hero-pagination-bullets .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #ffffff !important;
    opacity: 0.3 !important;
    transition: all 0.4s !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.hero-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(2) !important;
    background: var(--primaryColor) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-pagination-container {
        bottom: 30px;
        right: 30px;
        gap: 20px;
    }

    .hero-pagination-numbers {
        font-size: 14px;
    }

    .hero-pagination-bullets {
        gap: 10px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Hero Slider Mobile */
@media (max-width: 991px) {
    .hero-industrial-slider .heroSwiper {
        height: 90vh !important;
    }

    .hero-slide .container {
        padding: 0 20px;
    }

    .hero-slide .col-lg-9,
    .hero-slide .col-lg-8 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-industrial-slider .heroSwiper {
        height: 90vh !important;
        min-height: 500px;
    }

    /* Slide Subtitle */
    .slide-subtitle-reveal {
        font-size: 12px !important;
        letter-spacing: 4px !important;
        margin-bottom: 12px !important;
    }

    /* Slide Title */
    .slide-title-reveal {
        font-size: clamp(2.2rem, 9vw, 3rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 18px !important;
    }

    /* Slide Description */
    .slide-desc-reveal {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }

    /* Slide Button */
    .btn-forge-premium {
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
    }

    .btn-forge-premium span {
        margin-bottom: 8px;
    }

    .btn-forge-premium .btn-line {
        width: 35px;
    }

    /* Hero Overlay - Lightened */
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%) !important;
    }

    /* Pagination */
    .hero-pagination-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: flex-end;
        gap: 15px;
    }

    .hero-pagination-numbers {
        font-size: 12px;
    }

    .hero-pagination-bullets {
        gap: 8px;
    }

    .hero-pagination-bullets .swiper-pagination-bullet {
        width: 5px !important;
        height: 5px !important;
    }
}

@media (max-width: 480px) {
    .hero-industrial-slider .heroSwiper {
        height: 90vh !important;
        min-height: 400px;
    }

    .slide-subtitle-reveal {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }

    .slide-title-reveal {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    }

    .slide-desc-reveal {
        font-size: 14px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-pagination-container {
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================
   HOME PAGE SECTIONS MOBILE
   ======================================== */

/* Services Section */
@media (max-width: 991px) {
    .services-modern-section {
        padding: 80px 0 !important;
    }

    .services-modern-section .modern-section-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        letter-spacing: -1px !important;
    }

    .services-modern-section h5 {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }

    .services-modern-section p {
        font-size: 1rem !important;
    }

    /* Industrial background text */
    .industrial-bg-text {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .services-modern-section {
        padding: 60px 0 !important;
    }

    .services-modern-section .modern-section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

    .services-modern-section .mb-5.pb-4 {
        margin-bottom: 30px !important;
        padding-bottom: 0 !important;
    }

    .services-modern-section .text-lg-end {
        text-align: left !important;
    }

    .services-modern-section .text-lg-end p {
        margin-left: 0 !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
}

/* Products Section */
@media (max-width: 991px) {
    section[style*="padding: 120px 0"] {
        padding: 80px 0 !important;
    }
}

@media (max-width: 768px) {
    section[style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="padding: 120px 0"] h5 {
        font-size: 11px !important;
        letter-spacing: 3px !important;
        margin-bottom: 12px !important;
    }

    section[style*="padding: 120px 0"] h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }

    section[style*="padding: 120px 0"] .mb-5.pb-4 {
        margin-bottom: 30px !important;
        padding-bottom: 0 !important;
    }
}

/* Counters Section (Marquee Style) */
.counters-section {
    background: var(--forge-silver);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    gap: 100px;
    align-items: center;
    animation: forgeMarquee 30s linear infinite;
    padding-right: 60px;
    /* Bridge gap for infinite loop */
}

/* No hover pause */

.counter-marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.counter-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--secondaryColor);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter-prefix {
    font-size: 0.6em;
    color: var(--primaryColor);
}

.counter-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--forge-steel);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Industrial separator dot */
.counter-marquee-item::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primaryColor);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--primaryColor);
}

@keyframes forgeMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

    .marquee-track {
        gap: 30px;
        animation-duration: 20s;
        padding-right: 30px;
    }

    .counter-marquee-item::after {
        display: none;
    }

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

    .counter-label {
        font-size: 11px;
    }
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

.projects-section {
    background: #ffffff;
}

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

.project-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/3;
}

.project-card-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .project-card:hover .project-image img {
        transform: scale(1.08);
    }
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 50%;
}

.project-content {
    flex: 1;
}

.project-cat-tag {
    display: inline-block;
    color: var(--primaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.project-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.listing-grid .project-card-large .project-title {
    font-size: 32px;
}

.project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0 0 0;
    line-height: 1.5;
    display: none;
}

.project-card-large .project-desc {
    display: block;
}

.forge-projects-page {
    padding-bottom: 100px;
}

.project-arrow {
    width: 45px;
    height: 45px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondaryColor);
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 20px;
    transform: translateX(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Services Mobile Slider */
.services-mobile-slider {
    position: relative;
    margin: 0 -15px;
    /* Pull to edges */
    padding-bottom: 50px;
}

.services-mobile-slider .swiper {
    overflow: visible;
}

.services-mobile-slider .card-modern-service {
    min-height: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.services-mobile-slider .card-title {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.2;
}

.services-mobile-slider .card-category {
    font-size: 8px;
    margin-bottom: 3px;
}

.services-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.services-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    background: var(--secondaryColor);
    border-radius: 2px;
    opacity: 0.2;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primaryColor);
    opacity: 1;
}

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

@media (max-width: 991px) {
    .project-arrow {
        transform: translateX(0);
        opacity: 1;
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-left: 10px;
    }
}

/* Projects Mobile Slider */
.projects-mobile-slider {
    margin-top: 20px;
    padding-bottom: 50px;
    position: relative;
    overflow: visible;
}

.projects-mobile-slider .swiper {
    overflow: visible;
}

.projects-mobile-slider .project-card {
    border-radius: 15px;
    aspect-ratio: 1/1.2;
}

.projects-mobile-slider .project-title {
    font-size: clamp(1rem, 4vw, 1.25rem);
}

.projects-mobile-slider .project-overlay {
    padding: 20px;
    min-height: 40%;
}

.projects-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.projects-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    background: var(--secondaryColor);
    border-radius: 2px;
    opacity: 0.2;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primaryColor);
    opacity: 1;
}

/* ========================================
   PROJECTS LISTING SECTIONS
   ======================================== */

.listing-sections .project-row-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.listing-sections .project-row-section:nth-child(even) {
    background: #fafafa;
}

.listing-sections .project-flex-row {
    display: flex;
    align-items: center;
    gap: 100px;
}

.listing-sections .project-row-section:nth-child(even) .project-flex-row {
    flex-direction: row-reverse;
}

.listing-sections .project-row-image {
    flex: 1.3;
    position: relative;
}

.listing-sections .project-serial-tag {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--secondaryColor);
    color: var(--primaryColor);
    padding: 8px 15px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
}

.listing-sections .project-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.listing-sections .project-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.listing-sections .project-row-section:hover img {
    transform: scale(1.05);
}

.listing-sections .project-row-content {
    flex: 0.7;
}

.listing-sections .project-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.listing-sections .project-category {
    color: var(--primaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.listing-sections .project-year {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--forge-steel);
    opacity: 0.5;
}

.listing-sections .project-row-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 30px;
    line-height: 1.1;
}

.listing-sections .project-row-desc {
    font-size: 1.1rem;
    color: var(--forge-steel);
    line-height: 1.7;
    margin-bottom: 40px;
}

.listing-sections .project-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.listing-sections .spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.listing-sections .spec-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--forge-steel);
    letter-spacing: 1px;
    font-weight: 700;
}

.listing-sections .spec-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondaryColor);
}

.listing-sections .project-btn {
    text-decoration: none;
}

@media (max-width: 1200px) {
    .listing-sections .project-flex-row {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .listing-sections .project-row-section {
        padding: 80px 0;
    }

    .listing-sections .project-flex-row,
    .listing-sections .project-row-section:nth-child(even) .project-flex-row {
        flex-direction: column;
        gap: 50px;
    }

    .listing-sections .project-row-image,
    .listing-sections .project-row-content {
        width: 100%;
    }

    .listing-sections .project-row-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .listing-sections .project-spec-grid {
        gap: 20px;
        padding: 20px 0;
    }

    .listing-sections .spec-value {
        font-size: 14px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: -10px;
}

.testimonial-quote i {
    font-size: 48px;
    color: var(--primaryColor);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--forge-steel);
    margin-bottom: 30px;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: var(--forge-silver);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar-placeholder i {
    font-size: 24px;
    color: var(--forge-steel);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0 0 3px 0;
    text-transform: none;
    letter-spacing: 0;
}

.author-company {
    font-size: 13px;
    color: var(--forge-steel);
}

/* Testimonials Slider */
.testimonialsSwiper {
    padding-bottom: 50px;
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--forge-steel);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primaryColor);
    width: 30px;
    border-radius: 5px;
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote i {
        font-size: 36px;
    }

    .testimonial-text {
        font-size: 14px;
        min-height: auto;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-company {
        font-size: 12px;
    }
}

/* Product Cards Mobile */
@media (max-width: 768px) {
    .card-modern-product {
        padding: 10px;
    }

    .card-modern-product .product-image {
        margin-bottom: 15px;
    }

    .product-name {
        font-size: 14px !important;
    }

    .product-meta {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

    .btn-view-product {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* General Typography Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    h3 {
        font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Spacing Adjustments */
@media (max-width: 768px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .pb-4 {
        padding-bottom: 1rem !important;
    }

    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .gap-4 {
        gap: 1rem !important;
    }
}

/* ========================================
   HEADER & TOPBAR MOBILE RESPONSIVE
   ======================================== */

/* Topbar Mobile */
@media (max-width: 991px) {
    .forge-top-bar {
        height: auto !important;
        min-height: 36px;
        padding: 8px 0;
    }

    .forge-top-bar .container>.d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }

    .forge-top-bar .top-bar-left {
        flex: 1;
    }

    .forge-top-bar .top-bar-right {
        display: flex !important;
        flex-wrap: wrap;
        gap: 12px !important;
    }

    .forge-top-bar .top-link,
    .forge-top-bar .top-info-item {
        font-size: 11px !important;
        gap: 5px !important;
    }

    .forge-top-bar i {
        font-size: 12px !important;
    }

    .top-info-divider {
        display: none !important;
    }

    .socials-wrap {
        display: flex;
        gap: 8px;
    }

    .socials-wrap a {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .forge-top-bar {
        padding: 8px 0;
    }

    .forge-top-bar .top-bar-right {
        gap: 15px !important;
    }

    .forge-top-bar .top-link,
    .forge-top-bar .top-info-item {
        font-size: 10px !important;
    }

    .forge-top-bar .link-label,
    .forge-top-bar .info-label {
        display: inline !important;
        font-size: 10px !important;
    }

    .forge-top-bar i {
        font-size: 11px !important;
    }
}

@media (max-width: 576px) {
    .forge-top-bar .top-bar-left {
        display: none !important;
    }

    .forge-top-bar .top-bar-right {
        width: 100%;
        justify-content: center;
        gap: 12px !important;
    }

    .forge-top-bar .top-link,
    .forge-top-bar .top-info-item {
        font-size: 10px !important;
    }

    .forge-top-bar .link-label,
    .forge-top-bar .info-label {
        display: inline !important;
        font-size: 10px !important;
    }
}

/* Main Navbar Mobile */
@media (max-width: 991px) {
    .forge-main-nav .navbar {
        height: 80px !important;
    }

    .navbar-brand-wrap {
        max-width: 150px;
        overflow: hidden;
    }

    .navbar-brand img,
    .navbar-brand-wrap img {
        height: 35px !important;
        max-height: 35px !important;
        width: auto !important;
        object-fit: contain;
    }

    .btn-forge-action {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }

    .btn-forge-action i {
        display: none;
    }
}

@media (max-width: 768px) {
    .forge-main-nav .navbar {
        height: 80px !important;
    }

    .navbar-brand-wrap {
        max-width: 160px;
        overflow: visible;
    }

    .navbar-brand img,
    .navbar-brand-wrap img {
        height: 38px !important;
        max-height: 38px !important;
    }

    .btn-forge-action {
        padding: 8px 14px !important;
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }

    .nav-actions {
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .forge-main-nav .navbar {
        height: 80px !important;
    }

    .navbar-brand-wrap {
        max-width: 140px;
    }

    .navbar-brand img,
    .navbar-brand-wrap img {
        height: 32px !important;
        max-height: 32px !important;
    }

    .btn-forge-action span {
        display: none;
    }

    .btn-forge-action i {
        display: block !important;
    }

    .btn-forge-action {
        width: 40px;
        height: 40px;
        padding: 0 !important;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Mobile Menu Panel */
@media (max-width: 768px) {
    .mobile-menu-inner {
        padding: 80px 15px 30px !important;
    }

    .mobile-menu-item .main-link {
        font-size: 18px !important;
        padding: 16px 0 !important;
    }

    .mobile-sub-menu li a {
        font-size: 14px !important;
        padding: 10px 0 !important;
    }

    .mobile-dropdown-btn {
        font-size: 24px !important;
        padding: 12px !important;
    }

    .mobile-menu-footer {
        padding-top: 30px !important;
    }

    .footer-label {
        font-size: 10px !important;
    }

    .footer-info-link {
        font-size: 16px !important;
    }
}

/* ========================================
   FORGE FOOTER STYLES
   ======================================== */

.forge-footer {
    background: var(--secondaryColor);
    color: #fff;
}

.footer-main {
    padding: 60px 0 50px;
    border-top: 3px solid var(--primaryColor);
}

/* Brand Section */
.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--secondaryColor);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    margin-top: 10px;
}

.footer-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primaryColor);
    display: inline-block;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primaryColor);
    transform: translateX(4px);
}

/* Contact Section */
.footer-contact {
    margin-top: 10px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primaryColor);
}

.contact-item i {
    color: var(--primaryColor);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

.copyright strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primaryColor);
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/* Footer Mobile Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

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

    .footer-brand {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-brand img {
        margin: 0 auto 15px;
        display: block;
    }

    .footer-desc {
        max-width: 280px;
        margin: 0 auto 18px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-title {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .footer-links ul li a {
        font-size: 12px;
    }

    .contact-item {
        font-size: 12px;
    }

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

    .copyright,
    .footer-legal a {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 0 25px;
    }

    .footer-title {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        font-size: 11px;
    }

    .contact-item {
        font-size: 11px;
    }

    .footer-bottom {
        padding: 15px 0;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.forge-page-header {
    position: relative;
    min-height: 450px;
    padding: 180px 0 80px;
    background: var(--secondaryColor);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Industrial Grid Overlay */
.forge-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Technical Serial Decoration */
.forge-page-header::after {
    content: "PRJ-PN-024 // SYSTEM_ACTIVE";
    position: absolute;
    top: 40px;
    right: -50px;
    transform: rotate(90deg);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--primaryColor);
    letter-spacing: 4px;
    opacity: 0.3;
    pointer-events: none;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.1);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 100%),
        linear-gradient(to top, rgba(13, 13, 13, 1) 0%, transparent 40%);
}

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

.page-header-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 20px 0;
    line-height: 1;
    text-transform: uppercase;
}

.page-header-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
    border-left: 3px solid var(--primaryColor);
    padding-left: 20px;
}

@media (max-width: 991px) {
    .forge-page-header {
        min-height: 400px;
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .forge-page-header {
        min-height: 350px;
        padding: 120px 0 40px;
        align-items: center;
    }

    .page-header-title {
        font-size: 2.2rem;
    }

    .page-header-desc {
        font-size: 1rem;
        padding-left: 15px;
    }

    .forge-page-header::after {
        display: none;
    }
}



/* ========================================
   BREADCRUMB
   ======================================== */

.forge-breadcrumb-wrapper {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.forge-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.forge-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forge-breadcrumb .breadcrumb-item a {
    color: var(--forge-steel);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forge-breadcrumb .breadcrumb-item a:hover {
    color: var(--primaryColor);
}

.forge-breadcrumb .breadcrumb-separator {
    margin: 0 12px;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.2);
    display: flex;
}

.forge-breadcrumb .breadcrumb-item.active .active-label {
    color: var(--secondaryColor);
    font-weight: 700;
}

@media (max-width: 768px) {
    .forge-breadcrumb-wrapper {
        padding: 12px 0;
    }

    .forge-breadcrumb .breadcrumb-item {
        font-size: 11px;
    }

    .forge-breadcrumb .breadcrumb-separator {
        margin: 0 8px;
    }
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.forge-services-page {
    padding: 0;
    background: #ffffff;
}

.service-row-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-row-section:nth-child(even) {
    background: #fdfdfd;
}

.service-flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-row-section:nth-child(even) .service-flex-row {
    flex-direction: row-reverse;
}

.service-row-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-row-image-inner {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row-section:hover .service-row-image img {
    transform: scale(1.05);
}

.service-row-content {
    flex: 0 0 500px;
    max-width: 100%;
}

.service-row-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 80px;
    line-height: 1;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
}

.service-row-tag {
    color: var(--primaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-row-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 25px;
    line-height: 1.1;
}

.service-row-desc {
    font-size: 1.15rem;
    color: var(--forge-steel);
    line-height: 1.7;
    margin-bottom: 35px;
}



/* Decoration Elements */
.service-row-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primaryColor) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.service-row-section:nth-child(odd) .service-row-decoration {
    bottom: -100px;
    right: -100px;
}

.service-row-section:nth-child(even) .service-row-decoration {
    top: -100px;
    left: -100px;
}

@media (max-width: 1200px) {
    .service-flex-row {
        gap: 50px;
    }

    .service-row-content {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .service-row-section {
        padding: 80px 0;
    }

    .service-flex-row,
    .service-row-section:nth-child(even) .service-flex-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .service-row-content {
        order: 2;
    }

    .service-row-image {
        order: 1;
        width: 100%;
        max-width: 600px;
    }




}

@media (max-width: 576px) {
    .service-row-section {
        padding: 60px 0;
    }


}

/* Service Item Slider (Swiper) */
.service-item-slider {
    width: 100%;
    height: 100%;
}

.service-row-image-inner {
    max-height: 500px;
    /* Güvenlik sınırı */
}

.service-item-slider .swiper-slide {
    height: 100%;
    overflow: hidden;
}

.service-item-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-slider .swiper-button-next,
.service-item-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondaryColor);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item-slider .swiper-button-next::after,
.service-item-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}

.service-item-slider .swiper-button-next:hover,
.service-item-slider .swiper-button-prev:hover {
    background: var(--primaryColor);
    color: var(--secondaryColor);
}

.service-item-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.service-item-slider .swiper-pagination-bullet-active {
    background: var(--primaryColor);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 991px) {

    .service-item-slider .swiper-button-next,
    .service-item-slider .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Service Card */
.forge-service-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.forge-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--forge-silver);
}

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

.forge-service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forge-silver) 0%, #d0d3d8 100%);
}

.service-card-placeholder i {
    font-size: 48px;
    color: var(--forge-steel);
    opacity: 0.5;
}

.service-card-content {
    padding: 25px;
}

.service-card-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 14px;
    color: var(--forge-steel);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primaryColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.forge-service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* No Data State */
.forge-no-data {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
}

.no-data-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--forge-silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-data-icon i {
    font-size: 40px;
    color: var(--forge-steel);
}

.forge-no-data h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0 0 10px 0;
}

.forge-no-data p {
    font-size: 15px;
    color: var(--forge-steel);
    margin: 0 0 25px 0;
}

/* Pagination */
.forge-pagination {
    margin-top: 50px;
}

.forge-pagination .pagination {
    justify-content: center;
    gap: 8px;
}

.forge-pagination .page-link {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondaryColor);
    background: #ffffff;
    transition: all 0.3s ease;
}

.forge-pagination .page-link:hover {
    background: var(--secondaryColor);
    color: #ffffff;
    border-color: var(--secondaryColor);
}

.forge-pagination .page-item.active .page-link {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--secondaryColor);
}

/* Primary Button */
.btn-forge-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primaryColor);
    color: var(--secondaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-forge-primary:hover {
    background: var(--secondaryColor);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .forge-services-page {
        padding: 40px 0 60px;
    }

    .forge-filter-section {
        margin-bottom: 30px;
    }

    .forge-category-filter {
        gap: 8px;
    }

    .forge-category-filter a,
    .forge-category-filter .filter-item {
        padding: 8px 14px;
        font-size: 12px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* ========================================
   DYNAMIC PAGE CONTENT
   ======================================== */

.forge-page-content {
    padding: 60px 0 100px;
    background: #ffffff;
}

.forge-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.forge-page-content h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 40px 0 20px;
}

.forge-page-content h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 30px 0 15px;
}

.forge-page-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--forge-steel);
    margin-bottom: 20px;
}

.forge-page-content ul,
.forge-page-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.forge-page-content li {
    margin-bottom: 10px;
    color: var(--forge-steel);
}

.forge-page-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--forge-silver);
    border-left: 4px solid var(--primaryColor);
    border-radius: 0 8px 8px 0;
}

.forge-page-content blockquote p {
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .forge-page-content {
        padding: 40px 0 60px;
    }

    .forge-page-content h2 {
        font-size: 1.6rem;
    }

    .forge-page-content h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.forge-cta-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--secondaryColor);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.forge-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(26, 29, 35, 0.7) 100%);
}

.forge-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 35px 0;
}

.btn-forge-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--primaryColor);
    color: var(--secondaryColor);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-forge-cta:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-forge-cta i {
    transition: transform 0.3s ease;
}

.btn-forge-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .forge-cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-forge-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Intro Section */
.forge-about-intro {
    padding: 100px 0;
    background: #ffffff;
}

.about-image-stack {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
    aspect-ratio: 4/3;
    background: var(--forge-silver);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--forge-steel);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--secondaryColor);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border-bottom: 5px solid var(--primaryColor);
}

.exp-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.exp-year {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primaryColor);
    line-height: 1;
}

.exp-prefix {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primaryColor);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-content-text {
    color: var(--forge-steel);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Values Section */
.forge-values {
    padding: 100px 0;
    background: #f8f9fa;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primaryColor);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 40px;
    color: var(--primaryColor);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--forge-steel);
    margin: 0;
    line-height: 1.6;
}

/* Vision Mission Section */
.forge-vision-mission {
    background: var(--secondaryColor);
}

.vm-card {
    padding: 100px 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: #1e2128;
}

.vm-card.mission {
    background: #252932;
}

.vm-content {
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.vm-card .section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-stats-section .counter-item {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stats-section .counter-item:last-child {
    border-right: none;
}

@media (max-width: 991px) {
    .vm-card {
        padding: 70px 30px;
    }
}

@media (max-width: 768px) {

    .forge-about-intro,
    .forge-values {
        padding: 60px 0;
    }

    .about-image-stack {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .experience-badge {
        padding: 20px;
        min-width: 120px;
    }

    .exp-year {
        font-size: 32px;
    }

    .about-stats-section .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .about-stats-section .counter-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}