.footer-links-tight li {
    margin-bottom: 0.45rem;
}
/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana Renkler */
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #ecf0f1;
    
    /* Typography */
    --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --section-spacing-xs: clamp(2rem, 3vw, 3rem);
    --section-spacing-sm: clamp(3rem, 4vw, 3.75rem);
    --section-spacing-md: clamp(3.5rem, 5vw, 4.5rem);
    --section-spacing-lg: clamp(4.5rem, 6vw, 5.5rem);
    --section-title-gap: clamp(2rem, 3.5vw, 3rem);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: var(--line-height);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* Başlıklar için Bebas Neue */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

main > section {
    padding-block: var(--section-spacing-lg);
}

main > section.section-compact {
    padding-block: var(--section-spacing-md);
}

main > section.section-tight {
    padding-block: var(--section-spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

ul {
    list-style: none;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-menu > li > a {
    color: white !important;
}

.header.scrolled .nav-menu > li > a:hover,
.header.scrolled .nav-menu > li > a.active {
    color: var(--primary-color) !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-text {
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-transform: lowercase;
    transition: var(--transition);
}

.logo-image {
    height: 30px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo a:hover .logo-text {
    color: var(--primary-color);
}

.logo a:hover .logo-image {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: white !important;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.15rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: block;
    letter-spacing: 1px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color) !important;
}

.nav-mobile-close,
.nav-mobile-social,
.nav-mobile-cta {
    display: none;
}

.mobile-social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mobile-social-links a {
    color: #1c1f21;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 1400;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 18px;
        right: 18px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    margin-top: 0;
    transform: translateY(0) translateX(10px);
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}
.dropdown-menu .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}

.dropdown-menu .dropdown > a::after {
    content: '\203A';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.85rem;
    transform: translateY(-1px);
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: white !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color) !important;
}

.dropdown-menu li a.active {
    color: var(--primary-color) !important;
    background-color: rgba(230, 126, 34, 0.12);
}

/* Header Button */
.btn-header {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    width: max-content;
    max-width: max-content;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger:hover span {
    background-color: var(--primary-color);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    background-color: #1a1a1a;
    color: white;
    padding: 8rem 0;
    text-align: left;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero.hero-with-slider {
    padding: 0;
    height: 100vh;
    min-height: 100vh;
    margin-top: 0;
    position: relative;
    z-index: 0;
}

/* Hero Slider Background */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    height: 100%;
}

.hero-slider-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.15) contrast(1.2) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-slider-image-cover {
    object-fit: cover;
    object-position: center;
}

/* Navigation buttons removed for modern design */
.hero-slider-nav-btn {
    display: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dot:hover::before {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.3);
}

.hero-slider-dot.active {
    width: 32px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slider-dot.active::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.hero h1.hero-title-slider {
    font-size: 80px;
}

.hero p {
    font-size: 14px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    font-family: var(--font-primary);
    font-weight: 500;
}

.hero p strong {
    font-weight: 700;
}

.hero-content .btn + .btn {
    margin-left: 1rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    margin: 0;
}

.hero-cta-group .btn + .btn {
    margin-left: 0;
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   Beton Silim Slider Section
   ========================================== */
.beton-silim-slider-section {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    height: 600px;
    flex-shrink: 0;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.15) contrast(1.2) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    will-change: transform;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn .btn-icon,
.btn-small .btn-icon {
    width: 14px;
    height: 14px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon {
    font-size: 1.2rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
    flex-shrink: 0;
    display: block;
}

/* ==========================================
   About Section (Nedir?)
   ========================================== */
.about-section {
    padding: 0;
    background-color: #FFFFFF;
    min-height: 80vh;
}

.about-section .container {
    padding: var(--section-spacing-lg) 2rem;
}

/* Layout Container Boxed */
.layout-boxed {
    max-width: 1200px;
    margin: 0 auto;
}

.layout-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    width: 100%;
}

.layout-row {
    display: flex;
    flex-direction: row;
    width: 92%;
    gap: 25px;
}

/* Sol Taraf - 20+ */
.stat-box {
    width: 33.3333%;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    background: #f5f5f5;
    padding: 60px 40px;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/background/arka-plan.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.stat-box > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 139px;
    font-weight: 600;
    color: #3c5661;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 20px;
    color: #3c5661;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Sağ Taraf - İçerik */
.content-box {
    width: 66.6666%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
}

.content-badge {
    background: #E67E22;
    color: #FFFFFF;
    display: inline-block;
    padding: 2px 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    width: fit-content;
}

.content-title {
    font-size: 50px;
    font-weight: 400;
    color: #3c5661;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.3;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.content-text-wrapper {
    margin-bottom: 20px;
}

.content-text {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 13px;
    font-family: var(--font-primary);
}

.content-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.25rem;
}

.content-text-list li {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a5964;
}

.content-text-list li strong {
    color: #24303a;
}

.content-text strong {
    color: #3c5661;
    font-weight: 600;
}

.mat-steps {
    padding: var(--section-spacing-md) 0;
    background-color: #ffffff;
}

.mat-steps-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mat-steps-viewport {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.mat-steps-track {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mat-steps-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(33, 56, 68, 0.15);
    background: #ffffff;
    color: #1f2e39;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, #ffffff 0%, #f1f4f6 100%);
    box-shadow: 0 8px 18px rgba(20, 34, 44, 0.12);
}

.mat-steps-nav:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f49d47 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(224, 127, 44, 0.35);
    transform: translateY(-2px);
}

.mat-steps-nav:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.mat-steps-prev {
    order: -1;
}

.mat-steps-next {
    order: 1;
}

.mat-step-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 15px 40px rgba(15, 35, 47, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 56, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc((100% - 5.25rem) / 4);
}

.mat-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 35, 47, 0.12);
    border-color: rgba(33, 56, 68, 0.12);
}

.mat-steps--two-cards .mat-steps-nav {
    display: none;
}

.mat-steps--two-cards .mat-steps-carousel {
    justify-content: center;
    gap: 0;
}

.mat-steps--two-cards .mat-steps-viewport {
    max-width: 640px;
}

.mat-steps--two-cards .mat-steps-track {
    justify-content: center;
}

.mat-steps--two-cards .mat-step-card {
    flex: 0 0 min(320px, 100%);
    max-width: 320px;
}

.mat-step-number {
    position: absolute;
    top: -0.4rem;
    left: 2rem;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: rgba(33, 56, 68, 0.12);
    letter-spacing: 0.08em;
    z-index: 0;
}

.mat-step-card h3 {
    position: relative;
    z-index: 1;
    color: #233a49;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    min-height: 3rem;
}

.mat-step-card p {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4a5c68;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.cta-button {
    margin-top: 20px;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: flex-start;
}

/* ==========================================
   Solutions Section (Çözümlerimiz)
   ========================================== */
.solutions-section {
    padding: var(--section-spacing-lg) 0;
    background: #ffffff;
}

.solutions-grid-single {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
}

.slider-image-1 {
    background-image: url('../assets/images/endustriyel-zemin-betonu/endüstriyel-beton-temizleme.jpg');
}

.slider-image-2 {
    background-image: url('../assets/images/epoksi-zemin-kaplama/epoksi-zemin-kaplama-slider.jpg');
}

.solutions-grid-single .solution-card,
.solutions-grid-single .solution-card-other {
    width: 100%;
    max-width: 640px;
    height: 360px;
}

@media (max-width: 767px) {
    .solutions-grid-single .solution-card,
    .solutions-grid-single .solution-card-other {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .solutions-grid-single .solution-card,
    .solutions-grid-single .solution-card-other {
        height: 260px;
    }
}

.solutions-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.divider-line {
    width: 200px;
    height: 2px;
    background-color: var(--primary-color);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 0;
}

.divider-icon .btn-icon {
    width: 28px;
    height: 28px;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.divider-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    height: 320px;
    background-image: url('../assets/images/solution-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.solution-card-other {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: brightness(1.15) contrast(1.25) saturate(1.15);
    z-index: 0;
    transform: translateZ(0);
}

.solution-card:nth-child(1) {
    background-image: url('../assets/images/mat-beton-parlatma/henkel-category.jpg');
    background-color: #4a5568;
}

.solution-card:nth-child(1)::before {
    background-image: url('../assets/images/mat-beton-parlatma/henkel-category.jpg');
}

.solution-card:nth-child(2) {
    background-image: url('../assets/images/yari-parlak/hilkar-yari-parlak-beton-parlatma.jpg');
    background-color: #5a6c7d;
}

.solution-card:nth-child(2)::before {
    background-image: url('../assets/images/yari-parlak/hilkar-yari-parlak-beton-parlatma.jpg');
}

.solution-card:nth-child(3) {
    background-image: url('../assets/images/tam-parlak-beton-parlatma/isuzı.jpg');
    background-color: #6b7c8d;
}

.solution-card:nth-child(3)::before {
    background-image: url('../assets/images/tam-parlak-beton-parlatma/isuzı.jpg');
}

.solution-card:nth-child(4) {
    background-image: url('../assets/images/renkli-beton-parlatma/renkli-beton-parlatma-kategori.jpg');
    background-color: #7b8c9d;
}

.solution-card:nth-child(4)::before {
    background-image: url('../assets/images/renkli-beton-parlatma/renkli-beton-parlatma-kategori.jpg');
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}


.solution-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.75rem;
    text-align: center;
}

.solution-content h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    opacity: 0.9;
}

.solution-btn:hover {
    opacity: 1;
    color: var(--primary-color);
}

.btn-icon-circle {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-icon-circle svg {
    width: 14px;
    height: 14px;
    fill: white !important;
    flex-shrink: 0;
}

.btn-icon-circle svg path,
.solution-btn .btn-icon-circle svg path,
a.solution-btn svg path {
    fill: white !important;
    stroke: white !important;
}

.solution-btn:hover .btn-icon-circle {
    background-color: var(--primary-color);
}

.solution-btn:hover .btn-icon-circle svg {
    fill: white !important;
}

.solution-btn:hover .btn-icon-circle svg path {
    fill: white !important;
}

/* Ensure SVG icons stay white */
.btn-primary .btn-icon svg,
.solution-btn .btn-icon-circle svg {
    fill: white !important;
}

.solution-btn .btn-icon-circle svg path {
    fill: white !important;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
    font-weight: 700;
}

.section-title-center {
    display: inline-block;
    background: #E67E22;
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 0em 0.25em 0em 0.25em; /* üst, sağ, alt, sol */
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: var(--section-title-gap);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us {
    padding-block: var(--section-spacing-lg);
    background-color: #f5f5f5;
    min-height: auto;
}

.why-choose-us .layout-inner {
    min-height: auto;
    padding: 0;
}

.why-choose-us .layout-boxed {
    max-width: 1271px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Banner */
.why-choose-title-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-title-banner h2 {
    background-color: #e67e22;
    color: #FFFFFF;
    display: inline-block;
    padding: 12px 45px;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 5px;
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.3;
}

/* Elementor Why Choose Grid */
.layout-row.why-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    flex-direction: unset;
}

.why-feature-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    border: 1px solid #d0d0d0;
    padding: 35px 25px 30px 25px;
    text-align: center;
    background-color: #FFFFFF;
}

.why-feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #3d4f5c;
    margin: 0 0 15px 0;
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.why-feature-text {
    color: #5a6c7d;
    flex-grow: 1;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.why-feature-text p {
    font-size: 0.875rem;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #5a6c7d;
    max-width: 100%;
}

/* Icon Styling - Icons at bottom */
.why-icon.why-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 0;
    margin-bottom: 40px;
}

.why-icon.why-feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: #3d4f5c;
    stroke-width: 1.5;
}

/* Icon Circle for PD */
.icon-circle {
    width: 60px;
    height: 60px;
    border: 1.5px solid #3d4f5c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d4f5c;
    background-color: transparent;
    line-height: 1;
}

/* Legacy support */
.why-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ==========================================
   Color Palette Section
   ========================================== */
.company-highlight {
    position: relative;
    padding-block: var(--section-spacing-lg);
    background: var(--bg-color);
    color: #233a49;
    overflow: hidden;
}

.company-highlight-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17, 27, 36, 0.9), rgba(31, 47, 59, 0.88));
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: 0 30px 70px rgba(9, 19, 28, 0.4);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
}

