/* ==========================================================================
   Welcome Furniture v3 — Main Stylesheet
   Premium furniture manufacturing brand website
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-primary-red: #E3222B;
    --color-primary-blue: #2537C6;
    --color-dark-navy: #0D1326;
    --color-white: #FFFFFF;
    --color-light-gray: #F7F8FA;

    /* Extended Palette */
    --color-text: #5A6072;
    --color-text-dark: #2A3147;
    --color-border: rgba(13, 19, 38, 0.08);
    --color-overlay: rgba(13, 19, 38, 0.65);

    /* Typography */
    --font-family: "Poppins", sans-serif;
    --font-weight-body: 400;
    --font-weight-button: 600;
    --font-weight-heading: 800;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 70px;
    --container-max: 1320px;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(13, 19, 38, 0.06);
    --shadow-md: 0 8px 40px rgba(13, 19, 38, 0.1);
    --shadow-lg: 0 20px 60px rgba(13, 19, 38, 0.14);
    --shadow-hover: 0 16px 48px rgba(37, 55, 198, 0.18);

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-blur: blur(16px);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-red) 100%);
    --gradient-navy: linear-gradient(135deg, #151B32 0%, var(--color-dark-navy) 100%);
    --gradient-cta: linear-gradient(120deg, var(--color-primary-blue), #3B4FD4 40%, var(--color-primary-red));
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-body);
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-blue);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-heading);
    color: var(--color-text-dark);
    line-height: 1.25;
    margin: 0 0 16px;
}

p {
    margin: 0 0 20px;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--color-primary-blue);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: var(--section-padding-sm) 0;
}

.bg-light-gray {
    background-color: var(--color-light-gray);
}

.bg-dark-navy {
    background-color: var(--color-dark-navy);
}

.text-white {
    color: var(--color-white) !important;
}

.text-muted-custom {
    color: rgba(255, 255, 255, 0.72);
}

/* Section Title Component */
.section-header {
    margin-bottom: 56px;
}

.section-header.text-center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: var(--font-weight-button);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-primary-blue);
    margin-bottom: 14px;
}

.section-label::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 17px;
    color: var(--color-text);
    max-width: 600px;
}

.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-wf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: var(--font-weight-button);
    line-height: 1;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-wf-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(37, 55, 198, 0.3);
}

.btn-wf-primary:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(227, 34, 43, 0.35);
}

.btn-wf-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-wf-outline:hover {
    background: var(--color-white);
    color: var(--color-dark-navy);
    border-color: var(--color-white);
}

.btn-wf-dark {
    background: var(--color-dark-navy);
    color: var(--color-white);
}

.btn-wf-dark:hover {
    background: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-wf-light {
    background: var(--color-white);
    color: var(--color-dark-navy);
    box-shadow: var(--shadow-sm);
}

.btn-wf-light:hover {
    color: var(--color-primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #E8EBF5 0%, #D4DAEF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    font-size: 14px;
    font-weight: var(--font-weight-button);
    overflow: hidden;
    position: relative;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Top Contact Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--color-dark-navy);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.top-bar__list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__list a {
    color: rgba(255, 255, 255, 0.75);
}

.top-bar__list a:hover {
    color: var(--color-white);
}

.top-bar__list i {
    color: var(--color-primary-red);
    font-size: 12px;
}

.top-bar__social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar__social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all var(--transition-fast);
}

.top-bar__social a:hover {
    background: var(--color-primary-red);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Main Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.site-header.is-scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

.navbar-wf {
    padding: 18px 0;
    transition: padding var(--transition-base);
}

.site-header.is-scrolled .navbar-wf {
    padding: 12px 0;
}

.navbar-wf .navbar-brand img {
    height: 44px;
    width: auto;
    transition: height var(--transition-base);
}

.site-header.is-scrolled .navbar-wf .navbar-brand img {
    height: 38px;
}

.navbar-wf .navbar-nav {
    gap: 8px;
}

.navbar-wf .nav-link {
    font-size: 15px;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    padding: 10px 18px !important;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-wf .nav-link:hover,
.navbar-wf .nav-link.active {
    color: var(--color-primary-blue);
    background: rgba(37, 55, 198, 0.06);
}

.navbar-wf .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    margin-top: 12px;
    min-width: 260px;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar-wf .dropdown-item {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

.navbar-wf .dropdown-item:hover {
    background: var(--color-light-gray);
    color: var(--color-primary-blue);
}

.navbar-wf .dropdown-item i {
    width: 20px;
    color: var(--color-primary-red);
    margin-right: 8px;
}

.navbar-wf .nav-cta {
    margin-left: 12px;
}

.navbar-toggler-wf {
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
}

.navbar-toggler-wf span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark-navy);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar-toggler-wf[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler-wf[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-wf[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.is-active .hero-slide__bg {
    transform: scale(1);
}

/* Hero slide backgrounds — replace URLs with final production images */
.hero-slide--1 .hero-slide__bg {
    background-image: url("https://placehold.co/1920x1080/0D1326/FFFFFF?text=Premium+Furniture+Manufacturing");
}

.hero-slide--2 .hero-slide__bg {
    background-image: url("https://placehold.co/1920x1080/2537C6/FFFFFF?text=Office+%26+Commercial+Furniture");
}

.hero-slide--3 .hero-slide__bg {
    background-image: url("https://placehold.co/1920x1080/E3222B/FFFFFF?text=Custom+%26+Modular+Furniture");
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13, 19, 38, 0.88) 0%,
        rgba(13, 19, 38, 0.55) 50%,
        rgba(13, 19, 38, 0.25) 100%
    );
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: var(--font-weight-button);
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--color-primary-red);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat__number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-heading);
    color: var(--color-white);
    line-height: 1;
}

.hero-stat__number span {
    color: var(--color-primary-red);
}

.hero-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 48px;
    right: 0;
    left: 0;
    z-index: 10;
}

.hero-controls__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.hero-dot.is-active,
.hero-dot:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}

