/*
 * Main CSS Stylesheet
 * Bravat Inspired Theme
 */

/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Viewport Height - for mobile browser bar handling */
    --vh: 1vh;

    /* Colors - Bravat Design */
    --color-primary: #000000;
    --color-secondary: #f8f7f5;
    --color-accent: #C09463;
    --color-accent-hover: #b08553;
    --color-accent-2: #3c3c3c;
    --color-gradient-1: #000000;
    --color-gradient-2: #333333;
    --color-text: #000000;
    --color-text-light: #666666;
    --color-text-muted: #9e9e9e;
    --color-text-light-gray: #c1c0c0;
    --color-text-off-white: #e4e6e7;
    --color-border: #e0e0e0;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg-light: #f8f7f5;
    --color-bg-card: #fbfbfc;

    /* Typography */
    --font-primary: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    --font-heading: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Container */
    --container-width: 1296px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Use dynamic viewport height on mobile */
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Prevent layout shift from mobile browser bar */
    min-height: 100vh;
    min-height: 100dvh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

ul,
ol {
    list-style: none;
}

/* ===========================
   Layout Components
   =========================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-content {
    min-height: 60vh;
}

/* ===========================
   Header Styles - Matching Reference
   =========================== */
.site-header {
    position: relative;
    width: 100%;
    height: 160px;
    background-color: #000000;
    z-index: 1000;
}

.header-container {
    position: relative;
    width: 100%;
    max-width: 1512px;
    height: 160px;
    margin: 0 auto;
}

/* Logo */
.header-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 228px;
    height: 76px;
    z-index: 10;
}

.header-logo a,
.header-logo .custom-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.header-logo img,
.header-logo .custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 76px;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
}

/* Navigation */
.main-navigation {
    position: absolute;
    top: 116px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1296px;
    z-index: 10;
}

.header-nav-menu,
.main-navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-menu li,
.main-navigation li {
    position: relative;
}

.header-nav-menu a,
.main-navigation a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Remove default blue focus outline on mobile nav links */
.header-nav-menu a:focus,
.main-navigation a:focus {
    outline: none;
}

.header-nav-menu .current-menu-item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #C09463;
}

.header-nav-menu a:hover,
.main-navigation a:hover {
    color: #C09463;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.25s ease, opacity 0.2s ease;
    border-radius: 1px;
    transform-origin: center;
}