.company-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/slider/beton-silim-2.jpg') center/cover no-repeat;
    opacity: 0.2;
    border-radius: 24px;
    z-index: 0;
}

.company-highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(230, 126, 34, 0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(17, 27, 36, 0.8), transparent 40%);
    border-radius: 24px;
    z-index: 1;
}

.company-highlight-text,
.company-highlight-stats {
    position: relative;
    z-index: 2;
}

.company-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
}

.highlight-label {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.highlight-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.company-highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.highlight-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.highlight-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
    font-family: var(--font-primary);
}

.highlight-cta {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    width: max-content;
}

.highlight-stats {
    display: flex;
    gap: 2.5rem;
}

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

.highlight-stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.12em;
    font-weight: 400;
    color: #ffffff;
}

.highlight-stat-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.color-palette-section {
    padding-block: var(--section-spacing-lg);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.color-palette-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.color-palette-subtitle {
    text-align: center;
    color: #5a6c7d;
    font-size: 1.05rem;
    margin: 1.25rem 0 var(--section-title-gap);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.color-palette-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.color-main-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16/9;
    position: relative;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.color-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.color-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    position: relative;
    z-index: 0;
    border-radius: 12px;
}

.color-main-image img:hover {
    transform: scale(1.02);
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
    padding: 1.2rem 0 0;
    width: 100%;
    justify-items: center;
}

.color-swatches .color-swatch {
    min-width: 0;
    width: 70px;
    height: 70px;
}

.overview-highlight {
    padding: var(--section-spacing-md) 0;
    background-color: #ffffff;
}

.overview-highlight-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.overview-highlight-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.overview-highlight-value {
    font-size: 7rem;
    font-weight: 600;
    color: #2f4b5a;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.overview-highlight-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: #7d8a96;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.overview-highlight-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
}

.overview-highlight-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.35rem 1.8rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.overview-highlight-content h2 {
    font-size: 3rem;
    color: #294352;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.overview-highlight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5964;
    margin: 0;
}

.overview-highlight-cta {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.overview-highlight-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.overview-highlight-list h3 {
    display: none;
}

.overview-highlight-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.overview-highlight-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5964;
}

.overview-highlight-list li strong {
    color: #1f2c36;
}

.color-swatch {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-shrink: 0;
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-swatch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.color-swatch:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    position: relative;
    z-index: 0;
}

.color-swatch:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.color-swatch:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.15) saturate(1.15);
}

