/* ============================================================
   MESİ MAK - Industrial Machinery Website
   Complete Production-Ready Stylesheet
   Dark Theme with Gold Accents
   ============================================================ */

/* ============================================================
   1. CSS RESET & BASE STYLES
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --heading-color: #111111;
    --border-color: rgba(0, 0, 0, 0.08);
    --accent-color: #0e66c2;
    --accent-hover: #0b529e;
    --input-bg: #ffffff;
    --input-border: #dddddd;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Default selection (for light background pages/sections) */
::selection {
    background-color: #000000;
    color: #ffffff !important;
}
::-moz-selection {
    background-color: #000000;
    color: #ffffff !important;
}

/* Selection for dark sections (hero, footer, marquee, dark areas) */
.hero ::selection, 
.footer ::selection, 
.marquee-section ::selection, 
.dark-section ::selection,
[style*="background: #080808"] ::selection,
[style*="background: #0a0a0a"] ::selection,
[style*="background: #000"] ::selection {
    background-color: #ffffff;
    color: #000000 !important;
}
.hero ::-moz-selection, 
.footer ::-moz-selection, 
.marquee-section ::-moz-selection, 
.dark-section ::-moz-selection,
[style*="background: #080808"] ::-moz-selection,
[style*="background: #0a0a0a"] ::-moz-selection,
[style*="background: #000"] ::-moz-selection {
    background-color: #ffffff;
    color: #000000 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-gold {
    background: #0e66c2 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(14, 102, 194, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
    background: #1073dc !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(14, 102, 194, 0.6);
}

.btn-gold:active {
    transform: translateY(0) scale(0.98);
}

.btn-blue {
    background: #0e66c2 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(14, 102, 194, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-blue i {
    color: #ffffff !important;
}

.btn-blue:hover {
    background: #1073dc !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(14, 102, 194, 0.6);
}

.btn-blue:active {
    transform: translateY(0) scale(0.98);
}