/* Hamburger animation when active */
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Header – scrolls with page (no sticky) */
@media (max-width: 767px) {
    .site-header {
        height: auto;
        min-height: 70px;
        padding: 15px 0;
        position: relative;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header-container {
        height: auto;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 0 16px;
    }

    .header-logo {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 140px;
        height: auto;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        z-index: 1002;
        flex-shrink: 0;
        margin-left: auto;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(0, 0, 0, 0.98);
        transform: translateX(-100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        padding: 80px 20px 40px;
    }

    .main-navigation.toggled {
        transform: translateX(0);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
    }

    /* Body scroll lock when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .header-nav-menu,
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: 1em;
        text-align: center;
        width: 100%;
    }

    .header-nav-menu li,
    .main-navigation ul li {
        width: 100%;
    }

    .header-nav-menu a,
    .main-navigation a {
        font-size: 18px;
        padding: 16px 24px;
        display: block;
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .header-nav-menu a:hover,
    .main-navigation a:hover {
        color: var(--color-accent);
        background: rgba(255, 255, 255, 0.05);
    }

    .header-spacer {
        display: none;
    }
}

/* ===========================
   Button Styles
   =========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

/* ===========================
   Hero Carousel
   =========================== */
.hero-carousel {
    position: relative;
    height: 80vh;
    height: 80dvh;
    overflow: hidden;
    background-color: #000000;
}

.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    width: 100%;
}

.hero-content .container {
    max-width: 1024px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.025em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: #f3f4f6;
}

.hero-btn svg {
    flex-shrink: 0;
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.hero-indicator {
    width: 40px;
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    padding: 0;
    border-radius: 1px;
    appearance: none;
    -webkit-appearance: none;
}

.hero-indicator.active {
    background-color: #ffffff;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Front Page Hero Section (Old)
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.video-nav-btn {
    position: absolute;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video-nav-prev {
    left: 30px;
}

.video-nav-next {
    right: 30px;
}

.video-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.video-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Section Styles
   =========================== */
.section-header {
    margin-bottom: var(--spacing-lg);
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    position: relative;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Product Categories Section - Modern Style */
.product-categories-section {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
}

.section-title-underline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #000000;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background-color: #000000;
}

.section-intro {
    font-size: 1rem;
    color: #6b7280;
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    font-weight: 300;
    line-height: 1.6;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-category-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-category-item:hover {
    transform: translateY(-8px);
}

.product-category-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border-radius: 0;
    background-color: #f8f9fa;
}

.product-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-category-content {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #e5e7eb;
}

.product-category-name {
    font-size: 1.125rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-category-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Show More Button */
.show-more-wrapper {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-show-more {
    display: inline-block;
    padding: 14px 48px;
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Simple Projects Grid */
.featured-projects-modern {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
}

.projects-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.project-simple-card {
    background: #ffffff;
    overflow: hidden;
}

.project-simple-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.project-simple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.project-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    color: #000000;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.project-simple-content {
    padding: var(--spacing-md);
    border-top: 1px solid #e5e7eb;
}

.project-simple-title {
    font-size: 1.125rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-simple-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-simple-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.project-simple-location {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.link-underline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #000000;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.link-underline:hover {
    color: #6b7280;
    border-color: #6b7280;
}

.link-underline svg {
    flex-shrink: 0;
}

/* CTA Black Section */
.cta-black-section {
    padding: var(--spacing-xxl) 0;
    background-color: #000000;
    color: #ffffff;
}

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

.cta-black-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.025em;
}

.cta-black-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
}

.cta-black-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-black-btn:hover {
    background-color: #f3f4f6;
}

.cta-black-btn svg {
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .product-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .projects-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-carousel {
        height: 60vh;
        height: 60dvh;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 1rem;
    }

    .hero-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .projects-simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

/* Solutions Section */
.solutions-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.category-grid-wrapper {
    display: block;
}

.category-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000;
    background-color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    padding: 0;
}

.category-nav-btn:hover {
    background-color: #000;
    color: #ffffff;
    transform: scale(1.1);
}

.category-nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .category-nav-btn {
        width: 40px;
        height: 40px;
    }

    .category-grid-wrapper {
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .category-nav-btn {
        display: none;
    }

    .category-grid-wrapper {
        gap: 0;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-card {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-card {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        height: 180px;
    }
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    z-index: 1;
}

.category-card-overlay {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.95) 100%);
    color: #ffffff;
    height: 100%;
    transition: background 0.3s ease;
    pointer-events: none;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.98) 100%);
}

.category-card-title {
    font-size: 1.25rem;
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card-desc {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 3;
    line-height: 1.4;
}

.category-card:hover .category-card-image {
    transform: scale(1.05);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.solution-card {
    background-color: #000;
    padding: 0;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 350px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.solution-card::before {
    display: none;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.solution-card-inner {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.92) 0%, rgba(26, 26, 26, 0.92) 100%);
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.solution-card-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 80px;
    background: linear-gradient(180deg, #000000 0%, #ff3333 40%, #ffcc00 100%);
}

.solution-card-image {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.solution-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.4s ease;
}

.solution-card:hover .solution-card-image::after {
    background: rgba(0, 0, 0, 0.08);
}

.solution-card:hover .solution-card-image {
    transform: scale(1.06);
}

.solution-card-category {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.solution-title {
    font-size: 2rem;
    margin: 0 0 var(--spacing-md) 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 300;
}

.solution-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.spec-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Solution card link styling */
.solution-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    visibility: visible;
}

.solution-card-link:hover {
    color: inherit;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: #ffffff;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #000000;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: #000000;
}

.service-card:hover .service-icon svg {
    stroke: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: #000000;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Specified For Section */
.specified-section {
    padding: var(--spacing-xxl) 0;
    background: #ffffff;
}

.specified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.specified-item {
    padding: var(--spacing-lg);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: var(--transition-base);
}

.specified-item:hover {
    border-color: #000000;
    background: #f8f9fa;
}

.specified-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.specified-item h3 {
    font-size: 1.125rem;
    margin: 0;
    color: #000000;
}

.specified-item:hover .specified-number {
    color: #000000;
}

/* Brand Story Section */
.brand-story-section {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.brand-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.brand-story-text {
    max-width: 600px;
}

.brand-story-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    border-radius: 4px;
}

.brand-story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: var(--spacing-lg);
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.brand-story-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-xxl) 0;
    background: #000000;
    color: #ffffff;
}

.newsletter-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-text {
    text-align: left;
}

.newsletter-text .section-title {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-text .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.services-section .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.services-section .section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.services-section .section-title,
.services-section .section-subtitle {
    color: var(--color-white);
}


/* Featured Products Section */
.featured-products-section {
    padding: var(--spacing-xxl) 0;
    background-color: #fafbfc;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.featured-product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    background-color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.featured-product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

.featured-product-card:hover .featured-product-image {
    transform: scale(1.08);
}

.featured-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl);
    transition: all 0.4s ease;
}

.featured-product-card:hover .featured-product-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.featured-product-content {
    width: 100%;
    color: #ffffff;
}

.featured-product-category {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #cccccc;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.featured-product-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.featured-product-desc {
    font-size: 0.95rem;
    color: #dddddd;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.featured-product-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.featured-product-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.4s ease;
}

.featured-product-card:hover .featured-product-link::before {
    width: 100%;
}

.featured-product-card:hover .featured-product-link {
    transform: translateX(4px);
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
}

/* Featured Projects - Modern Design */
.featured-projects-modern {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-label {
    display: block;
    color: #c09463;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.projects-modern-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.project-modern-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-modern-card.regular {
    grid-column: span 4;
    height: 400px;
}

.project-modern-card.large {
    grid-column: span 8;
    height: 400px;
}

.project-modern-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.project-modern-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-modern-card:hover .project-modern-image {
    transform: scale(1.05);
}

.project-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
    transition: background 0.4s ease;
}

.project-modern-card:hover .project-modern-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.project-modern-info {
    color: #ffffff;
    width: 100%;
}

.project-modern-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-modern-title {
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin: var(--spacing-sm) 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.project-modern-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.project-modern-location svg {
    width: 16px;
    height: 16px;
}

.project-modern-arrow {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.project-modern-card:hover .project-modern-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.25);
}

.project-modern-arrow svg {
    width: 20px;
    height: 20px;
}

.btn-outline-large {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: 2px solid #000000;
    color: #000000;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-large:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.project-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.5s ease;
}

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

.project-card:hover .project-image::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.project-content {
    padding: var(--spacing-xl) var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
}

.project-location {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.project-category {
    font-size: 0.7rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #e8e8e8;
}

.project-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.05em;
    padding-top: var(--spacing-md);
    position: relative;
}

.project-link:hover {
    color: #000;
    transform: translateX(4px);
}

.project-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-black);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-link:hover::before {
    width: 100%;
}

.project-link::after {
    content: '→';
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.project-link:hover::after {
    transform: translateX(4px);
}

.project-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.project-types li {
    padding: var(--spacing-md);
    background-color: #ffffff;
    border-left: 3px solid #000000;
    border-radius: 0;
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    line-height: 1.6;
}

.project-types li:hover {
    border-left-color: #000000;
    border-left-width: 5px;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product Gallery Section */
.product-gallery {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.product-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-base);
}

.product-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: var(--spacing-md);
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
}

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

.newsletter-header {
    margin-bottom: var(--spacing-lg);
}

/* ===========================
   Posts Grid
   =========================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.entry-header {
    margin-bottom: var(--spacing-md);
}

.entry-title {
    margin-bottom: var(--spacing-sm);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.entry-featured-image {
    margin-bottom: var(--spacing-md);
}

.entry-featured-image img {
    width: 100%;
    height: auto;
}

.entry-content {
    margin-bottom: var(--spacing-md);
}

.entry-footer {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

/* ===========================
   Footer Styles - Matching Reference
   =========================== */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 0;
    position: relative;
    min-height: 383px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0px;
}

/* Footer Top: Grid + Follow Us side by side */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* Footer Grid - 3 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: 200px 200px 200px;
    gap: 60px;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0 0 28px 0;
}

.footer-col-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Quick Links Column */
.footer-col-links {
    padding-top: 5px;
}

.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-nav a:hover {
    color: #c09463;
}

/* Contact Column */
.footer-col-contact {
    padding-top: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-info .contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.footer-contact-info .contact-label:not(:first-child) {
    margin-top: 12px;
}

.footer-contact-info .contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #c1c0c0;
    line-height: 1.5;
    margin: 0;
}

/* Social Section - Far Right */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.footer-social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon-youtube svg {
    width: 34px;
    height: 24px;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Footer Bottom: Divider with Brand */
.footer-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer-bottom-section .footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 0;
}

.footer-brand-center {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 1em;
}

.footer-brand-center .footer-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-brand-center .custom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-center .custom-logo {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-scroll-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(-90deg);
    cursor: pointer;
}

.footer-scroll-arrow svg {
    width: 28px;
    height: 28px;
}

.footer-scroll-arrow:hover svg path {
    fill: #c09463;
}

/* Footer Responsive */
@media (max-width: 1023px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-social-section {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand-center {
        font-size: 24px;
    }

    .footer-scroll-arrow {
        display: none;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 400px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transform: scale(1.1);
    }

    .menu-toggle:active {
        transform: scale(0.95);
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        padding: var(--spacing-md);
        min-width: 240px;
        list-style: none;
        margin: 0;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation ul li:last-child {
        border-bottom: none;
    }

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

    .specified-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .brand-story-image {
        height: 400px;
        order: -1;
    }

    .brand-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

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

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .newsletter-icon {
        margin: 0 auto;
    }

    .newsletter-text {
        text-align: center;
    }

    .projects-modern-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .project-modern-card.regular,
    .project-modern-card.large {
        grid-column: span 1;
        height: 350px;
    }

    .project-modern-title {
        font-size: 1.5rem;
    }

    .main-navigation ul a {
        padding: var(--spacing-md) 0;
        text-transform: none;
        font-size: 0.95rem;
        letter-spacing: 0;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    /* Project responsive */
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }

    .project-image {
        height: 240px;
    }

    /* Product responsive */
    .product-layout {
        grid-template-columns: 1fr;
    }

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

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

    .filter-options {
        flex-direction: column;
    }

    .filter-btn {
        text-align: center;
    }

    /* Featured products responsive */
    .featured-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }

    .featured-product-card {
        height: 320px;
    }

    .featured-product-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .solution-card {
        grid-template-columns: 1fr;
    }

    .solution-card-image {
        min-height: 300px;
    }

    .solution-card-inner {
        padding: var(--spacing-lg);
    }

    .solution-title {
        font-size: 1.25rem;
    }

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

    /* Product responsive */
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-details {
        padding: var(--spacing-lg);
    }

    .product-title {
        font-size: 1.75rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Back to Top Button – hidden (no sticky elements on scroll) */
#back-to-top {
    display: none !important;
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress Bar – hidden (no sticky elements on scroll) */
.scroll-progress {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #000000;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-secondary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Button Small */
.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
}

/* Product Styles */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: var(--spacing-xl) 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.product-images {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-details {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, #000000 0%, #ff3333 40%, #ffcc00 100%);
}

.product-categories {
    margin-bottom: var(--spacing-lg);
}

.product-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.product-sku {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.product-dimensions {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.6;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-left: 3px solid rgba(255, 51, 51, 0.8);
    border-radius: 4px;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #aaaaaa;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.spec-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.product-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    color: #e8e8e8;
    font-size: 0.95rem;
}

.product-specifications {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-left: 3px solid rgba(255, 51, 51, 0.8);
    border-radius: 4px;
}

.product-specifications h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    color: #ffffff;
}

.specs-content {
    font-size: 0.9rem;
    color: #dddddd;
    line-height: 1.6;
}

.specs-content p {
    margin-bottom: var(--spacing-sm);
}

.product-specifications h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.product-actions .btn {
    flex: 1;
    min-width: 200px;
}

.product-actions .btn-primary {
    background-color: #ffffff;
    color: #3a3a3a;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.product-actions .btn-primary:hover {
    background-color: #f0f0f0;
}

.product-actions .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.product-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.related-products {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-secondary);
}

.related-products h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Product Archive/Grid */
.product-filters {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-border);
}

.filter-label {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.filter-btn .count {
    opacity: 0.6;
    margin-left: 0.25rem;
}

.product-item .product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.product-sku-small {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    min-height: 300px;
}

.placeholder-text {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: #fff;
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.bravat-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-message {
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    border-radius: 4px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

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

    .brand-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: var(--spacing-md) 0;
    }
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--color-text);
}

.contact-info-item a:hover {
    color: #000;
}

/* Page Hero */
.page-hero {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-secondary);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-intro {
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ===========================
   Projects Archive Page - Bravat Style
   =========================== */

/* Hero Section - Bravat Style */
.projects-hero-bravat {
    padding: 5rem 0 4rem;
    background-color: #000000;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .projects-hero-bravat {
        padding: 6rem 0 5rem;
    }
}

.projects-hero-bravat-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.projects-hero-bravat-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.projects-hero-bravat-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Projects Display Section - Bravat Style */
.projects-display-section {
    padding: 4rem 0 6rem;
    background-color: #1a1a1a;
}

.projects-display-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-display-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-display-container {
        padding: 0 2rem;
    }
}

.projects-display-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-display-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-display-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.project-display-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: default;
}

.project-display-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.project-display-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #000000;
}

.project-display-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.project-display-card:hover .project-display-image {
    transform: scale(1.05);
}

.project-display-content {
    padding: 1.5rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

.project-display-category-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.project-display-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.project-display-rating .star {
    color: #d4af37;
    font-size: 1rem;
    line-height: 1;
}

.project-display-rating .star.filled {
    color: #d4af37;
}

.project-display-rating .star:not(.filled) {
    color: rgba(255, 255, 255, 0.3);
}

.project-display-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .project-display-title {
        font-size: 1.375rem;
    }
}

.project-display-location {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.projects-no-projects-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Product Categories Section - Bravat Style */
.product-categories-section-bravat {
    padding: 3rem 0 5rem;
    background-color: #000000;
}

.product-categories-container-bravat {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .product-categories-container-bravat {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-categories-container-bravat {
        padding: 0 2rem;
    }
}

.product-categories-grid-bravat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .product-categories-grid-bravat {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .product-categories-grid-bravat {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-categories-grid-bravat {
        gap: 2rem;
    }
}

.product-category-card-bravat {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #000000;
}

/* When card has content below (not overlay) */
.product-category-card-bravat:has(.product-category-card-content):not(:has(.product-category-card-overlay)) {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.product-category-card-bravat:has(.product-category-card-content):not(:has(.product-category-card-overlay)) .product-category-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.product-category-card-bravat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.product-category-card-bravat:hover .product-category-card-image {
    transform: scale(1.05);
}

/* Overlay style (for bathroom page) */
.product-category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    transition: background 0.3s ease;
}

.product-category-card-bravat:hover .product-category-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

/* Content below image style (for home page) */
.product-category-card-bravat .product-category-card-content {
    position: relative;
    z-index: 1;
}

.product-category-card-content {
    padding: 1.5rem;
    text-align: center;
    background-color: #ffffff;
}

.product-category-card-content .product-category-card-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-category-card-subtitle {
    font-size: 0.875rem;
    color: #666666;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Overlay title style (when using overlay) */
.product-category-card-overlay .product-category-card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .product-category-card-overlay .product-category-card-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
}

.products-hero-bravat {
    padding: 5rem 0 4rem;
    background-color: #000000;
    text-align: center;
}

@media (min-width: 768px) {
    .products-hero-bravat {
        padding: 6rem 0 5rem;
    }
}

.products-hero-bravat-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.products-hero-bravat-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.products-hero-bravat-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: #ffffff;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

.products-no-categories-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Product Page Styles (product.html design)
   ======================================== */

.product-page {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Products Hero Section */
.products-hero {
    position: relative;
    width: 100%;
    height: 574px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.products-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 1296px;
    padding: 0 20px;
}

.products-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.products-hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.products-hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Search Section */
.products-search-section {
    max-width: 1296px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.products-search-container {
    width: 100%;
}

.products-search-form {
    display: flex;
    gap: 20px;
    align-items: center;
}

.products-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 13px 20px;
    height: 50px;
}

.products-search-input .search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.products-search-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    outline: none;
}

.products-search-input input::placeholder {
    color: #707070;
}

.products-filter-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 25px;
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14.9px;
    font-weight: 700;
    color: #191919;
    transition: all 0.2s;
    height: 50px;
}

.products-filter-button:hover {
    background-color: #f9f9f9;
}

.products-filter-button .filter-icon {
    width: 18px;
    height: 18px;
}

/* Products Category Filters */
.products-category-filters {
    max-width: 1296px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.products-category-filters-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.products-category-btn {
    flex: 1;
    min-width: 140px;
    height: 44px;
    border: none;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-color: #333;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.products-category-btn:hover {
    transform: translateY(-2px);
}

.category-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0;
    transition: background 0.2s;
}

.category-btn-overlay.active {
    background: rgba(192, 148, 99, 0.6);
}

.products-category-btn span {
    position: relative;
    z-index: 1;
}

/* Products Grid Section */
.products-grid-section {
    padding-bottom: 60px;
}

.products-grid-container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.products-card {
    position: relative;
    height: 418px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}

.products-card:hover {
    transform: translateY(-8px);
}

.products-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    border-radius: 16px;
}

.products-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #ffffff;
}

.products-card-category {
    display: inline-block;
    background-color: #fbfbfc;
    color: #000000;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
    width: fit-content;
}

.products-card-title {
    font-size: 26px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px;
    color: #ffffff;
}

.products-card-description {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #cccccc;
    margin: 0;
}

/* Load More Button */
.products-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.products-load-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.2s;
}

.products-load-more-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.products-load-more-btn svg {
    width: 24px;
    height: 24px;
}

.products-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Products Page Responsive */
@media (max-width: 1366px) {

    .products-hero-content,
    .products-search-section,
    .products-category-filters,
    .products-grid-container {
        max-width: 1100px;
    }
}

@media (max-width: 1200px) {

    .products-hero-content,
    .products-search-section,
    .products-category-filters,
    .products-grid-container {
        max-width: 960px;
    }

    .products-hero-title {
        font-size: 52px;
    }

    .products-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .products-hero-title {
        font-size: 44px;
    }

    .products-category-filters-container {
        flex-wrap: nowrap;
    }

    .products-category-btn {
        min-width: 140px;
    }

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

@media (max-width: 767px) {
    .products-hero {
        height: 400px;
    }

    .products-hero-title {
        font-size: 36px;
    }

    .products-hero-description {
        font-size: 16px;
    }

    .products-search-section {
        margin: 40px auto 30px;
    }

    .products-search-form {
        flex-direction: column;
    }

    .products-search-input,
    .products-filter-button {
        width: 100%;
    }

    .products-category-filters {
        margin-bottom: 40px;
    }

    .products-category-filters-container {
        gap: 12px;
    }

    .products-card {
        height: 320px;
    }

    .products-card-title {
        font-size: 22px;
    }

    .products-card-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .products-hero {
        height: 300px;
    }

    .products-hero-title {
        font-size: 28px;
    }

    .products-hero-subtitle {
        font-size: 12px;
    }

    .products-hero-description {
        font-size: 14px;
        line-height: 22px;
    }

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

    .products-card {
        height: 360px;
    }
}

/* Product Detail Page */
.product-detail-page {
    min-height: 100vh;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

.product-detail-page article.product {
    max-width: 1512px;
    margin: 0 auto;
}

.product-detail-page .back-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 40px 0 24px 108px;
    padding: 0;
    transition: opacity 0.2s;
}

.product-detail-page .back-button:hover {
    opacity: 0.7;
}

.product-detail-page .back-button span {
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    line-height: normal;
}

.product-detail-page .back-button svg {
    transform: rotate(180deg);
}

.product-detail-page .product-detail-container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    margin-bottom: 48px;
}

.product-detail-page .product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    min-height: 0;
    padding: 0;
}