.color-swatch.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.5);
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ==========================================
   References Section (Carousel)
   ========================================== */
.references-section {
    padding-block: var(--section-spacing-lg);
    background-color: #f5f5f5;
}

.references-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 25%;
    width: 25%;
    height: 320px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 20px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.15) contrast(1.2) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    will-change: transform;
}

/* Reference Logo Overlay */
.reference-logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-logo:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: none;
}

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

.reference-logo img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    image-rendering: auto;
    transform: none;
    will-change: auto;
    transition: transform 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ==========================================
   Certificates Section
   ========================================== */
.certificates-section {
    padding-block: var(--section-spacing-md);
    background-color: white;
}

.certificates-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.certificate-card {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(230, 126, 34, 0.14);
    box-shadow: 0 12px 30px rgba(19, 29, 59, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(230, 126, 34, 0.25);
}

.certificate-card img {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.1) saturate(1.05);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding-block: var(--section-spacing-lg);
    background: #ffffff;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 31, 0.08);
    border-left: 3px solid rgba(230, 126, 34, 0.45);
    box-shadow: 0 10px 22px rgba(15, 23, 31, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 126, 34, 0.4);
    border-left-color: var(--primary-color);
    box-shadow: 0 18px 32px rgba(15, 23, 31, 0.18);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.85rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(27, 40, 52, 0.9);
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
    font-family: var(--font-heading);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(230, 126, 34, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-item.active {
    border-color: rgba(230, 126, 34, 0.65);
    border-left-color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
    border-color: transparent;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(245, 248, 251, 0.9);
}

.faq-item.active .faq-answer {
    max-height: 520px;
}

.faq-answer p {
    padding: 0 1.75rem 1.4rem 1.75rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #5a6c7d;
    font-weight: 400;
    font-family: var(--font-primary);
    border-top: 1px solid rgba(15, 23, 31, 0.06);
}

/* ==========================================
   Mat Beton Parlatma
   ========================================== */
.inner-header {
    background-color: rgba(12, 23, 31, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-hero {
    position: relative;
    padding: 8rem 0 6rem;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.mat-hero {
    background: linear-gradient(135deg, rgba(17, 27, 36, 0.88), rgba(33, 51, 62, 0.78)), url('../assets/images/slider/beton-silim-2.jpg');
    background-size: cover;
    background-position: center;
}

.parlatma-hero {
    background: linear-gradient(135deg, rgba(16, 26, 34, 0.88), rgba(26, 41, 52, 0.78)), url('../assets/images/slider/beton-silim-1.jpg');
    background-size: cover;
    background-position: center;
}

.yari-parlak-hero {
    background: linear-gradient(135deg, rgba(15, 24, 33, 0.85), rgba(41, 62, 76, 0.78)), url('../assets/images/yari-parlak/hilkar-yari-parlak-beton-parlatma.jpg');
    background-size: cover;
    background-position: center;
}

.tam-parlak-hero {
    background: linear-gradient(135deg, rgba(14, 25, 37, 0.85), rgba(24, 40, 55, 0.78)), url('../assets/images/tam-parlak-beton-parlatma/isuzı.jpg');
    background-size: cover;
    background-position: center;
}

.renkli-parlatma-hero {
    background: linear-gradient(135deg, rgba(15, 23, 32, 0.85), rgba(46, 26, 48, 0.78)), url('../assets/images/renkli-beton-parlatma/renkli-beton-parlatma-kategori.jpg');
    background-size: cover;
    background-position: center;
}

.endustriyel-hero {
    background: linear-gradient(135deg, rgba(15, 23, 32, 0.85), rgba(27, 43, 56, 0.78)), url('../assets/images/mat-beton-parlatma/henkel-category.jpg');
    background-size: cover;
    background-position: center;
}

.epoksi-hero {
    background: linear-gradient(135deg, rgba(21, 29, 38, 0.85), rgba(52, 25, 37, 0.78)), url('../assets/images/slider/beton-silim-2.jpg');
    background-size: cover;
    background-position: center;
}

.referanslar-hero {
    background: linear-gradient(135deg, rgba(14, 20, 27, 0.85), rgba(32, 47, 60, 0.78)), url('../assets/images/referanslar/bim.png');
    background-size: cover;
    background-position: center;
}

.blog-hero {
    background: linear-gradient(135deg, rgba(12, 20, 29, 0.88), rgba(36, 52, 63, 0.78)), url('../assets/images/slider/beton-silim-1.jpg');
    background-size: cover;
    background-position: center;
}

.subpage-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.subpage-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.subpage-hero-breadcrumb a:hover {
    color: white;
}

.subpage-hero h1 {
    font-size: 64px;
    font-family: var(--font-heading);
    letter-spacing: 0.16em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.subpage-hero p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.subpage-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.12);
    color: #e67e22;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-heading h2 {
    font-size: 2.6rem;
    color: #24303a;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-heading p {
    color: #5a6c7d;
    line-height: 1.8;
}

.blog-main {
    background-color: #f7f9fb;
}

.blog-categories-section {
    padding: 6rem 0 3.5rem;
    background-color: #f7f9fb;
    border-bottom: 1px solid rgba(17, 27, 36, 0.08);
}

.blog-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.blog-category {
    border: 1px solid rgba(17, 27, 36, 0.15);
    background-color: #ffffff;
    color: #21303d;
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 18px 30px rgba(17, 27, 36, 0.08);
    transition: all 0.25s ease;
}

.blog-category:hover,
.blog-category:focus-visible {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-category:focus-visible {
    outline: 2px solid rgba(33, 47, 63, 0.3);
    outline-offset: 2px;
}

.blog-category.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 22px 40px rgba(230, 126, 34, 0.25);
}

.blog-structure {
    padding: 4.5rem 0 6rem;
    background-color: #ffffff;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 3.5rem;
    align-items: start;
}

.blog-feed {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.blog-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(17, 27, 36, 0.08);
    box-shadow: 0 25px 60px rgba(17, 27, 36, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(17, 27, 36, 0.12);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(33, 47, 63, 0.9), rgba(230, 126, 34, 0.75));
}

.blog-card-cover img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.blog-card-cover-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(17, 27, 36, 0.2));
    opacity: 0.6;
    display: none;
}

.blog-card-category-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2b35;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    flex: 1;
}

.blog-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(17, 27, 36, 0.6);
    font-weight: 600;
}