.btn-white {
    background: #ffffff !important;
    color: #0a0a0a !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 
                0 0 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white i {
    color: #0a0a0a !important;
}

.btn-white:hover {
    background: #f4f4f4 !important;
    border-color: #f4f4f4 !important;
    color: #000000 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 
                0 0 45px rgba(255, 255, 255, 0.35);
}

.btn-white:active {
    transform: translateY(0) scale(0.98);
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-outline {
    background: transparent;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}

.btn-outline:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

.btn-black {
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-black:hover {
    background: #222222 !important;
    border-color: #222222 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.btn-black:active {
    transform: translateY(0) scale(0.98);
}

.btn-white {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: #0a0a0a;
    color: #ffffff;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 8px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* ============================================================
   4. TOP BAR
   ============================================================ */

.top-bar {
    background: #050505;
    padding: 8px 0;
    border-bottom: 1px solid rgba(14, 102, 194, 0.1);
    font-size: 0.82rem;
    color: #888888;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    color: #888888;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    font-size: 0.82rem;
}

.top-bar-left a:hover {
    color: #0e66c2;
}

.top-bar-left a i {
    color: #0e66c2;
    font-size: 0.85rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    color: #888888;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.top-bar-social a:hover {
    color: #0e66c2;
    background: rgba(14, 102, 194, 0.1);
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-lang a {
    color: #888888;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.top-bar-lang a:hover,
.top-bar-lang a.active {
    color: #0e66c2;
    background: rgba(14, 102, 194, 0.1);
}

/* ============================================================
   5. NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 100% !important;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
}

.navbar.scrolled {
    background: #000000;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mesifair-logo-svg path {
    stroke: #ffffff !important;
    transition: stroke 0.3s ease;
}

.navbar-brand:hover .mesifair-logo-svg path {
    stroke: var(--accent-color) !important;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}



.navbar-brand img {
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 52px !important;
    }
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.navbar-brand .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
}

.navbar-brand .logo-accent {
    color: #0e66c2;
}

.navbar-brand .logo-subtitle {
    font-size: 0.65rem;
    color: #888888;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #0e66c2;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #0e66c2;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: #0e66c2;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link i.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 102, 194, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
    color: #0e66c2;
    background: rgba(14, 102, 194, 0.05);
    border-left-color: #0e66c2;
    padding-left: 24px;
}

.dropdown-menu .dropdown-item i {
    font-size: 0.85rem;
    color: #0e66c2;
    width: 20px;
    text-align: center;
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(14, 102, 194, 0.1);
    margin: 6px 0;
}

/* Single-row Navbar Layout Styles */
.navbar-menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (min-width: 993px) {
    .navbar-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .navbar-brand {
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }
    .navbar-menu-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
    }
    .nav-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
        width: auto !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    .navbar-actions {
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 20px;
    }
}


.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Quote button at the navbar top right */
.navbar-quote-btn {
    background: #0e66c2;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #0e66c2;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.navbar-quote-btn:hover {
    background: transparent;
    color: #0e66c2;
    box-shadow: 0 4px 15px rgba(14, 102, 194, 0.4);
    transform: translateY(-1px);
}

/* Language selector block */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 14px;
    color: #1a1a1a;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.lang-selector img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.lang-selector i {
    color: #666;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lang-selector:hover {
    background: #ffffff;
}

.lang-selector.open i {
    transform: rotate(180deg);
}

/* Language Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(14, 102, 194, 0.1);
    color: #0e66c2;
}

.lang-option.active {
    background: rgba(14, 102, 194, 0.15);
    color: #0e66c2;
    font-weight: 600;
}

.lang-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Social icons underneath menu */
.nav-social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.nav-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-social-icons a:hover {
    color: #0e66c2;
    transform: scale(1.1);
}

/* Stylized double-line SVG logo style */
.mesifair-logo-svg path {
    transition: stroke 0.3s ease;
}

.navbar-brand:hover .mesifair-logo-svg path {
    stroke: #0e66c2;
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-8px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(8px);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
}

/* ============================================================
   6. MOBILE MENU
   ============================================================ */

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 40%,
        rgba(10, 10, 10, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: -60px auto 0;
    padding: 80px 20px 0;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0e66c2, transparent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #0e66c2;
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-desc span,
.hero-desc strong {
    display: inline-block;
    margin-right: 0.3em;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Slider Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 25 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-slider-arrow:hover {
    background: #0e66c2;
    border-color: #0e66c2;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(14, 102, 194, 0.5);
}

.hero-slider-arrow-prev {
    left: 40px;
}

.hero-slider-arrow-next {
    right: 40px;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .hero-slider-arrow-prev {
        left: 15px;
    }
    .hero-slider-arrow-next {
        right: 15px;
    }
}

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

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dot.active {
    background: #0e66c2;
    border-color: #0e66c2;
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    background: rgba(14, 102, 194, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(14, 102, 194, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #0e66c2;
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================================
   8. SECTION TITLES
   ============================================================ */

.section {
    padding: 100px 0;
}

.section-alt {
    background: #111111;
}

.section-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #0e66c2;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    z-index: 1;
}

.section-tag,
.section-tag i {
    color: #000000 !important;
}

.section-tag {
    display: block;
    font-size: 0.85rem;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}



.section-desc {
    font-size: 1.05rem;
    color: #888888;
    line-height: 1.8;
    margin-top: 20px;
}

/* ============================================================
   9. MACHINE GRID & FILTER BAR
   ============================================================ */

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

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

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

/* Featured Full-Width Grid (Edge-to-Edge Cards) */
.featured-machines-grid-wrapper {
    width: 100%;
    padding: 0 4px;
}

.machines-grid.featured-full-width {
    gap: 4px;
}

.featured-machines .machine-card {
    border: none;
    border-radius: 0;
}

/* Filter Bar Section Styles */
.filter-section {
    padding: 40px 0 20px;
    background: var(--bg-color);
}

.filter-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    align-items: flex-end;
}

@media (max-width: 992px) {
    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .filter-bar {
        grid-template-columns: 1fr;
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label i {
    color: var(--accent-color);
}

.filter-group .form-select,
.filter-group .form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    height: 48px;
}

.filter-group .form-select:focus,
.filter-group .form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 102, 194, 0.15);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.filter-actions .btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0 20px;
    font-weight: 600;
}

/* Premium Project Card Styles - Sharp Rectangular Grid */
.machine-card {
    background: var(--card-bg);
    border-radius: 0 !important;
    overflow: hidden;
    border: none !important;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.machine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.machine-card-image {
    position: relative;
    overflow: hidden;
    height: 270px;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0 !important;
}

.machine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.machine-card:hover .machine-card-image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.machine-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
    z-index: 2;
}

.machine-card:hover .machine-card-image-overlay {
    background: rgba(0, 0, 0, 0.65) !important;
}

.machine-card-centered-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
    line-height: 1.4;
    width: 100%;
    word-wrap: break-word;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.machine-card:hover .machine-card-centered-title {
    transform: scale(1.03);
}

.machine-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.machine-category {
    font-size: 0.78rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.machine-card-title {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.35;
    margin: 4px 0 8px;
}

.machine-card-title a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.machine-card-title a:hover {
    color: var(--accent-color);
}

.machine-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.machine-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.machine-meta span i {
    color: var(--accent-color);
}

.machine-card-desc {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 12px;
}

.machine-card-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    background: var(--bg-alt);
}

.machine-card-footer .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.machine-card-footer .btn-outline {
    background: transparent;
    border: 1.5px solid var(--accent-color);
    color: var(--accent-color);
}

.machine-card-footer .btn-outline:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.machine-card-footer .btn-gold {
    background: var(--accent-color);
    color: #ffffff;
    border: 1.5px solid var(--accent-color);
}

.machine-card-footer .btn-gold:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.condition-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(14, 102, 194, 0.3);
}

/* ============================================================
   10. FEATURES GRID
   ============================================================ */

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #1073dc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f52ba 0%, #1a68e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.4rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 82, 186, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(15, 82, 186, 0.5);
    background: linear-gradient(135deg, #125cd4 0%, #2572f5 100%);
    color: #ffffff;
}

.feature-title {
    font-size: 1.15rem;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.feature-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   11. PROCESS STEPS
   ============================================================ */

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 70px;
    right: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), rgba(14, 102, 194, 0.2), var(--accent-color));
    z-index: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #1073dc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.process-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(14, 102, 194, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 102, 194, 0.4);
}

.process-step:hover .process-number::after {
    inset: -10px;
    border-color: rgba(14, 102, 194, 0.5);
}

.process-title {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.process-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================================
   12. PRODUCT TYPES
   ============================================================ */

.machine-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .machine-types-grid {
        grid-template-columns: 1fr;
    }
}

.machine-type-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.machine-type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 100% 100%, rgba(14, 102, 194, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.machine-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.type-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.type-icon {
    width: 60px;
    height: 60px;
    background: #0e66c2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 102, 194, 0.3);
}

.machine-type-card:hover .type-icon {
    background: #1073dc;
    color: #ffffff;
    transform: rotate(10deg) scale(1.05);
}

.type-header h3 {
    font-size: 1.45rem;
    color: var(--heading-color);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.machine-type-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 0.92rem;
    font-weight: 500;
}

.type-features li i {
    width: 22px;
    height: 22px;
    background: #0e66c2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ============================================================
   13. STATS
   ============================================================ */

.stats-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: min(90vw, 280px);
    height: min(90vw, 280px);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: statSectionGlowPulse 2.8s ease-in-out infinite;
}

@keyframes statSectionGlowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.4;
    }
    15% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
    30% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.65;
    }
    45% {
        transform: translate(-50%, -50%) scale(1.22);
        opacity: 1;
    }
    70%, 100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.4;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item, .stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-number .counter {
    display: inline-block;
}

.stat-suffix {
    font-size: 0.6em;
    font-weight: 600;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 15px;
}

.testimonial-inner {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(14, 102, 194, 0.15);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(14, 102, 194, 0.2);
}

.testimonial-author-info h4 {
    font-size: 1rem;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(14, 102, 194, 0.3);
    background: transparent;
    color: #0e66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.testimonial-btn:hover {
    background: #0e66c2;
    color: #0a0a0a;
    border-color: #0e66c2;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(14, 102, 194, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #0e66c2;
    transform: scale(1.2);
}

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

.testimonials-grid .testimonial-card {
    flex: none;
    width: auto;
    padding: 0;
    height: 100%;
}

.testimonials-grid .testimonial-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-grid .testimonial-text {
    flex-grow: 1;
}

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

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

/* ============================================================
   15. CTA SECTION
   ============================================================ */

.cta-section {
    background: linear-gradient(135deg, #0e66c2 0%, #1073dc 50%, #0e66c2 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: goldShimmer 6s ease infinite;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(10, 10, 10, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   16. FOOTER
   ============================================================ */

.footer {
    background: var(--bg-alt);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 102, 194, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.footer-brand .logo-accent {
    color: var(--accent-color);
}

.footer-brand p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(14, 102, 194, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.05rem;
    color: var(--heading-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact li i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: var(--text-muted);
}

.footer-contact li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.footer-bottom a {
    color: var(--accent-color);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: #888888;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #0e66c2;
}

/* ============================================================
   17. WHATSAPP FLOAT
   ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ff3b30;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    border: 2px solid #25D366;
    font-family: sans-serif;
}

/* ============================================================
   18. BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 88px;
    right: 38px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.15rem;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    mix-blend-mode: difference;
    border: none;
}

.back-to-top i {
    color: #000000;
    transition: transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

body.quote-modal-open .back-to-top {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ============================================================
   19. PAGE HERO
   ============================================================ */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: #0a0a0a;
    text-align: center;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    border-bottom: none;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.88rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--accent-color);
    font-weight: 600;
}

.breadcrumb li.active,
.breadcrumb-list li.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */

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

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 16px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(14, 102, 194, 0.3);
    border-radius: 16px;
    z-index: -1;
}

.about-content .about-label {
    font-size: 0.85rem;
    color: #0e66c2;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.about-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #b0b0b0;
}

.about-highlight-item i {
    color: #0e66c2;
    font-size: 0.9rem;
}

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

.value-card {
    background: var(--accent-color);
    border: none;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(14, 102, 194, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 102, 194, 0.22);
}

.value-icon {
    font-size: 2.2rem;
    color: #111111;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.25rem;
    color: #111111;
    font-weight: 700;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    font-size: 0.9rem;
    color: #222222;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(14, 102, 194, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-content {
    width: 45%;
    background: #1a1a1a;
    border: 1px solid rgba(14, 102, 194, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0e66c2;
    margin-bottom: 8px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #0e66c2;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #0a0a0a;
    z-index: 1;
}

/* ============================================================
   21. MACHINE DETAIL
   ============================================================ */

.machine-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.machine-gallery {
    position: relative;
}

.machine-gallery-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #111111;
}

.machine-gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.machine-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: #0e66c2;
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.machine-detail-info {
    position: sticky;
    top: 100px;
}

.machine-detail-category {
    font-size: 0.82rem;
    color: #0e66c2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.machine-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.machine-detail-desc {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.specs-table {
    width: 100%;
    margin-bottom: 30px;
}

.specs-table tr:nth-child(odd) {
    background: rgba(26, 26, 26, 0.8);
}

.specs-table tr:nth-child(even) {
    background: rgba(17, 17, 17, 0.8);
}

.specs-table td {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(14, 102, 194, 0.05);
}

.specs-table td:first-child {
    color: #888888;
    font-weight: 600;
    width: 40%;
}

.specs-table td:last-child {
    color: #b0b0b0;
}

.machine-detail-features {
    margin-bottom: 30px;
}

.machine-detail-features h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.machine-detail-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #b0b0b0;
    font-size: 0.92rem;
}

.machine-detail-features ul li i {
    color: #0e66c2;
    font-size: 0.8rem;
}

.machine-detail-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   22. SERVICES
   ============================================================ */

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #1073dc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(14, 102, 194, 0.1), rgba(14, 102, 194, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    color: #0e66c2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0e66c2, #1073dc);
    color: #0a0a0a;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-color);
}

.service-features li i {
    color: #0e66c2;
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0e66c2;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1073dc;
    gap: 12px;
}

/* ============================================================
   23. CONTACT
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(14, 102, 194, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.05);
}

.info-content h4 {
    font-size: 1.05rem;
    color: var(--heading-color);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.info-content p {
    font-size: 0.92rem;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.1) contrast(1.1);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    align-self: start;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.contact-form {
    margin-top: 24px;
}

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

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1 !important;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23b59438' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px !important;
    cursor: pointer;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(14, 102, 194, 0.15);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

/* ============================================================
   24. REFERENCES
   ============================================================ */

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

.reference-card {
    background: #1a1a1a;
    border: 1px solid rgba(14, 102, 194, 0.08);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.reference-card:hover {
    border-color: rgba(14, 102, 194, 0.3);
}

.reference-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.reference-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================================
   25. FORMS
   ============================================================ */

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

.form-label {
    display: block;
    font-size: 0.88rem;
    color: #b0b0b0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 102, 194, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999999;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0e66c2;
    cursor: pointer;
}

.form-check label {
    font-size: 0.88rem;
    color: #888888;
    cursor: pointer;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 16px;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    display: block;
}

.form-error {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 6px;
    display: none;
}

.form-group.has-error .form-control {
    border-color: #e74c3c;
}

.form-group.has-error .form-error {
    display: block;
}

/* ============================================================
   26. BADGES
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: linear-gradient(135deg, #0e66c2, #1073dc);
    color: #0a0a0a;
}

.badge-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.badge-warning {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.badge-info {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   27. ALERTS
   ============================================================ */

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.alert i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.alert-error {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.alert-warning {
    background: rgba(241, 196, 15, 0.08);
    border: 1px solid rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.alert-info {
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.alert-close {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    color: inherit;
    font-size: 1rem;
}

.alert-close:hover {
    opacity: 1;
}

/* ============================================================
   28. LOGIN PAGE
   ============================================================ */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 40px 20px;
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(14, 102, 194, 0.05), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(14, 102, 194, 0.03), transparent 50%);
    pointer-events: none;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 102, 194, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 36px;
}

.login-header .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.login-header .logo-accent {
    color: #0e66c2;
}

.login-header p {
    color: #888888;
    font-size: 0.92rem;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: #888888;
}

.login-footer a {
    color: #0e66c2;
    font-weight: 600;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #555555;
    font-size: 0.82rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(14, 102, 194, 0.1);
}

.login-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.login-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #b0b0b0;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-social-btn:hover {
    border-color: rgba(14, 102, 194, 0.3);
    color: #ffffff;
}

/* ============================================================
   29. ANIMATIONS
   ============================================================ */

/* Disable Scroll Slide-Up Animations (Immediate Visibility) */
[data-animate],
.fade-up,
.fade-down,
.fade-left,
.fade-right,
.fade-in,
.scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Staggered delays */
[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }
[data-animate-delay="600"] { transition-delay: 0.6s; }
[data-animate-delay="700"] { transition-delay: 0.7s; }
[data-animate-delay="800"] { transition-delay: 0.8s; }

/* Keyframes */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(14, 102, 194, 0.1); }
    50% { border-color: rgba(14, 102, 194, 0.4); }
}