.product-detail-page .main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 798 / 711;
    background-color: #d9d9d9;
    overflow: hidden;
}

.product-detail-page .main-swiper {
    width: 100%;
    aspect-ratio: 798 / 711;
    background-color: #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
}

.product-detail-page .main-swiper a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-detail-page .main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    cursor: zoom-in;
}

.product-detail-page .main-swiper .swiper-button-next,
.product-detail-page .main-swiper .swiper-button-prev {
    color: #000000;
}

.product-detail-page .thumb-swiper {
    width: 100%;
    height: 130px;
}

.product-detail-page .thumb-swiper .swiper-slide {
    width: 130px;
    height: 100%;
    opacity: 0.6;
    transition: opacity 0.3s;
    cursor: pointer;
    background-color: #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
}

.product-detail-page .thumb-swiper .swiper-slide-thumb-active,
.product-detail-page .thumb-swiper .swiper-slide:hover {
    opacity: 1;
}

.product-detail-page .thumb-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .product-info {
    padding-top: 40px;
}

.product-detail-page .product-sku {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    margin-bottom: 24px;
}

.product-detail-page .product-info .product-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
    margin-bottom: 40px;
}

.product-detail-page .product-info .product-description {
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 1.6;
    margin-bottom: 40px;
}

.product-detail-page .divider {
    height: 0.7px;
    background-color: #c1c0c0;
    margin: 40px 0;
}

.product-detail-page .features-title {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
    margin-bottom: 28px;
}

.product-detail-page .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail-page .features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-detail-page .features-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.product-detail-page .features-list li span {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
}

.product-detail-page .cad-files {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.product-detail-page .cad-file-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #ffffff;
}

.product-detail-page .file-icon {
    width: 44px;
    height: 44px;
    background-color: #e5e5e5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-detail-page .file-icon svg {
    width: 22px;
    height: 22px;
}

.product-detail-page .file-info {
    flex: 1;
}

.product-detail-page .file-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: normal;
    margin: 0 0 4px;
}

.product-detail-page .file-info p {
    font-size: 11px;
    font-weight: 400;
    color: #888888;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-page .download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: #bda379;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.product-detail-page .download-button:hover {
    background-color: #a88d63;
    color: #ffffff;
}

.product-detail-page .download-button:hover {
    background-color: #a07d50;
    border-color: #a07d50;
    color: #ffffff;
}

.product-detail-page .download-button svg {
    width: 20px;
    height: 20px;
}

.product-detail-page .related-products {
    max-width: 1296px;
    margin: 100px auto 0;
    padding: 0 20px;
    background: transparent;
}

.product-detail-page .related-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.product-detail-page .related-header h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: #000000;
    margin: 0;
}

.product-detail-page .related-header .underline {
    width: 142px;
    height: 1px;
    background-color: #c09463;
}

.product-detail-page .related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.product-detail-page .show-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 60px;
    margin: 0 0 0 auto;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.product-detail-page .show-more-button:hover {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 1440px) {
    .product-detail-page .product-detail-container {
        grid-template-columns: 600px 1fr;
    }
}

@media (max-width: 1200px) {
    .product-detail-page .back-button {
        margin-left: 60px;
    }

    .product-detail-page .product-detail-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .product-detail-page .product-info {
        padding-top: 20px;
    }
}

@media (max-width: 992px) {
    .product-detail-page .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-detail-page .related-header h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .product-detail-page .back-button {
        margin-left: 20px;
    }

    .product-detail-page .thumb-swiper {
        height: 100px;
    }

    .product-detail-page .thumb-swiper .swiper-slide {
        width: 100px;
    }

    .product-detail-page .product-info .product-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .product-detail-page .product-info .product-description {
        font-size: 16px;
    }

    .product-detail-page .features-title {
        font-size: 18px;
    }

    .product-detail-page .features-list li span {
        font-size: 14px;
    }

    .product-detail-page .related-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .product-detail-page .related-products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-page .show-more-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-detail-page .thumb-swiper {
        height: 80px;
    }

    .product-detail-page .thumb-swiper .swiper-slide {
        width: 80px;
    }

    .product-detail-page .cad-file-item {
        flex-wrap: wrap;
    }

    .product-detail-page .download-button {
        width: 100%;
        justify-content: center;
    }
}

/* Projects Grid Section - Bravat Style */
.projects-grid-section-bravat {
    padding: 4rem 0;
    background-color: #000000;
}

.projects-grid-container-bravat {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-grid-container-bravat {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-grid-container-bravat {
        padding: 0 2rem;
    }
}

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

@media (min-width: 768px) {
    .projects-grid-bravat {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .projects-grid-bravat {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.project-card-bravat {
    display: flex;
    flex-direction: column;
    background-color: #000000;
    color: #ffffff;
}

.project-card-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.project-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    width: fit-content;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-card-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.project-card-rating .star {
    color: #d4af37;
    font-size: 1rem;
    line-height: 1;
}

.project-card-rating .star.filled {
    color: #d4af37;
}

.project-card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.project-card-location {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.projects-no-projects-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Project Categories Section - Bravat Style */
.projects-categories-section {
    padding: 3rem 0 5rem;
    background-color: #ffffff;
}

.projects-categories-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-categories-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-categories-container {
        padding: 0 2rem;
    }
}

.projects-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.projects-categories-grid>* {
    display: block;
    list-style: none;
}

@media (min-width: 640px) {
    .projects-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .projects-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-categories-grid {
        gap: 2rem;
    }
}

.project-category-card-bravat {
    position: relative;
    display: block !important;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 250px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    background-color: #000000;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .project-category-card-bravat {
        min-height: 300px;
    }
}

@media (min-width: 1024px) {
    .project-category-card-bravat {
        min-height: 350px;
    }
}

.project-category-card-bravat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-category-card-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

.project-category-card-bravat:hover .project-category-card-image {
    transform: scale(1.08);
}

.project-category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .project-category-card-overlay {
        padding: 3rem 2.5rem;
    }
}

.project-category-card-title {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 !important;
    color: #ffffff !important;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: block;
}

@media (min-width: 768px) {
    .project-category-card-title {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .project-category-card-title {
        font-size: 1.5rem;
    }
}

.project-category-card-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0.5rem 0 0 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .project-category-card-desc {
        font-size: 0.875rem;
    }
}

.projects-no-categories-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #666666;
}

/* Featured Projects Section */
.projects-featured-section {
    padding: 4rem 0 5rem;
    background-color: #f9fafb;
}

.projects-featured-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-featured-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-featured-container {
        padding: 0 2rem;
    }
}