.blog-card-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.65);
}

.blog-card-title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1f2b35;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.blog-card-excerpt {
    color: #556777;
    line-height: 1.8;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 27, 36, 0.55);
}

.blog-card-footer time {
    font-weight: 600;
    color: rgba(33, 47, 63, 0.65);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.blog-widget {
    background: rgba(17, 27, 36, 0.02);
    border: 1px solid rgba(17, 27, 36, 0.08);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(17, 27, 36, 0.06);
}

.blog-widget-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f2b35;
    margin-bottom: 1rem;
}

.blog-widget-text {
    color: #526576;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.blog-widget code {
    background: rgba(33, 47, 63, 0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.blog-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-widget-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(17, 27, 36, 0.8);
    font-weight: 600;
}

.blog-widget-list span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.65);
}

.blog-empty-state {
    border-style: dashed;
    border-width: 1px;
    border-color: rgba(33, 47, 63, 0.2);
    background: rgba(17, 27, 36, 0.03);
}

.blog-loading {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(17, 27, 36, 0.6);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-feed-empty {
    display: none;
    padding: 2.5rem;
    text-align: center;
    border: 1px dashed rgba(17, 27, 36, 0.12);
    border-radius: 18px;
    color: rgba(17, 27, 36, 0.65);
    background: rgba(17, 27, 36, 0.02);
}

.blog-feed-empty.is-visible {
    display: block;
}

.blog-category-overview {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.blog-category-overview-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 27, 36, 0.08);
    border-radius: 18px;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 20px 45px rgba(17, 27, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
    background-clip: padding-box;
    position: relative;
}

.blog-category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(17, 27, 36, 0.12);
    border-color: rgba(230, 126, 34, 0.35);
}