/* ============================================================
   30. RESPONSIVE DESIGN
   ============================================================ */

/* Extra Large: 1200px */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .machines-grid {
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
    
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        gap: 20px;
    }
}

/* Large: 992px */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .navbar-actions {
        display: none !important;
    }
    
    .navbar-menu-container {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(14, 102, 194, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.open .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu .dropdown-item {
        padding: 10px 0;
        border-left: none;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .machines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-types-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .machine-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .machine-detail-info {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .process-grid {
        flex-wrap: wrap;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Medium: 768px */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .machines-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .process-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .machine-gallery-main img {
        height: 280px;
    }
    
    .machine-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .login-card {
        padding: 36px 28px;
    }
    
    .page-hero {
        padding: 140px 0 60px;
        min-height: 280px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .back-to-top {
        right: 35px;
        bottom: 74px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 22px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .sticky-quote-trigger {
        bottom: 22px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.78rem;
    }

    .quote-modal {
        bottom: 75px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: calc(100vw - 30px);
    }
}

/* Small: 576px */
@media (max-width: 576px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 4px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .machine-card-image {
        height: 200px;
    }
    
    .machine-info {
        padding: 18px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .reference-card {
        padding: 20px;
        min-height: 90px;
    }
    
    .testimonial-inner {
        padding: 28px 20px;
    }
    
    .product-type-content {
        padding: 24px;
    }
    
    .product-type-title {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    
    .page-hero {
        padding: 120px 0 50px;
        min-height: 240px;
    }
    
    .breadcrumb {
        font-size: 0.82rem;
    }
    
    .nav-menu {
        width: 280px;
        right: -280px;
        padding: 80px 20px 30px;
    }
}

/* ============================================================
   31. CUSTOM SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), #0b529e);
    border-radius: 5px;
    border: 2px solid var(--bg-alt);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-hover), var(--accent-color));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-alt);
}

/* ============================================================
   32. PRELOADER
   ============================================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(14, 102, 194, 0.15);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
    margin-bottom: 20px;
}

.preloader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: 2px;
}

.preloader-text .accent {
    color: var(--accent-color);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--accent-color); }
.text-white { color: #ffffff; }
.text-muted { color: var(--text-muted); }
.text-body { color: var(--text-color); }

.bg-dark { background: var(--bg-color); }
.bg-dark-alt { background: var(--bg-alt); }
.bg-card { background: var(--card-bg); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.w-100 { width: 100%; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

.overflow-hidden { overflow: hidden; }

.relative { position: relative; }

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

.gold-border-top {
    border-top: 2px solid rgba(14, 102, 194, 0.2);
}

.gold-border-bottom {
    border-bottom: 2px solid rgba(14, 102, 194, 0.2);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* No body scroll when mobile menu open */
body.no-scroll {
    overflow: hidden;
}

/* Image placeholder / loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #222222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Lazy load images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .navbar,
    .top-bar,
    .whatsapp-float,
    .back-to-top,
    .preloader {
        display: none !important;
    }
    
    body {
        background: #ffffff;
        color: #000000;
    }
    
    * {
        color: #000000 !important;
        background: transparent !important;
    }
}

/* ============================================================
   MESIFAIR NEW CUSTOM REDESIGN STYLES
   ============================================================ */

/* Infinite Marquee Slider (sağa doğru akan) */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
    background: #0f0f0f;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scroll-right 220s linear infinite;
    align-items: center;
}

.marquee-item {
    position: relative;
    width: 175px;
    height: 88px;
    background: #ebedf0;
    border-radius: 10px;
    padding: 10px 18px;
    margin: 0 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.brand-tooltip {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #080808;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #0e66c2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}

.brand-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent #0e66c2 transparent;
}

.marquee-item:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(14, 102, 194, 0.3);
}

.marquee-item:hover .brand-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.marquee-item img {
    max-width: 135px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sticky Floating Quote Button */
.sticky-quote-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #0f52ba;
    color: #ffffff !important;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(15, 82, 186, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.sticky-quote-trigger i {
    color: #ffffff !important;
}

.sticky-quote-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 82, 186, 0.6);
}

/* Modal Popup Widget (Sağ Alt Köşe) */
.quote-modal {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 320px;
    background: #111111;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-header {
    background: #1a1a1a;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-modal-header h3 {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-modal-header h3 i {
    color: var(--accent-color);
}

.quote-modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #888888;
    cursor: pointer;
    transition: color 0.2s;
}

.quote-modal-close:hover {
    color: #ffffff;
}

.quote-modal-body {
    padding: 20px;
}

.quote-modal-body .form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-modal-body .form-group input,
.quote-modal-body .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    outline: none;
    transition: all 0.2s;
}

.quote-modal-body .form-group input:focus,
.quote-modal-body .form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 5px rgba(14, 102, 194, 0.2);
}

.quote-modal-body .btn-submit {
    width: 100%;
    background: #0f52ba;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: background 0.3s;
    text-transform: uppercase;
}

.quote-modal-body .btn-submit:hover {
    background: #0d47a1;
}

/* Kiralanabilir Ekipmanlar Sayfa Tasarımı (Zigzag Layout) */
.equipment-section {
    padding: 80px 0;
}

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.equipment-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
}

.equipment-row.reverse {
    grid-template-columns: 1.2fr 1fr;
}

@media (min-width: 769px) {
    .equipment-row.reverse .equipment-image {
        order: 2;
    }
    .equipment-row.reverse .equipment-info {
        order: 1;
    }
}

.equipment-image {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equipment-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    margin: 0;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.equipment-spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
}

.equipment-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.equipment-cta-info {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .equipment-row, .equipment-row.reverse {
        gap: 30px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .equipment-row, .equipment-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    .equipment-image {
        height: 240px;
    }
}

/* Ensure filter actions container wraps correctly on mobile */
@media (max-width: 576px) {
    .filter-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }
}

/* Ensure filter actions buttons have identical sizing, full width, and style */
.filter-actions .btn,
.filter-actions button.btn,
.filter-actions a.btn {
    flex: 1 !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 28px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Typewriter Animation Typing Cursor styles */
.typing-cursor {
    color: var(--accent-color);
    font-weight: 300;
    margin-left: 4px;
    animation: typing-blink 0.8s infinite;
    display: inline-block;
    font-size: 0.95em;
    vertical-align: middle;
}
@keyframes typing-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* About Details Responsive Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================================
   LIGHTBOX FULLSCREEN MODAL & STAND GALLERY GRID STYLES
   ============================================================ */
.detail-main-banner {
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    background: #000000;
    border-bottom: 1px solid var(--border-color);
}

.detail-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: blur(25px) brightness(0.6);
    transform: scale(1.15);
    z-index: 1;
}

.detail-slide-main {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 2;
    cursor: pointer;
}

.stand-gallery-section {
    padding: 60px 0 80px;
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.stand-gallery-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.stand-gallery-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Dynamic Bento / Collage Grid (Matches User Reference) */
.stand-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stand-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 360px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.stand-gallery-card-bg {
    display: none;
}

.stand-gallery-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Every 3rd Photo Spans 2 Columns / Full Width (Her 3. fotoğraf 2 kartlık dikdörtgen yer kaplar) */
.stand-gallery-card:nth-child(3n) {
    grid-column: 1 / -1;
    height: 480px;
}

/* 1 Item Layout */
.stand-gallery-grid.items-1 {
    grid-template-columns: 1fr;
}
.stand-gallery-grid.items-1 .stand-gallery-card {
    height: 520px;
}

/* Odd Count Last Item Spans Full Width */
.stand-gallery-grid.items-odd .stand-gallery-card:last-child {
    grid-column: 1 / -1;
    height: 460px;
}

.stand-gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.stand-gallery-card:hover .stand-gallery-card-img {
    transform: scale(1.04);
}

.stand-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stand-gallery-card:hover .stand-gallery-overlay {
    opacity: 1;
}

.stand-gallery-zoom-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0e66c2;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(35px) brightness(0.35);
    transform: scale(1.2);
    z-index: 1;
    transition: src 0.3s ease;
}

.lightbox-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2;
}

.lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.lightbox-arrow:hover {
    background: #0e66c2;
    border-color: #0e66c2;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

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

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

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.lightbox-close:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    transform: scale(1.1) rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 20;
}

@media (max-width: 768px) {
    .lightbox-arrow.prev { left: 12px; width: 42px; height: 42px; }
    .lightbox-arrow.next { right: 12px; width: 42px; height: 42px; }
    .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; }
    .stand-gallery-grid { grid-template-columns: 1fr; }
}

/* ==================== BLURRED BACKGROUND FRAME FOR VERTICAL / PORTRAIT IMAGES ==================== */
.image-blur-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-blur-frame .bg-blur-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.55);
    transform: scale(1.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

.image-blur-frame .fg-image-layer {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Universal Card Image Cover Standard (All Project Cards) */
.machine-card-image img,
.stand-gallery-card-img,
.detail-slide-main,
.slider-slide img.slider-slide-main,
.ready-package-card-img,
.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Vertical Aspect Specific Overrides (Blurred Background, No Black Bars) */
.is-vertical-frame {
    position: relative !important;
    overflow: hidden !important;
    background: #0a0a0a !important;
}

.detail-slide.is-vertical-frame .detail-slide-bg,
.stand-gallery-card.is-vertical-frame .stand-gallery-card-bg,
.machine-card-image.is-vertical-frame .card-bg-blur {
    display: block !important;
    position: absolute !important;
    top: -10% !important;
    left: -10% !important;
    width: 120% !important;
    height: 120% !important;
    background-size: cover !important;
    background-position: center center !important;
    object-fit: cover !important;
    filter: blur(25px) brightness(0.65) !important;
    transform: scale(1.25) !important;
    z-index: 1 !important;
    opacity: 1 !important;
}

.detail-slide.is-vertical-frame .detail-slide-main,
.stand-gallery-card.is-vertical-frame .stand-gallery-card-img,
.machine-card-image.is-vertical-frame img {
    position: relative !important;
    z-index: 2 !important;
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
}

/* ============================================================
   SOFT PAGE LOADER OVERLAY (BLUE DOTS ANIMATION)
   ============================================================ */
.page-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.page-loader-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 3 Pulsing Blue Dots Loader */
.loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loader-dots .dot {
    width: 14px;
    height: 14px;
    background-color: #0e66c2;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(14, 102, 194, 0.35);
    animation: softDotPulse 1.4s infinite ease-in-out both;
}

.loader-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-dots .dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes softDotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.35;
        background-color: rgba(14, 102, 194, 0.4);
    }
    40% {
        transform: scale(1.15);
        opacity: 1;
        background-color: #0e66c2;
        box-shadow: 0 6px 20px rgba(14, 102, 194, 0.6);
    }
}