.hero-arrows {
    display: flex;
    gap: 12px;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-arrow:hover {
    background: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
}

/* --------------------------------------------------------------------------
   Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--gradient-navy);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 55, 198, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 34, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.breadcrumb-wf {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-wf a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-wf a:hover {
    color: var(--color-white);
}

.breadcrumb-wf li:not(:last-child)::after {
    content: "/";
    margin-left: 12px;
    opacity: 0.5;
}

.breadcrumb-wf li:last-child {
    color: var(--color-primary-red);
    font-weight: var(--font-weight-button);
}

/* --------------------------------------------------------------------------
   About Preview / Content Blocks
   -------------------------------------------------------------------------- */
.about-preview__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-preview__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-preview__badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    padding: 24px 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-preview__badge-number {
    font-size: 2.75rem;
    font-weight: var(--font-weight-heading);
    color: var(--color-primary-blue);
    line-height: 1;
}

.about-preview__badge-text {
    font-size: 14px;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    margin-top: 4px;
}

.about-preview__floating {
    position: absolute;
    top: 32px;
    right: -24px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.feature-list {
    margin: 28px 0 36px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
}

.feature-list li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 55, 198, 0.08);
    color: var(--color-primary-blue);
    border-radius: 50%;
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Product / Service Cards
   -------------------------------------------------------------------------- */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 19, 38, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.product-card:hover .product-card__icon {
    background: var(--color-primary-blue);
    color: var(--color-white);
}

.product-card__body {
    padding: 28px 28px 32px;
}

.product-card__title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-card__title a:hover {
    color: var(--color-primary-blue);
}

.product-card__desc {
    font-size: 15px;
    margin-bottom: 20px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: var(--font-weight-button);
    color: var(--color-primary-blue);
}

.product-card__link i {
    transition: transform var(--transition-fast);
}

.product-card__link:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
    position: relative;
    background: var(--gradient-navy);
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.stat-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary-red);
}

.stat-card__number {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: var(--font-weight-heading);
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------------------------------
   Why Choose Cards
   -------------------------------------------------------------------------- */
.why-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 55, 198, 0.15);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 24px;
    transition: transform var(--transition-base);
}

.why-card:hover .why-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.why-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card__desc {
    font-size: 15px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Process Steps
   -------------------------------------------------------------------------- */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step__number {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-heading);
    color: var(--color-primary-blue);
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.process-step__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step__desc {
    font-size: 14px;
    margin: 0;
}

.process-line {
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-cta);
    padding: 64px 72px;
    margin-top: -60px;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.cta-banner__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-banner__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Testimonial
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    color: #F5A623;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 28px;
    line-height: 1.8;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--font-weight-heading);
    font-size: 18px;
}

.testimonial-card__name {
    font-size: 15px;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    margin: 0;
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--color-text);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Mission / Vision Blocks
   -------------------------------------------------------------------------- */
.mv-block {
    margin-bottom: 80px;
}

.mv-block:last-child {
    margin-bottom: 0;
}

.mv-block__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mv-block__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.mv-block__image-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.mv-block__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-list {
    margin-top: 24px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
}

.mv-list li i {
    color: var(--color-primary-red);
}

/* --------------------------------------------------------------------------
   Products Page — Filter Tabs
   -------------------------------------------------------------------------- */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: var(--font-weight-button);
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.is-active {
    background: var(--color-primary-blue);
    color: var(--color-white);
    border-color: var(--color-primary-blue);
}

.product-grid-item {
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.product-grid-item.is-hidden {
    display: none;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 55, 198, 0.15);
}

.contact-info-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-info-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-card__text {
    font-size: 15px;
    margin: 0;
}

.contact-info-card__text a {
    color: var(--color-primary-blue);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.form-wf .form-label {
    font-size: 14px;
    font-weight: var(--font-weight-button);
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-wf .form-control,
.form-wf .form-select {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-wf .form-control:focus,
.form-wf .form-select:focus {
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 55, 198, 0.1);
}

.form-wf textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: var(--color-light-gray);
    border: 1px solid var(--color-border);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--color-dark-navy);
    color: rgba(255, 255, 255, 0.7);
}

.footer-cta {
    background: var(--gradient-cta);
    padding: 56px 0;
    margin-top: 80px;
}

.footer-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-cta__desc {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-newsletter {
    display: flex;
    gap: 12px;
}

.footer-newsletter input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-family);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: var(--glass-blur);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.22);
}

.footer-main {
    padding: 80px 0 48px;
}

.footer-widget__logo img {
    height: 44px;
    margin-bottom: 20px;
}

.footer-widget__desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-widget__title {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-widget__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.footer-links a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--color-primary-red);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-red);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary-red);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom__text a {
    color: var(--color-primary-red);
}

.footer-bottom__text a:hover {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Scroll to Top
   -------------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-light-gray);
    border-top-color: var(--color-primary-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