.blog-category-overview-card:focus-visible {
    outline: 2px solid rgba(230, 126, 34, 0.5);
    outline-offset: 2px;
}

.blog-category-overview-card.is-active {
    border-color: rgba(230, 126, 34, 0.9);
    box-shadow: 0 32px 70px rgba(230, 126, 34, 0.18);
}

.blog-category-overview-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f2b35;
}

.blog-category-overview-count {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(17, 27, 36, 0.6);
}

.blog-category-overview-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(230, 126, 34, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mat-overview {
    padding: 6rem 0;
    background-color: #f7f9fb;
}

.mat-overview-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: stretch;
}

.mat-overview-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(17, 27, 36, 0.08);
    border: 1px solid rgba(17, 27, 36, 0.05);
}

.mat-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(135deg, #11242f, #203948);
    color: white;
}

.mat-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mat-stat-value {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
}

.mat-stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.mat-intro h2 {
    font-size: 2.3rem;
    color: #24303a;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.mat-intro p {
    color: #4c5f6d;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.mat-intro-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.mat-intro-note {
    font-size: 0.95rem;
    color: #7a8a98;
}

.mat-advantages {
    padding: 6rem 0;
    background: white;
}

.mat-advantages-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mat-advantage-card {
    background: #f8fafc;
    border-radius: 22px;
    padding: 2.2rem;
    border: 1px solid rgba(36, 48, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mat-advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(17, 27, 36, 0.12);
}

.mat-advantage-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.12);
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
}