/* ============================================================
   SMALL RECTANGULAR COOKIE CONSENT BANNER POPUP
   ============================================================ */
.cookie-banner-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 440px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Inter', sans-serif;
    color: #111111;
}

.cookie-banner-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-banner-header .cookie-icon {
    font-size: 1.25rem;
    color: #0e66c2;
}

.cookie-banner-header .cookie-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.cookie-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #555555;
    margin-bottom: 18px;
}

.cookie-desc a {
    color: #0e66c2;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.btn-cookie-decline,
.btn-cookie-necessary {
    font-size: 0.78rem;
    color: #555555;
    font-weight: 600;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 9px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    flex: 1;
    white-space: nowrap;
}

.btn-cookie-decline:hover,
.btn-cookie-necessary:hover {
    color: #111111;
    border-color: #d1d5db;
    background: #e5e7eb;
}

.btn-cookie-accept {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: #0e66c2;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(14, 102, 194, 0.3);
    flex: 1.1;
    text-align: center;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: #1073dc;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(14, 102, 194, 0.45);
}

@media (max-width: 480px) {
    .cookie-banner-popup {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        max-width: none;
        padding: 18px;
    }
    .cookie-banner-actions {
        flex-direction: column;
        gap: 8px;
    }
    .btn-cookie-decline,
    .btn-cookie-necessary,
    .btn-cookie-accept {
        width: 100%;
    }
}

/* Performance Optimization: Skip rendering for off-screen sections on low-end devices */
.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}