.projects-featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-featured-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #000000;
}

.projects-featured-subtitle {
    font-size: 1rem;
    color: #666666;
    font-weight: 300;
}

.projects-featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .projects-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-featured-card {
    display: block;
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 0;
}

.project-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.project-featured-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f3f4f6;
}

.project-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-featured-card:hover .project-featured-overlay {
    opacity: 1;
}

.project-featured-category {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.project-featured-content {
    padding: 1.5rem;
}

.project-featured-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.project-featured-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666666;
}

.project-featured-location,
.project-featured-year {
    font-weight: 300;
}

.projects-featured-cta {
    text-align: center;
    margin-top: 3rem;
}

.projects-view-all-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.projects-view-all-btn:hover {
    background-color: #333333;
}

/* CTA Section */
.projects-cta-section {
    padding: 6rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.projects-cta-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-cta-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-cta-container {
        padding: 0 2rem;
    }
}

.projects-cta-title {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #000000;
}

.projects-cta-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.projects-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.projects-cta-button:hover {
    background-color: #374151;
}

/* ===========================
   Homepage V2 Styles - BRAVAT Design
   =========================== */

/* Hero Banner */
/* Front Page Layout */
.site-main.front-page {
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 688px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-banner-slides {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.hero-banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    display: block;
    z-index: 0;
    /* Safari fix */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@supports (-webkit-touch-callout: none) {

    /* Safari-specific styles */
    .hero-banner-video {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Hero Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 30px;
}

.hero-arrow-next {
    right: 30px;
}

@media (max-width: 767px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-prev {
        left: 15px;
    }

    .hero-arrow-next {
        right: 15px;
    }

    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

.hero-dot {
    width: 34px;
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: 0;
    border-radius: 1px;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.hero-dot.active {
    background-color: #ffffff;
}

/* Section Header V2 */
.section-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
}

.section-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
}

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

.section-label {
    display: block;
    font-size: 20px;
    color: var(--color-accent);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.section-title-v2 {
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    margin: 0;
    line-height: 48px;
    position: relative;
    padding-bottom: 16px;
}

.section-title-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 142px;
    height: 1px;
    background-color: var(--color-accent);
}

.btn-show-more-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.3s ease;
}

.btn-show-more-v2:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Mobile-only Show more row (below scroll) – hidden on desktop */
.show-more-row-mobile {
    display: none;
}

/* Product Categories V2 */
.product-categories-section-v2 {
    position: relative;
    padding: 80px 0;
    overflow: visible;
}

.product-categories-section-v2 .container {
    position: relative;
    z-index: 1;
}

.product-categories-grid-v2 {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.product-category-card-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    overflow: hidden;
    flex: 1 1 0;
    min-width: 0;
    height: 416px;
    border-radius: var(--radius-lg);
}

.product-category-image-v2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.product-category-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg);
}

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

/* Combined gradient + blur overlay - matches reference exactly */
.product-category-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%);
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
}

.product-category-info-v2 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 40px 20px;
    color: #ffffff;
}

.category-label-v2 {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #e4e6e7;
    line-height: normal;
}

.category-name-v2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    line-height: normal;
}

/* Project Reference Section */
.project-reference-section {
    padding: 80px 0;
    background-color: #F8F7F5;
}

.project-reference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    height: 788px;
}

.project-reference-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    border-radius: var(--radius-lg);
}

/* Tall card - left side, spans full height */
.project-reference-card.project-card-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Medium card - top right */
.project-reference-card.project-card-medium {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Small card - bottom right */
.project-reference-card.project-card-small {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Legacy support for 4-card layout */
.project-reference-card.project-card-small-left,
.project-reference-card.project-card-small-right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.project-reference-card.project-card-small-left {
    display: none;
}

.project-reference-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
}

.project-reference-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 100%);
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
}

.project-reference-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #ffffff;
}

.project-ref-category {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-off-white);
    margin-bottom: 4px;
    line-height: normal;
}

.project-ref-title {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    line-height: normal;
}

.project-card-medium .project-ref-title {
    font-size: 32px;
}

.project-card-small-left .project-ref-title,
.project-card-small-right .project-ref-title {
    font-size: 24px;
}

.project-card-small-left .project-ref-category,
.project-card-small-right .project-ref-category {
    font-size: 16px;
}

.project-ref-description {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.project-card-small-left .project-ref-description,
.project-card-small-right .project-ref-description {
    font-size: 14px;
}

/* Our Story Section */
.our-story-section {
    padding: 80px 0;
}

.our-story-content {
    display: grid;
    grid-template-columns: 497px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
}

.our-story-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: var(--radius-md);
}

.our-story-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: normal;
}

.our-story-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    color: #000000;
    margin: 0;
    max-width: 497px;
}

.our-story-stats {
    display: flex;
    gap: 45px;
    align-items: center;
    margin-top: 40px;
}

.story-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 141px;
    height: 119px;
    text-align: center;
}

.stat-number-v2 {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-text-v2 {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    line-height: 28px;
}

.btn-outline-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 287px;
    height: 60px;
    padding: 20px 21px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.btn-outline-v2:hover {
    background-color: #000000;
    color: #ffffff;
}

.our-story-image {
    width: 100%;
    max-width: 760px;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    height: 678px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.story-image-overlay {
    display: none;
}

.our-story-label-on-image {
    display: none;
}

/* Border decoration elements */
.border-decoration {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid var(--color-accent);
    pointer-events: none;
    z-index: 0;
}

.border-decoration-right {
    top: -64px;
    right: -10px;
    transform: none;
}

.border-decoration-left {
    bottom: -84px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1023px) {
    .border-decoration {
        display: none;
    }
}

/* News & Insights Section */
.news-insights-section {
    padding: 80px 0;
}

.news-insights-grid {
    display: flex;
    gap: 40px;
    margin-top: var(--spacing-xl);
}

.news-card {
    background: #fbfbfc;
    overflow: hidden;
    width: 404px;
    flex-shrink: 0;
}

.news-card:hover {
    transform: none;
}

.news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 368px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.news-card:hover .news-card-image img {
    transform: none;
}

.news-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ffffff;
    color: #000000;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    padding-top: 28px;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #9e9e9e;
}

.news-date-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #c09463;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-title {
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.18;
}

.news-excerpt {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.35;
    margin: 0;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    line-height: normal;
    margin-top: auto;
}