.mat-advantage-card h3 {
    font-size: 1.25rem;
    color: #24303a;
    margin-bottom: 0.8rem;
}

.mat-advantage-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

.mat-cta {
    background: linear-gradient(135deg, #11212c, #1e3a4a);
    color: white;
    padding: 4rem 0;
}

.mat-cta .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.mat-cta h2 {
    font-size: 2.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.mat-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.8;
}

.mat-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mat-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.mat-cta .btn-outline:hover {
    color: #11212c;
}

.mat-process {
    padding: 6rem 0;
    background: #f7f9fb;
}

.mat-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.mat-process-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(36, 48, 58, 0.08);
    box-shadow: 0 12px 30px rgba(17, 27, 36, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 200px;
}

.mat-step {
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #e67e22;
}

.mat-process-card h3 {
    font-size: 1.15rem;
    color: #24303a;
    margin: 0;
}

.mat-process-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.mat-gallery {
    padding: 6rem 0;
    background: white;
}

.mat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.mat-gallery-grid .mat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.mat-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 35px rgba(17, 27, 36, 0.12);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mat-gallery-item:hover img {
    transform: scale(1.05);
}

.mat-gallery-grid.mat-gallery-natural .mat-gallery-item {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.mat-gallery-grid.mat-gallery-natural .mat-gallery-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background: transparent;
}

.mat-gallery-grid.mat-gallery-natural .mat-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.mat-gallery-item.rotate-90 {
    overflow: visible;
}

.mat-gallery-item.rotate-90 img {
    width: auto;
    max-width: 100%;
    height: auto;
    transform: rotate(90deg) !important;
    transform-origin: center;
}

.mat-gallery-item.rotate-90:hover img {
    transform: rotate(90deg) scale(1.05) !important;
}

.references-section {
    padding: 6rem 0;
    background: white;
}

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

.reference-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(17, 27, 36, 0.12);
    padding: 1.8rem 1.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    height: 100%;
}

.reference-card-logo img {
    max-width: 150px;
    max-height: 70px;
    width: 100%;
    object-fit: contain;
}

.reference-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    letter-spacing: 0.12em;
    margin: 0;
    text-transform: uppercase;
}

.reference-card-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    width: 100%;
}

.reference-card-gallery img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(17, 27, 36, 0.12);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card-gallery img:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(17, 27, 36, 0.16);
}

@media (min-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

body.modal-open {
    overflow: hidden;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.image-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-content {
    position: relative;
    max-width: min(90vw, 960px);
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.image-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(10, 20, 30, 0.7);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.image-modal-close:hover,
.image-modal-close:focus {
    background: rgba(230, 126, 34, 0.95);
    transform: scale(1.05);
    outline: none;
}

.image-modal-close span {
    line-height: 1;
    transform: translateY(-1px);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding-block: var(--section-spacing-lg);
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: #3d4f5c;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-details p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-details a {
    color: #5a6c7d;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h2,
.footer-column h3 {
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-branding .footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 48px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-tight h3 {
    margin-bottom: 1rem;
}

.footer-links-tight li {
    margin-bottom: 0.45rem;
}

.footer-services-list {
    margin: 0;
}

.footer-service-group {
    margin-bottom: 0.4rem;
}

.footer-link-heading {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.footer-link-heading:hover {
    color: var(--primary-color);
}

.footer-services .footer-links-nested {
    margin-bottom: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links-nested li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.footer-links-nested li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-links-standalone li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.pt-1 { padding-top: var(--spacing-sm); }
.pt-2 { padding-top: var(--spacing-md); }
.pt-3 { padding-top: var(--spacing-lg); }

.pb-1 { padding-bottom: var(--spacing-sm); }
.pb-2 { padding-bottom: var(--spacing-md); }
.pb-3 { padding-bottom: var(--spacing-lg); }

.service-definition {
    padding: var(--section-spacing-md) 0;
    background: #ffffff;
}

.service-definition-card {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-definition-card .content-badge {
    margin-inline: auto;
}

.service-definition-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #455863;
    line-height: 1.75;
}

.about-highlights {
    background: #ffffff;
    padding: var(--section-spacing-md) 0 var(--section-spacing-lg);
}

.about-highlights .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.about-highlights-grid .service-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.about-highlights-grid .service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-highlights-grid .service-card p {
    color: #455863;
}

.about-machines {
    padding: var(--section-spacing-lg) 0;
    background: #ffffff;
}

.about-machines .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-machines-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-machines-text p {
    color: #455863;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-machines-gallery .mat-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-machines-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-end;
}

.machines-figure {
    margin: 0;
}

.machines-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.machines-figure-main {
    width: 80%;
    max-width: 400px;
}

.machines-figure-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: -5rem;
}

.machines-figure-side {
    flex: 1;
    max-width: 260px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.machines-figure-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.machines-figure-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-feed-empty.is-visible {
    display: block;
}

.blog-category-overview {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.blog-category-overview-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 27, 36, 0.08);
    border-radius: 18px;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 20px 45px rgba(17, 27, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
    background-clip: padding-box;
    position: relative;
}

.blog-category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(17, 27, 36, 0.12);
    border-color: rgba(230, 126, 34, 0.35);
}

.blog-category-overview-card:focus-visible {
    outline: 2px solid rgba(230, 126, 34, 0.5);
    outline-offset: 2px;
}

.blog-category-overview-card.is-active {
    border-color: rgba(230, 126, 34, 0.9);
    box-shadow: 0 32px 70px rgba(230, 126, 34, 0.18);
}

.blog-category-overview-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f2b35;
}

.blog-category-overview-count {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(17, 27, 36, 0.6);
}

.blog-category-overview-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(230, 126, 34, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-detail-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 17, 26, 0.72), rgba(25, 37, 48, 0.78));
}

.blog-detail-main {
    background-color: #f7f9fb;
    padding: 5rem 0 6rem;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 320px);
    gap: 3rem;
    align-items: start;
}

.blog-article {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(17, 27, 36, 0.08);
    border: 1px solid rgba(17, 27, 36, 0.08);
}

.blog-article-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(33, 47, 63, 0.08);
    color: #1f2b35;
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-article-title {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    color: #1f2b35;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 27, 36, 0.55);
    flex-wrap: wrap;
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-article-meta svg {
    width: 16px;
    height: 16px;
    color: rgba(230, 126, 34, 0.85);
}

.blog-article-cover {
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(17, 27, 36, 0.06);
}

.blog-article-cover img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

.blog-article-cover figcaption {
    padding: 0.85rem 1.2rem;
    background: rgba(17, 27, 36, 0.65);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: #2a3642;
    line-height: 1.85;
    font-size: 1.05rem;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #1f2b35;
    margin-top: 1.5rem;
}

.blog-article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #1f2b35;
    margin-top: 1.2rem;
}

.blog-article-content p {
    margin: 0;
}

.blog-article-content ul,
.blog-article-content ol {
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-article-content li {
    position: relative;
}

.blog-article-content li::marker {
    color: rgba(230, 126, 34, 0.85);
    font-weight: 700;
}

.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 27, 36, 0.08);
    border: 1px solid rgba(17, 27, 36, 0.08);
}

.blog-article-content th,
.blog-article-content td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(17, 27, 36, 0.08);
}