.news-read-more-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* CTA Section V2 */
.cta-section-v2 {
    position: relative;
    height: 558px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&h=600&fit=crop') center/cover no-repeat;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

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

.cta-content-v2 {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-label {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 1.6px;
    line-height: 40px;
}

.cta-title-v2 {
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: normal;
}

.cta-subtitle-v2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 32px;
    margin: 0;
    text-align: center;
    max-width: 600px;
}

.cta-button-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button-v2:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.cta-button-v2 svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

/* Responsive Styles for V2 */
@media (max-width: 1023px) {
    .product-categories-grid-v2 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-category-card-v2 {
        width: calc(50% - 20px);
        min-width: 280px;
    }

    .project-reference-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .project-reference-card.project-card-tall {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 350px;
    }

    .project-reference-card.project-card-medium {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        min-height: 280px;
    }

    .project-reference-card.project-card-small-left {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        min-height: 250px;
    }

    .project-reference-card.project-card-small-right {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        min-height: 250px;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .our-story-image {
        order: -1;
    }

    .news-insights-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-card {
        width: calc(50% - 20px);
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .section-header-v2 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .section-header-left .section-label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .section-header-left .section-title-v2 {
        font-size: 24px;
        line-height: 1.2;
        padding-bottom: 0;
    }

    .section-header-left .section-title-v2::after {
        display: none;
    }

    .section-header-right {
        flex-shrink: 0;
    }

    /* Hide header Show more on mobile for Product Categories & Project Reference; use row below grid */
    .product-categories-section-v2 .section-header-right,
    .project-reference-section .section-header-right {
        display: none;
    }

    .show-more-row-mobile {
        display: block;
        padding: 16px 16px 0;
        margin-top: 0;
        margin-bottom: 16px;
    }

    /* Project Reference: same horizontal spacing as cards (grid has 0 side padding), ensure bottom space */
    .project-reference-section .show-more-row-mobile {
        padding-left: 0;
        padding-right: 0;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .btn-show-more-mobile {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-radius: 8px;
        border: 1px solid #000000;
        background-color: #ffffff;
        color: #000000;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .btn-show-more-mobile:hover {
        background-color: #000000;
        color: #ffffff;
    }

    .btn-show-more-v2 {
        width: auto;
        padding: 0 16px;
        height: 36px;
        font-size: 12px;
    }

    /* Hero Banner Dots - Smaller on mobile */
    .hero-slider-dots,
    .hero-dots {
        bottom: 20px;
        gap: 6px;
        display: flex;
        flex-direction: row;
    }

    .hero-dot {
        width: 20px;
        height: 2px;
        min-height: 2px;
        max-height: 2px;
        border-radius: 1px;
    }

    .hero-indicators {
        bottom: 1rem;
        gap: 8px;
        display: flex;
        flex-direction: row;
    }

    .hero-indicator {
        width: 20px;
        height: 2px;
        min-height: 2px;
        max-height: 2px;
        border-radius: 1px;
    }

    /* Product Categories - Horizontal Scroll (show 2 items, slide to see more) */
    .product-categories-section-v2,
    .project-reference-section,
    .our-story-section,
    .news-insights-section {
        padding: 0;
    }

    .project-reference-section {
        padding-bottom: 0;
    }

    .section-header-left {
        margin-top: 1em;
    }

    .news-insights-section {
        margin-bottom: 1em;
    }

    .product-categories-section-v2 .container {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

    .product-categories-section-v2 .section-header-v2 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-categories-grid-v2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 16px 0;
        margin: 0 0 0 1em;
        height: auto;
    }

    .product-categories-grid-v2::-webkit-scrollbar {
        display: none;
    }

    .product-categories-grid-v2 {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .product-category-card-v2 {
        width: 45vw !important;
        min-width: 45vw !important;
        max-width: 45vw !important;
        min-height: 280px;
        height: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .category-label-v2 {
        font-size: 10px;
    }

    .category-name-v2 {
        font-size: 14px;
    }

    .product-category-info-v2 {
        padding: 12px 12px 16px;
        gap: 4px;
    }

    /* Project Reference - Horizontal Scroll (show 2 items) */
    .project-reference-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }

    .project-reference-grid::-webkit-scrollbar {
        display: none;
    }

    .project-reference-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .project-reference-card.project-card-tall,
    .project-reference-card.project-card-medium,
    .project-reference-card.project-card-small,
    .project-reference-card.project-card-small-left,
    .project-reference-card.project-card-small-right {
        grid-column: auto;
        grid-row: auto;
        width: calc(50% - 6px);
        min-width: calc(50% - 6px);
        min-height: 350px;
        height: 350px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .project-ref-title,
    .project-card-medium .project-ref-title,
    .project-card-small-left .project-ref-title,
    .project-card-small-right .project-ref-title {
        font-size: 14px !important;
    }

    .project-ref-category {
        font-size: 10px;
    }

    .project-reference-overlay {
        padding: 15px;
    }

    /* Our Story - Mobile: Figma layout (image first with overlay, then light content block) */
    .our-story-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: visible;
    }

    .our-story-text,
    .our-story-image {
        width: 100%;
        min-width: 100%;
        max-width: none;
        flex-shrink: 0;
    }

    .our-story-image {
        display: block;
        order: -1;
    }

    .our-story-text {
        background: #ffffff;
        color: #000000;
        padding: 40px 32px 32px;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        order: 1;
    }

    .our-story-text .our-story-label {
        display: none;
    }

    .our-story-text .our-story-title {
        color: #000000;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .our-story-text .our-story-description {
        font-size: 22px;
        line-height: 33px;
        color: #000000;
        margin-bottom: 24px;
    }

    .our-story-stats {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 10px 0;
        justify-content: flex-start;
        width: 100%;
    }

    .story-stat {
        flex: 0 1 auto;
        text-align: center;
        padding: 0;
        background: transparent;
        border-radius: 0;
        min-width: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }

    .stat-number-v2 {
        font-size: 40px;
        font-weight: 700;
        color: #c09463;
        line-height: 1;
    }

    .stat-text-v2 {
        font-size: 14px;
        line-height: 1.4;
        color: #000000;
    }

    .btn-outline-v2 {
        width: 100%;
        max-width: 287px;
        align-self: flex-start;
        padding: 20px 21px;
        font-size: 16px;
        background-color: #ffffff;
        color: #000000;
        border: 1px solid #000000;
    }

    .our-story-section .our-story-text .btn-outline-v2 {
        align-self: center;
    }

    .btn-outline-v2:hover {
        background-color: #000000;
        color: #ffffff;
    }

    .story-image-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

    .story-image-overlay {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.85) 100%);
        padding: 24px 20px 32px;
        text-align: center;
    }

    .our-story-label-on-image {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 16px;
        top: 16px;
        padding: 12px 21px;
        background-color: #c09463;
        color: #ffffff;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        border-radius: 8px;
        letter-spacing: 0.5px;
    }

    .story-image-overlay .story-logo {
        position: absolute;
        right: 20px;
        top: 16px;
        max-height: 32px;
        width: auto;
    }

    .story-overlay-title {
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 8px;
        line-height: 1.2;
    }

    .story-overlay-subtitle,
    .story-overlay-text-khmer {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        line-height: 1.4;
    }

    .story-overlay-text-khmer {
        font-size: 12px;
        margin-top: 4px;
    }

    /* News & Insights - Mobile: improved card layout and UX */
    .news-insights-section .container {
        overflow: visible;
    }

    .news-insights-section {
        padding-bottom: 24px;
    }

    .news-insights-grid {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 16px 24px;
        margin: 0;
        margin-top: 1em;
        scroll-padding-inline: 16px;
    }

    .news-insights-grid::-webkit-scrollbar {
        display: none;
    }

    .news-insights-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .news-insights-grid .news-card {
        width: 280px;
        min-width: 280px;
        flex-shrink: 0;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        scroll-snap-align: start;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .news-insights-grid .news-card-link {
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-insights-section .news-card-image {
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .news-insights-section .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-insights-section .news-card-content {
        padding: 18px 18px 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-grow: 1;
    }

    /* Show 2-line excerpt on mobile for context */
    .news-insights-section .news-excerpt,
    .news-insights-section .news-card-content p.news-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        line-height: 1.4;
        color: #666;
        margin: 0;
    }

    .news-insights-grid .news-title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
        margin: 0 0 2px 0;
        display: block;
        color: #000;
    }

    .news-insights-grid .news-meta {
        font-size: 11px;
        color: #888;
        display: flex;
        gap: 6px;
        margin: 0;
        order: -1;
    }

    .news-insights-grid .news-date {
        font-size: 11px;
        gap: 6px;
        color: #888;
    }

    .news-insights-grid .news-date-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .news-insights-grid .news-read-more {
        font-size: 12px;
        font-weight: 500;
        gap: 6px;
        margin-top: auto;
        padding-top: 4px;
        color: #000;
    }

    .news-insights-grid .news-read-more-icon {
        width: 16px;
        height: 16px;
    }

    .news-insights-grid .news-badge {
        display: none;
    }

    .hero-banner {
        height: 50vh;
        min-height: 350px;
    }

    /* CTA Section V2 Responsive */
    .cta-section-v2 {
        height: auto;
        padding: 40px 20px;
    }

    .cta-label {
        font-size: 20px;
        line-height: 28px;
    }

    .cta-title-v2 {
        font-size: 36px;
    }

    .cta-subtitle-v2 {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-button-v2 {
        font-size: 18px;
        padding: 10px 20px;
    }

    /* Section Headers Responsive */
    .section-title-v2 {
        font-size: 24px;
    }

    .section-label {
        font-size: 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    /* Hero dots even smaller */
    .hero-slider-dots,
    .hero-dots {
        gap: 4px;
    }

    .hero-dot {
        width: 16px;
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
    }

    .hero-indicator {
        width: 16px;
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
    }

    /* Product Categories - Show 3 items smaller */
    .product-category-card-v2 {
        width: calc((100vw - 48px) / 3);
        min-width: calc((100vw - 48px) / 3);
        height: 160px;
    }

    .category-label-v2 {
        font-size: 8px;
    }

    .category-name-v2 {
        font-size: 11px;
    }

    .product-category-info-v2 {
        padding: 8px 8px 12px;
    }

    /* Project Reference - smaller for very small screens */
    .project-reference-card.project-card-tall,
    .project-reference-card.project-card-medium,
    .project-reference-card.project-card-small,
    .project-reference-card.project-card-small-left,
    .project-reference-card.project-card-small-right {
        width: calc(50% - 6px);
        min-width: calc(50% - 6px);
        min-height: 300px;
        height: 300px;
    }

    /* Our Story - compact on small screens (keep Figma layout, smaller typography) */
    .our-story-text {
        padding: 32px 20px 24px;
    }

    .our-story-text .our-story-title {
        font-size: 28px;
    }

    .our-story-text .our-story-description {
        font-size: 18px;
        line-height: 1.5;
    }

    .story-stat {
        padding: 0;
    }

    .our-story-section .our-story-stats {
        gap: 6px;
        margin: 6px 0;
    }

    .our-story-section .story-stat {
        gap: 2px;
    }

    .our-story-section .stat-number-v2 {
        font-size: 32px;
    }

    .our-story-section .stat-text-v2 {
        font-size: 12px;
    }

    /* News & Insights - small mobile: one card prominent, better proportions */
    .news-insights-grid .news-card {
        width: min(320px, calc(100vw - 32px));
        min-width: min(320px, calc(100vw - 32px));
    }

    .news-insights-section .news-card-image {
        height: 160px;
    }

    .news-insights-section .news-card-content {
        padding: 14px 16px 18px;
    }

    .news-insights-grid .news-title {
        font-size: 14px;
        line-height: 1.35;
    }

    .news-insights-section .news-excerpt,
    .news-insights-section .news-card-content p.news-excerpt {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .news-insights-grid .news-meta,
    .news-insights-grid .news-date {
        font-size: 10px;
    }

    .news-insights-grid .news-read-more {
        font-size: 11px;
    }
}

/* ========================================
   PROJECT REFERENCE PAGE STYLES
   ======================================== */

.project-reference-page {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Hero Project Section */
.hero-project {
    width: 100%;
    height: 634px;
    position: relative;
    overflow: hidden;
}

.hero-project>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-project-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 821px;
    margin: 0 auto;
}

.hero-label {
    font-size: 16px;
    font-weight: 400;
    color: #c09463;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    line-height: normal;
}

.hero-project-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 24px 0;
    line-height: normal;
    color: #ffffff;
}

.hero-project-content p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
    color: #ffffff;
}

/* Projects Section */
.projects-section {
    max-width: 1296px;
    margin: 0 auto;
    padding: 76px 20px 100px;
}

.projects-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
}

.projects-section .section-header h2 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: normal;
}

.section-underline {
    width: 142px;
    height: 1px;
    background-color: #c09463;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    height: 418px;
    display: block;
    text-decoration: none;
}

.project-card:hover {
    transform: none;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-location {
    background-color: #fbfbfc;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 8px;
    border-radius: 4px;
    align-self: flex-start;
    line-height: 20px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 4px 0 0 0;
    line-height: 28px;
}

.project-info p {
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    margin: 0;
    line-height: normal;
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.view-more-btn {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.no-projects-message {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 60px 20px;
}

/* Project Reference Responsive Design */
@media (max-width: 1200px) {
    .hero-project {
        height: 550px;
    }

    .hero-project-content {
        max-width: 700px;
    }

    .hero-project-content h1 {
        font-size: 40px;
    }

    .hero-project-content p {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .projects-section .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .hero-project {
        height: 500px;
    }

    .hero-project-content h1 {
        font-size: 36px;
    }

    .hero-project-content p {
        font-size: 15px;
    }

    .projects-section {
        padding: 60px 20px 80px;
    }

    .projects-section .section-header {
        margin-bottom: 40px;
    }

    .project-card {
        height: auto;
    }
}

@media (max-width: 767px) {
    .hero-project {
        height: 450px;
    }

    .hero-project-content h1 {
        font-size: 32px;
    }

    .hero-project-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-label {
        font-size: 14px;
    }

    .projects-section {
        padding: 50px 20px 60px;
    }

    .projects-section .section-header h2 {
        font-size: 28px;
    }

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

    .project-card {
        height: auto;
    }

    .project-info h3 {
        font-size: 18px;
    }

    .project-info p {
        font-size: 16px;
    }

    .project-location {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-project {
        height: 400px;
    }

    .hero-project-content h1 {
        font-size: 28px;
    }

    .hero-label {
        font-size: 12px;
    }

    .projects-section .section-header h2 {
        font-size: 24px;
    }

    .project-card {
        height: auto;
    }
}

@media (max-width: 480px) {
    .project-image {
        height: 29em;
    }
}

/* ========================================
   NEWS PAGE STYLES
   ======================================== */

.news-page {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Page Header News */
.page-header-news {
    padding: 76px 20px 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header-news h1 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: normal;
}

.title-underline {
    width: 158px;
    height: 1px;
    background-color: #c09463;
}

/* News Grid Section */
.news-grid-section {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 66px;
}

.news-grid-section .news-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 418px;
    display: block;
    text-decoration: none;
}

.news-grid-section .news-card:hover {
    transform: translateY(-4px);
}

.news-grid-section .news-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.news-grid-section .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-grid-section .news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.news-grid-section .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-grid-section .news-meta {
    background-color: #fbfbfc;
    color: #f28100;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 8px;
    border-radius: 4px;
    align-self: flex-start;
    line-height: 20px;
}

.news-grid-section .news-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 4px 0 0 0;
    line-height: 26px;
}

.news-grid-section .news-content p {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    margin: 0;
    line-height: normal;
}

/* Load More Button */
.news-grid-section .load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.load-more-btn {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 222px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.load-more-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

/* News Page Responsive Design */
@media (max-width: 1200px) {
    .page-header-news h1 {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* iPad / tablet: 2 columns, tighter gap and balanced layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-header-news {
        padding: 64px 24px 56px;
    }

    .page-header-news h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .news-grid-section {
        padding: 24px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .news-grid-section .news-card {
        border-radius: 14px;
    }

    .news-grid-section .news-content {
        padding: 14px;
        gap: 6px;
    }

    .news-grid-section .news-meta {
        font-size: 12px;
        padding: 6px 8px;
    }

    .news-grid-section .news-content h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .news-grid-section .news-content p {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .page-header-news {
        padding: 60px 20px 70px;
    }

    .page-header-news h1 {
        font-size: 32px;
    }

    .title-underline {
        width: 140px;
    }

    .news-grid-section {
        padding-bottom: 80px;
    }

    .news-card {
        padding-bottom: 1em;
    }

    .news-grid {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .page-header-news {
        padding: 72px 20px 48px;
    }

    .page-header-news h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .title-underline {
        width: 120px;
    }

    .news-grid-section {
        padding: 0 0 64px;
        max-width: none;
    }

    .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 20px;
        margin-bottom: 40px;
    }

    .news-grid-section .news-card {
        display: block !important;
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 0;
    }

    .news-grid-section .news-image {
        height: 400px;
    }

    .news-grid-section .news-image img {
        object-fit: cover;
        object-position: center;
    }

    .news-grid-section .news-content {
        padding: 14px 12px 16px;
        gap: 6px;
    }

    .news-grid-section .news-meta {
        font-size: 11px;
        padding: 6px 8px;
        line-height: 1.3;
    }

    .news-grid-section .news-content h3 {
        font-size: 15px;
        line-height: 1.35;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-grid-section .news-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        color: #cccccc;
        line-height: 1.4;
        margin: 0;
    }

    /* Hide load more on mobile */
    .load-more-container,
    .load-more-btn {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .page-header-news {
        padding: 72px 20px 40px;
    }

    .page-header-news h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .title-underline {
        width: 100px;
    }

    .news-grid-section {
        padding: 0 0 56px;
        max-width: none;
    }

    .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 20px;
        margin-bottom: 32px;
    }

    .news-grid-section .news-card {
        display: block !important;
        width: 100%;
        height: auto;
        min-height: 0;
        min-width: 0;
        border-radius: 0;
    }

    .news-grid-section .news-image {
        height: 400px;
    }

    .news-grid-section .news-image img {
        object-fit: cover;
        object-position: center;
    }

    .news-grid-section .news-content {
        padding: 18px 16px 20px;
        gap: 8px;
    }

    .news-grid-section .news-meta {
        font-size: 11px;
        padding: 6px 8px;
    }

    .news-grid-section .news-content h3 {
        font-size: 16px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .news-grid-section .news-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.45;
    }

    .load-more-container,
    .load-more-btn {
        display: none !important;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Page Title Section */
.page-title-section {
    padding: 76px 20px 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title-section h1 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: normal;
}

.title-underline-contact {
    width: 158px;
    height: 1px;
    background-color: #a44924;
}

/* Contact Info Section */
.contact-info-section {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px 38px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    margin-bottom: 0;
}

.contact-box {
    border: 1px solid #000000;
    min-height: 337px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    display: block;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 13px;
    width: 100%;
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: normal;
}

.contact-text p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: normal;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 518px;
    overflow: hidden;
    margin-bottom: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 30px 24px;
    }
}

@media (max-width: 992px) {
    .page-title-section h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-box {
        padding: 40px 30px;
        min-height: 280px;
    }

    .map-section {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .page-title-section {
        padding: 50px 20px 60px;
    }

    .page-title-section h1 {
        font-size: 28px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .contact-text h3 {
        font-size: 18px;
    }

    .contact-text p {
        font-size: 16px;
    }

    .map-section {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .page-title-section h1 {
        font-size: 24px;
    }

    .title-underline-contact {
        width: 120px;
    }

    .contact-box {
        padding: 24px 16px;
        min-height: 240px;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-icon svg {
        width: 56px;
        height: 56px;
    }

    .map-section {
        height: 380px;
    }
}

/* ==========================================================================
   News Detail Page Styles
   ========================================================================== */

.news-detail-page {
    min-height: 100vh;
    background-color: #ffffff;
}

.news-detail-container {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back to News (Figma: left-aligned with arrow) */
.news-detail-back-wrap {
    padding-top: 24px;
    padding-bottom: 16px;
}

.news-detail-back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    text-decoration: none;
    line-height: normal;
    transition: color 0.2s ease;
}

.news-detail-back-to-news:hover {
    color: #191919;
}

.news-detail-back-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-detail-back-arrow svg {
    width: 19px;
    height: 24px;
    display: block;
}

/* Featured Image Section (Figma: 398px height, cover) */
.news-detail-hero {
    width: 100%;
    background-color: #f5f5f5;
}

.news-detail-featured-image {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 20px;
    height: 398px;
    overflow: hidden;
    border-radius: 0;
}

.news-detail-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Article Content Section (Figma: title 24px, body 20px) */
.news-detail-content {
    padding: 48px 0 100px;
}

.news-article {
    max-width: 1296px;
    margin: 0 auto;
}

.news-article-header {
    margin-bottom: 32px;
}

.news-article-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
    margin: 0;
}

/* Article Body (Figma: 20px) */
.news-article-body {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #000000;
}

.news-article-body p {
    margin-bottom: 24px;
}

.news-article-body p:last-child {
    margin-bottom: 0;
}

.news-article-body h2 {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin: 40px 0 16px;
}

.news-article-body h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 32px 0 12px;
}

.news-article-body h4 {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin: 28px 0 12px;
}

.news-article-body ul,
.news-article-body ol {
    margin: 0 0 24px 24px;
}

.news-article-body li {
    margin-bottom: 10px;
}

.news-article-body blockquote {
    border-left: 4px solid #c09463;
    padding: 20px 30px;
    margin: 32px 0;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 20px;
    color: #555555;
}

.news-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.news-article-body a {
    color: #c09463;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.news-article-body a:hover {
    border-bottom-color: #c09463;
}

/* Article Footer */
.news-article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.news-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.news-article-tags .tags-label {
    font-size: 14px;
    font-weight: 600;
    color: #191919;
    margin-right: 5px;
}

.news-article-tags a {
    display: inline-block;
    background-color: #f5f5f5;
    color: #707070;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-article-tags a:hover {
    background-color: #c09463;
    color: #ffffff;
}

/* Related News (Figma: centered title, line, cards with gradient overlay) */
.news-related-posts {
    margin-top: 80px;
    padding-top: 60px;
}

.news-related-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 24px;
    text-align: center;
    line-height: normal;
}

.news-related-title::after {
    content: '';
    display: block;
    width: 155px;
    height: 1px;
    margin: 24px auto 0;
    background-color: #000000;
}

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.news-related-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    height: 418px;
    background-color: #e8e8e8;
    transition: transform 0.3s ease;
}

.news-related-card:hover {
    transform: translateY(-4px);
}

.news-related-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-related-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

.news-related-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.news-related-badge {
    display: inline-flex;
    align-self: flex-start;
    background-color: #fbfbfc;
    color: #f28100;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.news-related-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 26px;
    margin: 0;
    transition: color 0.2s ease;
}

.news-related-excerpt {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.news-related-card:hover .news-related-card-title {
    color: #ffffff;
}

/* Related card without image: dark text on light background */
.news-related-card:not(:has(.news-related-image)) .news-related-card-title {
    color: #191919;
}

.news-related-card:not(:has(.news-related-image)) .news-related-excerpt {
    color: #666666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .news-detail-featured-image {
        height: 340px;
    }

    .news-article-title {
        font-size: 24px;
    }

    .news-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-detail-back-wrap {
        padding-top: 72px;
    }

    .news-detail-featured-image {
        height: 280px;
    }

    .news-detail-content {
        padding: 40px 0 80px;
    }

    .news-article-title {
        font-size: 22px;
    }

    .news-article-body {
        font-size: 16px;
    }

    .news-article-body h2 {
        font-size: 22px;
    }

    .news-article-body h3 {
        font-size: 20px;
    }

    .news-related-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-related-card {
        height: 360px;
    }

    .news-related-image {
        height: 100%;
    }

    .news-related-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .news-detail-back-wrap {
        padding-top: 42px;
        padding-bottom: 12px;
    }

    .news-detail-back-to-news {
        font-size: 13px;
    }

    .news-detail-featured-image {
        height: 220px;
    }

    .news-detail-content {
        padding: 30px 0 60px;
    }

    .news-article-title {
        font-size: 20px;
    }

    .news-article-body {
        font-size: 15px;
    }

    .news-article-body h2,
    .news-article-body h3 {
        font-size: 18px;
    }

    .news-related-posts {
        margin-top: 50px;
        padding-top: 40px;
    }

    .news-related-card {
        height: 320px;
    }

    .news-related-title {
        font-size: 24px;
    }

    .news-related-badge {
        font-size: 12px;
    }

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

    .news-related-excerpt {
        font-size: 14px;
    }
}

/* Project Reference Detail Page (reuses news-detail layout) */
.project-detail-page .project-detail-meta {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-detail-page .project-detail-description {
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    margin: 16px 0 24px;
}

a.project-card {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-page {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Hero About Section */
.hero-about {
    width: 100%;
    height: 538px;
    position: relative;
    overflow: hidden;
}

.hero-about img {
    width: 100%;
    height: 183.26%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -31.96%;
    left: 0;
}

.hero-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-about-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-about-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 16px 0;
    line-height: normal;
}

.hero-about-content p {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: normal;
}

.hero-about-content .hero-subtext {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    max-width: 1296px;
    margin: 0 auto;
    padding: 76px 20px 100px;
}

.story-container {
    display: grid;
    grid-template-columns: 639px 1fr;
    gap: 20px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 75px 0;
    text-align: left;
    line-height: normal;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-text p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.story-images {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7em;
}

.story-image-grid {
    display: flex;
    gap: 23px;
    width: 100%;
    max-width: 637px;
}

.story-image-col {
    display: flex;
    flex-direction: column;
    gap: 29px;
    flex: 1;
}

.story-image-col:nth-child(2) {
    margin-top: 80px;
    /* Offset to create staggered look matching mockups */
}

.story-image-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Statistics Section */
.statistics {
    max-width: 1296px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    margin-bottom: 76px;
}

.stat-card {
    border: 1px solid #d3d3d3;
    padding: 57px 101px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 244px;
}

.stat-icon {
    margin-bottom: 16px;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1;
}

.stat-card p {
    font-size: 15px;
    font-weight: 400;
    color: #7a7a7a;
    margin: 0;
    line-height: 1;
}

.divider-line {
    width: 155px;
    height: 1px;
    background-color: #000000;
    margin: 0 0 0 auto;
}

/* Showroom Section */
.showroom-section {
    max-width: 1296px;
    margin: 0 auto 0;
    padding: 0 20px;
}

.showroom-container {
    display: grid;
    grid-template-columns: 729px 1fr;
    gap: 0;
    align-items: stretch;
}

.showroom-image {
    width: 729px;
    height: 568px;
    overflow: hidden;
}

.showroom-image img {
    width: 101.37%;
    height: 100.01%;
    object-fit: cover;
    object-position: top left;
}

.showroom-info {
    background-color: #ffffff;
    padding: 27px 75px 54px 46px;
    display: flex;
    flex-direction: column;
}

.showroom-info h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 71px 0;
    text-align: center;
    line-height: normal;
}

.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.detail-item h4 {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: normal;
}

.detail-item:nth-child(2) h4,
.detail-item:nth-child(3) h4 {
    font-size: 20px;
}

.detail-item p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.follow-us {
    margin-top: 10px;
}

.follow-us h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 28px 0;
    text-align: center;
    line-height: normal;
}

.follow-us .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.follow-us .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.follow-us .social-icons a:hover {
    transform: scale(1.1);
}

/* Footer About */
/* About page: block editor content (main editor) */
.about-page-editor-content {
    max-width: 1296px;
    margin: 0 auto;
    padding: 48px 20px 64px;
}

.about-editor-inner {
    width: 100%;
}

.about-editor-inner > *:first-child {
    margin-top: 0;
}

.about-editor-inner > *:last-child {
    margin-bottom: 0;
}

.footer-about {
    background-color: #000000;
    padding: 40px 0 80px;
    margin-top: 0;
}

.footer-about .footer-divider {
    max-width: 1296px;
    height: 1px;
    background-color: #ffffff;
    margin: 0 auto 40px;
}

.footer-about .footer-brand {
    text-align: center;
}

.footer-about .footer-brand h2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 40px;
}

/* About Page Responsive Design */
@media (max-width: 1440px) {
    .story-container {
        grid-template-columns: 550px 1fr;
    }

    .story-image-grid {
        max-width: 520px;
        gap: 20px;
    }

    .story-image-col {
        gap: 24px;
    }

    .story-image-col:nth-child(2) {
        margin-top: 60px;
    }

    .showroom-container {
        grid-template-columns: 600px 1fr;
    }

    .showroom-image {
        width: 600px;
    }
}

@media (max-width: 1200px) {
    .hero-about {
        height: 450px;
    }

    .hero-about-content h1 {
        font-size: 40px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-content h2 {
        margin-bottom: 40px;
    }

    .story-text p {
        font-size: 18px;
    }

    .story-images {
        justify-content: center;
    }

    .showroom-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .showroom-image {
        width: 100%;
        height: 400px;
    }

    .showroom-info {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .hero-about {
        height: 400px;
    }

    .hero-about-content h1 {
        font-size: 36px;
    }

    .hero-about-content p {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .story-text p {
        font-size: 16px;
    }

    /* Our Story: 4 images – full-width 2x2 from tablet down */
    .story-image-grid {
        max-width: none;
        width: 100%;
        gap: 16px;
    }

    .story-image-col {
        gap: 20px;
    }

    .story-image-col:nth-child(2) {
        margin-top: 40px;
    }

    .story-image-col img {
        aspect-ratio: 1;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto 60px;
    }

    .stat-card {
        padding: 40px 60px;
    }

    .divider-line {
        margin: 0 auto;
    }
}

/* About page: Our Story – iPad same layout as desktop, 4 images equal height (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Restore desktop two-column layout (text left, images right) */
    .story-container {
        grid-template-columns: 550px 1fr;
        gap: 20px;
    }

    .story-images {
        justify-content: center;
    }

    .story-image-grid {
        max-width: 637px;
        width: 100%;
        gap: 23px;
        margin: 0 auto;
    }

    .story-image-col {
        gap: 29px;
    }

    .story-image-col:nth-child(2) {
        margin-top: 80px;
    }

    /* All 4 images same height */
    .story-image-col img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
        border-radius: 4px;
    }
}

@media (max-width: 767px) {
    .hero-about {
        height: 350px;
    }

    .hero-about-content h1 {
        font-size: 28px;
    }

    .hero-about-content p {
        font-size: 16px;
    }

    .hero-about-content .hero-subtext {
        font-size: 14px;
    }

    .our-story {
        padding: 60px 20px 80px;
    }

    .story-content h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .story-text {
        gap: 20px;
    }

    .story-text p {
        font-size: 15px;
    }

    /* Our Story: 4 images – full-width 2x2 grid, consistent aspect ratio */
    .story-images {
        margin-top: 2.5em;
        padding: 0 4px;
    }

    .story-image-grid {
        max-width: none;
        width: 100%;
        gap: 12px;
    }

    .story-image-col {
        gap: 12px;
        flex: 1;
        min-width: 0;
    }

    .story-image-col:nth-child(2) {
        margin-top: 24px;
    }

    .story-image-col img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        display: block;
    }

    .stat-card {
        padding: 30px 40px;
        min-height: 200px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .showroom-image {
        height: 300px;
    }

    .showroom-info {
        padding: 30px 20px;
    }

    .showroom-info h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .showroom-details {
        gap: 30px;
    }

    .detail-item h4 {
        font-size: 18px;
    }

    .detail-item:nth-child(2) h4,
    .detail-item:nth-child(3) h4 {
        font-size: 16px;
    }

    .detail-item p {
        font-size: 14px;
    }

    .follow-us h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-about .footer-brand h2 {
        font-size: 16px;
        line-height: 32px;
    }
}

@media (max-width: 576px) {
    .hero-about {
        height: 300px;
    }

    .hero-about-content h1 {
        font-size: 24px;
    }

    .hero-about-content p {
        font-size: 14px;
    }

    .hero-about-content .hero-subtext {
        font-size: 12px;
    }

    .our-story {
        padding: 40px 20px 60px;
    }

    .story-content h2 {
        font-size: 22px;
    }

    .story-text p {
        font-size: 14px;
    }

    /* Our Story: 4 images – full-width 2x2, balanced on small mobile */
    .story-images {
        margin-top: 2em;
    }

    .story-image-grid {
        max-width: none;
        width: 100%;
        gap: 10px;
    }

    .story-image-col {
        gap: 10px;
    }

    .story-image-col:nth-child(2) {
        margin-top: 16px;
    }

    .story-image-col img {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .stat-card {
        padding: 24px 30px;
        min-height: 180px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .stat-card p {
        font-size: 13px;
    }

    .showroom-image {
        height: 250px;
    }

    .showroom-info {
        padding: 24px 16px;
    }

    .showroom-info h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .showroom-details {
        gap: 24px;
    }

    .follow-us .social-icons {
        gap: 16px;
    }

    .footer-about {
        padding: 30px 0 60px;
    }

    .footer-about .footer-brand h2 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ===========================
   Enhanced Mobile Responsive Styles
   =========================== */

/* Global Mobile Improvements */
@media (max-width: 767px) {

    /* Container padding */
    .container,
    .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section spacing */
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Typography scaling */
    body {
        font-size: 15px;
        line-height: 1.6;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }
}

/* Header Mobile Enhancements */
@media (max-width: 767px) {
    .site-header {
        position: relative;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header-container {
        padding: 12px 16px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-logo {
        width: 120px;
        height: auto;
    }

    .menu-toggle {
        z-index: 1003;
    }

    /* Hamburger icon animation (smooth X) */
    .menu-toggle .menu-toggle-bar {
        transform-origin: center;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu overlay – above header so it shows when open */
    .main-navigation {
        padding-top: 80px;
    }

    .main-navigation.toggled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        z-index: 1002;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.toggled ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .header-nav-menu a,
    .main-navigation a {
        font-size: 18px;
        padding: 12px 0;
    }
}

/* Body padding for fixed header - only on mobile */
/* Header spacer for fixed header on mobile */
.header-spacer {
    height: 0;
    display: none;
}

@media (max-width: 767px) {
    .header-spacer {
        display: none;
    }
}

/* Hero Section Mobile */
@media (max-width: 767px) {
    .hero-carousel {
        height: 50vh;
        height: 50dvh;
        min-height: 350px;
    }

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

    .hero-slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-slide-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hero-indicators {
        bottom: 1rem;
    }

    .hero-indicator {
        width: 24px;
    }

    .hero-nav {
        width: 36px;
        height: 36px;
    }

    .hero-prev {
        left: 0.5rem;
    }

    .hero-next {
        right: 0.5rem;
    }

    /* Products Hero */
    .products-hero {
        height: auto;
        min-height: 300px;
        padding: 80px 16px 60px;
    }

    .products-hero-title {
        font-size: 2rem;
    }

    .products-hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Product Categories Grid Mobile */
@media (max-width: 767px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-category-card {
        height: 160px;
    }

    .product-category-card-title {
        font-size: 0.75rem;
    }

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

    .category-card {
        height: 150px;
    }

    .category-card-title {
        font-size: 0.875rem;
    }

    .category-card-overlay {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .product-categories-grid {
        gap: 8px;
    }

    .product-category-card {
        height: 140px;
    }

    .category-card {
        height: 130px;
    }

    .category-card-title {
        font-size: 0.75rem;
    }

    .category-card-desc {
        display: none;
    }
}

/* Solution Cards Mobile */
@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .solution-card-image {
        height: 200px;
        order: -1;
    }

    .solution-card-inner {
        padding: 24px;
    }

    .solution-card-title {
        font-size: 1.25rem;
    }
}

/* Projects Grid Mobile */
@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-card {
        max-width: 100%;
    }

    .project-content {
        padding: 20px 16px;
    }

    .project-title {
        font-size: 1.125rem;
    }

    .projects-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Product Detail Page Mobile */
@media (max-width: 767px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery {
        order: -1;
    }

    .product-main-image {
        height: 300px;
    }

    .product-thumbnails {
        gap: 8px;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-info {
        padding: 0 16px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-specs-list {
        gap: 12px;
    }
}

/* Footer Mobile Enhancements */
@media (max-width: 767px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col {
        padding: 0;
    }

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

    .footer-col-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .footer-col-nav a {
        font-size: 14px;
    }

    .footer-contact-info {
        text-align: center;
    }

    .footer-social-section {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-social-title {
        text-align: center;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
        display: flex;
        width: 100%;
    }

    .footer-bottom-section {
        padding: 24px 16px;
    }

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

    .footer-brand-center {
        font-size: 24px;
    }

    .footer-brand-center .footer-brand-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

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

/* Contact Page Mobile */
@media (max-width: 767px) {
    .contact-hero {
        height: auto;
        min-height: 250px;
        padding: 80px 16px 40px;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-section {
        order: 1;
    }

    .contact-form-section {
        order: 2;
    }

    .contact-map-section {
        height: 300px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }
}

/* About Page Mobile */
@media (max-width: 767px) {
    .about-hero {
        height: auto;
        min-height: 280px;
        padding: 80px 16px 40px;
    }

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

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .story-content {
        flex-direction: column;
        gap: 24px;
    }

    .story-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 20px;
        min-height: auto;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }
}

/* News/Blog Mobile */
@media (max-width: 767px) {

    .news-grid,
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card,
    .post-card {
        max-width: 100%;
    }

    .news-image,
    .post-thumbnail {
        height: 200px;
    }

    .news-content,
    .post-content {
        padding: 20px 16px;
    }

    .news-title,
    .post-title {
        font-size: 1.125rem;
    }
}

/* Buttons Mobile */
@media (max-width: 767px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.8125rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-outline {
        padding: 10px 20px;
    }

    /* Stack buttons on mobile */
    .buttons-group {
        flex-direction: column;
        gap: 12px;
    }
}

/* Search Form Mobile */
@media (max-width: 767px) {
    .products-search-form {
        flex-direction: column;
        gap: 12px;
    }

    .products-search-input {
        width: 100%;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .products-search-button {
        width: 100%;
    }
}

/* Filters Mobile */
@media (max-width: 767px) {
    .products-filters {
        flex-direction: column;
        gap: 12px;
    }

    .filter-dropdown {
        width: 100%;
    }

    .filter-dropdown select {
        width: 100%;
        font-size: 16px;
    }
}

/* Pagination Mobile */
@media (max-width: 767px) {
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Modal Mobile */
@media (max-width: 767px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Tables Mobile */
@media (max-width: 767px) {
    .product-specs-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-specs-table th,
    .product-specs-table td {
        padding: 12px;
        font-size: 14px;
        white-space: nowrap;
    }
}

/* Touch Improvements */
@media (max-width: 767px) {

    /* Larger touch targets */
    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch */
    .product-category-card:hover,
    .project-card:hover,
    .category-card:hover,
    .solution-card:hover {
        transform: none;
    }

    /* Add active states instead */
    .product-category-card:active,
    .project-card:active,
    .category-card:active,
    .solution-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {

    /* Even smaller spacing */
    .container,
    .site-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    /* Footer compact */
    .footer-grid {
        gap: 20px;
    }

    .footer-col-nav {
        gap: 6px 12px;
    }

    /* Hero smaller */
    .hero-carousel {
        min-height: 280px;
    }

    .hero-slide-content h1 {
        font-size: 1.25rem;
    }

    /* Products hero */
    .products-hero {
        min-height: 250px;
        padding: 60px 12px 40px;
    }

    .products-hero-title {
        font-size: 1.5rem;
    }

    /* Stat cards */
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 1.75rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel {
        height: 80vh;
        height: 80dvh;
        min-height: 300px;
    }

    .products-hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .contact-hero,
    .about-hero {
        min-height: 200px;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .site-header {
        padding-top: max(15px, env(safe-area-inset-top));
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .site-footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .main-navigation.toggled {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Fix iOS input zoom */
@media (max-width: 767px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px;
    }
}

/* Smooth scrolling native */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* No corner radius on images – all pages */
.hero-banner-image,
.project-reference-image,
.project-reference-card,
.product-category-image-v2,
.product-category-image-v2 img,
.product-category-card-v2,
.project-reference-overlay,
.news-insights-section .news-card-image,
.news-insights-section .news-card-image img,
.news-grid-section .news-card,
.news-grid-section .news-image,
.news-grid-section .news-image img,
.story-image-col img,
.news-related-card,
.news-related-image,
.news-related-image img,
.showroom-image,
.showroom-image img,
.news-detail-featured-image,
.news-detail-featured-image img,
.story-image-wrapper,
.product-category-card-bravat .product-category-card-image,
.product-category-card-bravat .product-category-card-image img,
.product-main-image img,
.product-detail-page .main-swiper img,
.product-detail-page .thumb-swiper img,
.product-detail-page .main-swiper,
.product-detail-page .thumb-swiper .swiper-slide,
.news-card .news-card-image,
.news-card-image img,
.product-category-image-wrapper,
.product-category-img,
.project-simple-img,
.project-featured-img,
.entry-featured-image img,
.about-editor-inner img,
.category-card,
.category-card-image,
.news-insights-section .news-card,
.project-simple-image-wrapper,
.solution-card,
.solution-card-image,
.products-hero,
.products-category-btn,
.category-btn-overlay,
.products-card,
.products-card-gradient,
.product-detail-page .product-images,
.product-detail-page .main-image,
.product-detail-page .main-swiper,
.product-detail-page .thumb-swiper .swiper-slide,
.featured-product-card,
.featured-product-image {
    border-radius: 0 !important;
}

/* Homepage: force all images and image containers to zero corner radius */
.front-page .hero-banner-slide,
.front-page .hero-banner-image,
.front-page .hero-banner-video,
.front-page .project-reference-card,
.front-page .project-reference-image,
.front-page .project-reference-overlay,
.front-page .project-reference-grid img,
.front-page .our-story-image,
.front-page .our-story-image img,
.front-page .story-image-wrapper,
.front-page .story-image-wrapper img,
.front-page .story-image-overlay,
.front-page .news-insights-section .news-card,
.front-page .news-insights-section .news-card-image,
.front-page .news-insights-section .news-card-image img,
.front-page .news-insights-section img {
    border-radius: 0 !important;
}

/* Product pages: force all images and image containers to zero corner radius */
.product-page .products-hero,
.product-page .products-category-btn,
.product-page .category-btn-overlay,
.product-page .products-card,
.product-page .products-card-gradient,
.product-detail-page .product-images,
.product-detail-page .main-image,
.product-detail-page .main-swiper,
.product-detail-page .main-swiper img,
.product-detail-page .thumb-swiper .swiper-slide,
.product-detail-page .thumb-swiper img,
.product-detail-page .products-card {
    border-radius: 0 !important;
}

/* Project Reference page: remove image corner radius */
.project-reference-page .hero-project,
.project-reference-page .hero-project img,
.project-reference-page .hero-project-overlay,
.project-reference-page .project-card,
.project-reference-page .project-image,
.project-reference-page .project-image img,
.project-reference-page .project-overlay {
    border-radius: 0 !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .category-card,
    .product-category-card {
        border: 1px solid #000;
    }
}