.blog-article-content th {
    background: rgba(17, 27, 36, 0.9);
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.blog-article-content tr:last-child td {
    border-bottom: none;
}

.blog-content-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 27, 36, 0.1);
    border: 1px solid rgba(17, 27, 36, 0.08);
}

.blog-content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-content-image figcaption {
    padding: 1rem 1.5rem;
    background: rgba(17, 27, 36, 0.04);
    color: rgba(17, 27, 36, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

.blog-article-loading,
.blog-article-error {
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px dashed rgba(17, 27, 36, 0.18);
    background: rgba(17, 27, 36, 0.03);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 27, 36, 0.65);
}

.blog-article-error {
    color: rgba(192, 57, 43, 0.85);
    border-color: rgba(192, 57, 43, 0.25);
    background: rgba(192, 57, 43, 0.06);
}

.blog-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-article-sidebar-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 45px rgba(17, 27, 36, 0.08);
    border: 1px solid rgba(17, 27, 36, 0.06);
}

.blog-article-sidebar-section h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f2b35;
    margin-bottom: 1.2rem;
}

.blog-article-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.blog-article-sidebar-list li a {
    color: #1f2b35;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-article-sidebar-list li a:hover {
    color: rgba(230, 126, 34, 0.95);
    transform: translateX(4px);
}

.blog-article-sidebar-list li span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 27, 36, 0.6);
}

.blog-article-sidebar-list li strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: #1f2b35;
}

.blog-widget-list span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.65);
}

.blog-widget-highlight {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.08), rgba(230, 126, 34, 0.02));
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 18px;
    padding: 2rem;
}

.blog-widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.content-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.section-intro {
    max-width: 760px;
    margin: 1.5rem auto 2.5rem;
    text-align: center;
    color: #4a5964;
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-section {
    padding: var(--section-spacing-lg) 0;
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.process-section .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 25px 55px rgba(17, 27, 36, 0.08);
    border: 1px solid rgba(17, 27, 36, 0.08);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.process-step {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(230, 126, 34, 0.3);
    letter-spacing: 0.12em;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #1f2b35;
}

.process-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5964;
}

