﻿/* ===================================
   Component Styles
   Aluminum Casting Corporate Website
   =================================== */

/* Navigation Component — Premium Enterprise */
/* Desktop horizontal navigation menu with logo and links */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--spacing-md);
    background-color: #FFFFFF;
    border-bottom: 1px solid #F1F5F9;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 
        height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), 
        background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Add shadow when scrolled - Premium sticky header */
.nav-container.scrolled,
.nav-container.header-scrolled {
    height: 64px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: transparent;
}

.nav-container.header-scrolled .nav-logo {
    max-height: 48px;
    transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo positioning and sizing */
.nav-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1001;
}

.nav-logo {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

/* Navigation menu list */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

/* Navigation items */
.nav-item {
    position: relative;
}

/* Navigation links with hover effects */
.nav-link {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: #334155;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 6px;
    letter-spacing: 0.1px;
}

.nav-link:hover {
    color: #14B8A6;
    background-color: transparent;
}

/* Non-clickable nav link (for dropdown-only items) */
.nav-link-noclick {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
    cursor: default;
}

.nav-link-noclick:hover {
    color: #14B8A6;
    background-color: rgba(20, 184, 166, 0.05);
}

.nav-item--active .nav-link-noclick {
    color: #14B8A6;
    font-weight: 600;
    position: relative;
}

.nav-item-dropdown .nav-link-noclick {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Active page indicator */
.nav-item--active .nav-link {
    color: #14B8A6;
    font-weight: 600;
    position: relative;
}

.nav-item--active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background-color: #14B8A6;
}

/* Hamburger menu toggle button - hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* Hamburger menu icon lines */
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #14B8A6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -8px;
}

.nav-toggle-icon::after {
    top: 8px;
}

/* Hamburger icon animation when menu is open */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top center;
    transition: 
        opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        visibility 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #F1F5F9;
}

/* Dropdown open state */
.nav-item-dropdown:hover .dropdown-menu,
.dropdown-menu.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.04));
}

/* Hover alanını genişlet - menü ile parent arasında boşluk olmasın */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 12px;
    background: transparent;
    z-index: 999;
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    color: #334155;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: 
        background-color 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding-left 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    border-left-color: #14B8A6;
    color: #14B8A6;
    background-color: rgba(20, 184, 166, 0.04);
    padding-left: 28px;
}

.dropdown-link:active {
    background: rgba(15, 118, 110, 0.1);
}

/* Language Selector Styles - FLOATING LEFT SIDE */
.language-selector {
    position: fixed;
    left: 24px;
    bottom: 200px;
    z-index: 1100;
}

/* Dropdown menü hover ile açılsın */
.language-selector:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
}

.language-btn:hover {
    border-color: #14B8A6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.language-btn:active {
    transform: translateY(0);
}

.language-btn .dropdown-arrow {
    display: none; /* Ok işaretini gizle */
}

.flag-icon {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-link .flag-icon {
    font-size: 1.25rem;
}

.lang-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #14B8A6;
}

/* Language Menu - Yukarı Doğru Açılma */
.language-menu {
    position: absolute !important;
    min-width: 180px;
    left: 0 !important;
    right: auto !important;
    bottom: calc(100% + 12px) !important;
    top: auto !important;
    background: #FFFFFF !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
    border-radius: 12px;
    border: 1px solid #E2E8F0 !important;
    padding: 6px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.97) !important;
    transform-origin: bottom left;
    
    transition: opacity 0.2s ease,
                visibility 0.2s ease,
                transform 0.2s ease;
    
    z-index: 1200;
}

/* Hover durumunda açık */
.language-selector:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) !important;
}

/* Ok işareti - aşağıda */
.language-menu::before {
    content: '';
    position: absolute;
    left: 18px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #E2E8F0;
    z-index: -1;
}

.language-menu::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -6px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFFFFF;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155 !important;
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.lang-link:hover {
    background: rgba(20, 184, 166, 0.06) !important;
    border-left-color: #14B8A6;
    color: #14B8A6 !important;
}

.lang-link.active {
    background: rgba(20, 184, 166, 0.08) !important;
    color: #14B8A6 !important;
    font-weight: 600;
    border-left-color: #14B8A6;
    padding-left: 18px;
}

.lang-link.active:hover {
    padding-left: 20px;
}

.lang-link .flag-icon {
    font-size: 1.1rem;
}

.lang-link .lang-text {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

/* Dark section adaptive styles for floating buttons */
.language-btn.on-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.language-btn.on-dark .lang-text {
    color: rgba(255, 255, 255, 0.85);
}

.language-btn.on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-catalog-btn.on-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.floating-catalog-btn.on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(20, 184, 166, 0.4);
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile dropdown styles */
@media screen and (max-width: 767px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(20, 184, 166, 0.04);
        margin: 8px 0 0 0;
        padding: 8px 0;
        border-radius: 8px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-link {
        padding: 10px 20px 10px 40px;
        font-size: 0.875rem;
    }
    
    .dropdown-link:hover {
        padding-left: 44px;
    }
    
    /* Language selector mobile styles - Sol alt köşe */
    .language-selector {
        position: fixed;
        left: 16px;
        bottom: 170px;
        right: auto;
        top: auto;
        z-index: 1100;
    }
    
    .language-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        font-size: 1rem;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    
    .language-menu {
        min-width: 170px;
        left: 0;
        right: auto;
        bottom: calc(100% + 12px);
        top: auto;
    }
    
    .lang-link {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .lang-link:hover {
        padding-left: 20px;
    }
    
    .lang-link.active {
        padding-left: 16px;
    }
    
    .lang-link.active:hover {
        padding-left: 15px;
    }
}

/* Hero Section Component */
/* Hero section with full-width layout and background */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 35%, #14B8A6 100%);
    color: white;
    padding: var(--spacing-xl) var(--spacing-sm);
    padding-bottom: calc(var(--spacing-xl) + 80px);
    text-align: center;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative wave divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave svg path {
    animation: waveAnimation 8s ease-in-out infinite;
    transform-origin: center;
}

.hero-wave svg path:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 10s;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-25px) scaleY(1.1);
    }
}

/* Hero content container */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

/* Hero heading with responsive sizing */
.hero-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.2;
}

/* Hero subheading */
.hero-subheading {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Hero CTA button */
.hero-cta {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background-color: #0F766E;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(15, 118, 110, 0.3);
}

.hero-cta:hover {
    background-color: #0B5E57;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 118, 110, 0.4);
    color: white;
}

/* Content Block Component - Will be implemented in tasks 5-9 */

/* Company Overview Section */
.company-overview {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.overview-intro {
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

/* Corporate Values Section */
.corporate-values-section {
    margin: var(--spacing-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.value-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.value-icon svg {
    width: 36px;
    height: 36px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Corporate Image Showcase */
.corporate-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 10;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 79, 87, 0.95) 0%, rgba(13, 79, 87, 0.7) 60%, transparent 100%);
    padding: var(--spacing-md);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.showcase-overlay h5 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(15, 118, 110, 0.95) 0%, rgba(15, 118, 110, 0.7) 60%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .corporate-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon svg {
        width: 30px;
        height: 30px;
    }
}

.overview-highlights {
    margin-top: var(--spacing-xl);
}

.subsection-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.highlight-item {
    padding: var(--spacing-md);
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0F766E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.15);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.highlight-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: #f5f5f5;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-xs);
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0F766E;
    font-weight: bold;
}

/* Contact Form Component */

/* Contact Header Section */
.contact-header-section {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background-color: var(--background-color);
    text-align: center;
}

.contact-header-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styles - Consistent input appearance */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.required {
    color: var(--error-color);
    font-weight: 700;
}

/* Consistent input styling with smooth transitions */
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Focus state for better accessibility */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #14B8A6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    background-color: #fafbfc;
}

/* Invalid field styling - Red border for errors */
.form-input.error,
.form-textarea.error {
    border-color: var(--error-color);
    background-color: #fff5f5;
}

/* Error state focus - maintain red border but add shadow */
.form-input.error:focus,
.form-textarea.error:focus {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Hover state for inputs */
.form-input:hover:not(:focus),
.form-textarea:hover:not(:focus) {
    border-color: #999999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Error Messages - Red text below fields */
.error-message {
    display: none;
    font-size: 0.875rem;
    color: var(--error-color);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

.error-message.visible {
    display: block;
}

/* Show error message when it has content */
.error-message:not(:empty) {
    display: block;
}

/* Success Message - Green background and text */
.success-message {
    padding: var(--spacing-md);
    background-color: #e8f5e9;
    color: var(--success-color);
    border: 2px solid var(--success-color);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-top: var(--spacing-md);
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
    animation: slideDown 0.3s ease-out;
}

/* Animation for success message */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.form-actions .btn {
    min-width: 200px;
}

/* Disabled state for submit button */
.form-actions .btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-actions .btn:disabled:hover {
    background-color: #cccccc;
    transform: none;
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.location-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.location-map {
    flex: 1;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    flex: 1;
    width: 100%;
}

.location-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.location-details h3:first-child {
    margin-top: 0;
}

.address-text,
.directions-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Company Details Section */
.company-details-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.company-details-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.company-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.detail-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    margin: 0 auto var(--spacing-md);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.detail-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

.detail-content strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-top: var(--spacing-sm);
}

.detail-content strong:first-child {
    margin-top: 0;
}

.detail-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer Component */
/* Footer — Premium Enterprise */
.footer {
    background-color: #071E23;
    color: white;
    padding: 80px 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Plexus canvas handles the pattern */
.footer::before {
    display: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Footer sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #14B8A6;
    letter-spacing: -0.2px;
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-sm);
}

/* Footer navigation links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: var(--spacing-xs);
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.footer-link:hover {
    color: #14B8A6;
    padding-left: 4px;
}

/* Footer contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--spacing-sm);
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-contact-item a:hover {
    color: #14B8A6;
    text-decoration: none;
}

/* Footer bottom section with copyright */
.footer-bottom {
    margin-top: 60px;
    padding: 24px var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Image Gallery Component - Will be implemented in task 8 */

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading {
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

.btn-primary {
    background-color: #0F766E;
    color: white;
    box-shadow: 0 2px 4px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background-color: #0B5E57;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(15, 118, 110, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* Card Component */
.card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    gap: var(--spacing-md);
}

.grid-3 {
    display: grid;
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    gap: var(--spacing-md);
}

/* Auto-fit grid for flexible responsive layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* Grid gap variations */
.grid-gap-sm {
    gap: var(--spacing-sm);
}

.grid-gap-lg {
    gap: var(--spacing-lg);
}

/* Placeholder for additional component styles */


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 50%, #0B3A3A 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
}

/* Animated background effect */
.back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F766E 0%, #0B5E57 100%);
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    z-index: -1;
}

.back-to-top:hover::before {
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-45deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    70% {
        transform: scale(0.9) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1);
}

/* Arrow icon styling */
.back-to-top::after {
    content: '↑';
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 50%, #14B8A6 100%);
    padding: var(--spacing-xl) 0;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

/* Add animated gradient overlay */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(15, 118, 110, 0.1) 50%, 
        transparent 100%);
    animation: statsGradient 8s ease-in-out infinite;
}

@keyframes statsGradient {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        border-radius: 14px;
    }
    
    .back-to-top::after {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-wave {
        height: 50px;
    }
    
    .hero-wave svg {
        height: 50px;
    }
    
    .hero-section {
        padding-bottom: calc(var(--spacing-lg) + 50px);
    }
}

/* Social Media Links in Footer */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Gradient background on hover */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

/* Icon Styles for All Pages */
.capability-icon svg,
.detail-icon svg,
.capability-overview-item .capability-icon svg {
    transition: transform 0.3s ease;
}

.capability-item:hover .capability-icon svg,
.detail-item:hover .detail-icon svg,
.capability-overview-item:hover .capability-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Ensure icons maintain aspect ratio */
.capability-icon,
.detail-icon,
.capability-overview-item .capability-icon {
    flex-shrink: 0;
}

/* Detail Icon Styles with Red Gradient */
.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #0B5E57 50%, #0B3A3A 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
    transition: all 0.3s ease;
}

.detail-icon svg {
    width: 45px;
    height: 45px;
    color: white;
}

.detail-item:hover .detail-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.5);
}

/* Capability Overview Icon Styles with Red Gradient */
.capability-overview-item .capability-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #0B5E57 50%, #0B3A3A 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
    transition: all 0.3s ease;
}

.capability-overview-item .capability-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.capability-overview-item:hover .capability-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.5);
}


/* ===================================
   Catalog CTA Section
   =================================== */

.catalog-cta-section {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.catalog-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(15, 118, 110, 0.03) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(26,155,168,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.catalog-cta-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.catalog-cta-text {
    max-width: 700px;
}

.catalog-cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalog-cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
}

.catalog-cta-action {
    margin-top: var(--spacing-sm);
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F766E 0%, #0B5E57 100%);
    transition: left 0.5s;
}

.btn-catalog:hover::before {
    left: 0;
}

.btn-catalog:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.4);
    color: white;
}

.catalog-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.btn-catalog:hover .catalog-icon {
    transform: rotateY(180deg);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-catalog:hover .arrow-icon {
    transform: translateX(5px);
}

/* ===================================
   Floating Catalog Button
   =================================== */

.floating-catalog-btn {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #0F766E;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.floating-catalog-btn:hover {
    transform: translateY(-4px);
    border-color: #14B8A6;
    color: #14B8A6;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.floating-catalog-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
}

.floating-catalog-btn:hover svg {
    transform: scale(1.1);
}

.floating-catalog-text {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-catalog-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

/* Responsive */
@media (min-width: 768px) {
    .catalog-cta-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .catalog-cta-text {
        flex: 1;
    }
    
    .catalog-cta-action {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .catalog-cta-heading {
        font-size: 2rem;
    }
    
    .floating-catalog-btn {
        width: 60px;
        height: 60px;
        bottom: 170px;
        right: 20px;
    }
    
    .floating-catalog-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-catalog-text {
        font-size: 0.65rem;
    }
}


/* ===================================
   MODERN CORPORATE HOME PAGE STYLES
   Soft & Professional Color Palette
   =================================== */

/* Modern Hero Section */
.hero-section-modern {
    padding: 0;
    background: 
        linear-gradient(135deg, #0A3038 0%, #0B3A3A 25%, #0D4A4A 50%, #0F5C5C 75%, #0F766E 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(7, 30, 35, 0.92) 0%, rgba(7, 30, 35, 0.75) 35%, rgba(10, 48, 56, 0.45) 65%, rgba(10, 48, 56, 0.3) 100%),
        linear-gradient(180deg, rgba(7, 30, 35, 0.3) 0%, transparent 30%, transparent 60%, rgba(11, 31, 36, 0.75) 80%, rgba(11, 31, 36, 1) 100%);
    z-index: 1;
}

/* Plexus canvas above video overlay in hero */
.hero-section-modern .plexus-canvas {
    z-index: 2 !important;
    opacity: 0.6;
}

/* Plexus geometric network overlay */
.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

/* Ambient glow accents */
.hero-section-modern::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-section-modern > .container {
    max-width: 1280px;
    padding: 0 48px;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 3;
    max-width: 640px;
    margin: 0;
}

.hero-text {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Hero overline — sector tag */
.hero-overline {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #14B8A6;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 4px;
    background: rgba(20, 184, 166, 0.06);
}

/* Hero divider line */
.hero-divider {
    width: 48px;
    height: 2px;
    background: #14B8A6;
    margin-bottom: 24px;
    border-radius: 1px;
}

/* Hero sub-primary — bold tagline */
.hero-sub-primary {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    max-width: 580px;
}

/* Sequenced animations for hero text children — transition based */
.hero-overline,
.hero-heading-modern,
.hero-sub-primary,
.hero-divider,
.hero-subheading-modern,
.hero-actions,
.hero-trust-badges {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-divider {
    transform: translateY(40px) scaleX(0);
    transform-origin: left;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-section-modern.is-loaded .hero-overline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.hero-section-modern.is-loaded .hero-heading-modern {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-section-modern.is-loaded .hero-sub-primary {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.hero-section-modern.is-loaded .hero-divider {
    opacity: 1;
    transform: translateY(0) scaleX(1);
    transition-delay: 0.7s;
}

.hero-section-modern.is-loaded .hero-subheading-modern {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}

.hero-section-modern.is-loaded .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.05s;
}

.hero-section-modern.is-loaded .hero-trust-badges {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.25s;
}

@keyframes heroPremiumFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-heading-modern {
    font-size: 4.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subheading-modern {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    font-weight: 400;
    max-width: 480px;
    letter-spacing: 0.2px;
}

.hero-subheading-modern:last-of-type {
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    margin-top: 48px;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-trust-badges span i {
    color: rgba(20, 184, 166, 0.5);
    font-size: 0.6875rem;
}

.hero-trust-badges span:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Premium Corporate Buttons */
.btn-primary-modern {
    display: inline-block;
    padding: 18px 44px;
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary-modern span {
    position: relative;
    z-index: 1;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0F766E 0%, #0B5E57 100%);
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.35);
    color: white;
}

.btn-secondary-modern {
    display: inline-block;
    padding: 18px 44px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-secondary-modern:hover {
    border-color: rgba(20, 184, 166, 0.5);
    background: rgba(20, 184, 166, 0.1);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Modern Stats Section — Premium Enterprise */
.stats-section-modern {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0B1F24 0%, #102D30 50%, #12383B 100%);
    margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Atmospheric blur bridge between hero and stats */
.stats-section-modern::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, #0B1F24 0%, rgba(11, 31, 36, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.stat-item-modern {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item-modern.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stat-item-modern.revealed:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Staggered animation delays */
.stat-item-modern:nth-child(1) { transition-delay: 0.1s; }
.stat-item-modern:nth-child(2) { transition-delay: 0.2s; }
.stat-item-modern:nth-child(3) { transition-delay: 0.3s; }
.stat-item-modern:nth-child(4) { transition-delay: 0.4s; }

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #1FA3A3;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label-modern {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Section Headers — Premium Enterprise */
.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading-modern {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.section-subtitle-modern {
    font-size: 1rem;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Company Introduction Section */
.company-intro-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.intro-content-modern {
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text-modern {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.intro-text-modern:last-of-type {
    margin-bottom: 0;
}

/* Feature Cards Grid — Premium Enterprise */
.intro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.intro-feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #F1F5F9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.intro-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-feature-card:hover .feature-image-wrapper img {
    transform: scale(1.03);
}

.feature-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.feature-icon-check {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #14B8A6, #0F766E);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.feature-icon-check svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #64748B;
    margin: 0;
}

/* Responsive for feature cards */
@media (max-width: 1024px) {
    .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .intro-features-grid {
        margin-top: 40px;
        gap: 20px;
    }
    
    .feature-content {
        padding: 24px 20px;
    }
    
    .feature-image-wrapper {
        height: 180px;
    }
}

/* About Company — Corporate Showcase */
.about-company-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3038 0%, #0B3A3A 30%, #0D4A4A 60%, #0F5C5C 100%);
    position: relative;
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 480px;
}

.about-img-primary {
    position: relative;
    width: 75%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.about-img-primary img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: 40%;
    right: 38%;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.3);
    z-index: 3;
}

.badge-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.85;
    line-height: 1.3;
}

.about-award-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0B3A3A;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-award-badge svg {
    color: #14B8A6;
    flex-shrink: 0;
}

.about-overline {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #14B8A6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14B8A6;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.about-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #14B8A6;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-cta-btn:hover {
    background: #0F766E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

@media (max-width: 1024px) {
    .about-company-grid {
        gap: 48px;
    }
    
    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding: 60px 0;
    }
    
    .about-company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        min-height: 360px;
    }
    
    .about-img-primary {
        width: 80%;
    }
    
    .about-img-primary img {
        height: 280px;
    }
    
    .about-img-secondary {
        width: 50%;
    }
    
    .about-img-secondary img {
        height: 180px;
    }
    
    .about-experience-badge {
        right: 30%;
        padding: 16px 20px;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .about-heading {
        font-size: 1.75rem;
    }
    
    .about-watermark {
        display: none;
    }
}

/* Capabilities Section — Premium Enterprise */
.capabilities-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.capabilities-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.capability-card-modern {
    background: #FFFFFF;
    padding: 44px 28px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #F1F5F9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.capability-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14B8A6, #0F766E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.capability-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.capability-card-modern:hover::before {
    transform: scaleX(1);
}

.capability-icon-modern {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0FDFA;
    border-radius: 12px;
    color: #14B8A6;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.capability-card-modern:hover .capability-icon-modern {
    background: linear-gradient(135deg, #14B8A6, #0F766E);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.capability-icon-modern svg {
    width: 26px;
    height: 26px;
}

.capability-title-modern {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.capability-description-modern {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
    text-align: center;
}

/* Services Overview Section — Industrial Photo Grid */
.services-overview-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
}

.services-overview-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-overview-header .section-heading-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.services-overview-header .section-subtitle-modern {
    font-size: 1rem;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3 / 3.5;
    display: block;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.service-overview-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overview-card:hover img {
    transform: scale(1.06);
}

/* Overlay — aşağıdan yukarıya kayan blur efekti */
.service-overview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 48, 56, 0.94) 0%, rgba(10, 48, 56, 0.8) 40%, rgba(10, 48, 56, 0.5) 70%, rgba(10, 48, 56, 0.2) 100%);
    z-index: 2;
    transform: translateY(calc(100% - 72px));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overview-card:hover .service-overview-overlay {
    transform: translateY(0);
}

/* Başlık — her zaman görünür */
.service-overview-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 1.35;
    letter-spacing: -0.1px;
    transition: margin-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overview-card:hover .service-overview-title {
    margin-bottom: 10px;
}

/* Açıklama — hover'da görünür */
.service-overview-description {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 14px 0;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.service-overview-card:hover .service-overview-description {
    opacity: 1;
    transform: translateY(0);
}

/* Alt çizgi aksan */
.service-overview-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #14B8A6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.service-overview-card:hover .service-overview-overlay::after {
    transform: scaleX(1);
}

@media (min-width: 1200px) {
    .hero-content-modern {
        max-width: 680px;
    }
    
    .hero-heading-modern {
        font-size: 4.75rem;
    }
    
    .hero-section-modern > .container {
        padding: 0 64px;
    }
}

/* Partners Section — Premium Enterprise */
.partners-section-modern {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 70%), #FFFFFF;
    position: relative;
    border-top: 1px solid #F1F5F9;
}

.partners-section-modern .section-heading-modern {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.partners-section-modern .section-heading-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #14B8A6;
}

.partners-section-modern .section-subtitle-modern {
    display: none;
}

.partners-section-modern .section-header-modern {
    margin-bottom: 48px;
}

.partners-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item-modern {
    background: transparent;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: none;
    border-right: 1px solid #F1F5F9;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(100%) opacity(0.45);
    position: relative;
}

.partner-item-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: #14B8A6;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-item-modern:last-child {
    border-right: none;
}

.partner-item-modern:hover {
    transform: none;
    box-shadow: none;
    filter: grayscale(0%) opacity(1);
}

.partner-item-modern:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.partner-item-modern img {
    max-width: 140px;
    max-height: 44px;
    width: auto;
    height: auto;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CTA Section — Premium Enterprise */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3038 0%, #0B3A3A 30%, #0D4A4A 60%, #0F5C5C 100%);
    position: relative;
    overflow: hidden;
}

/* Plexus canvas handles the pattern now */
.cta-section-modern::before {
    display: none;
}

.cta-section-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(20, 184, 166, 0.25) 50%, transparent 100%);
    z-index: 1;
}

.cta-content-modern {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-heading-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.cta-description-modern {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.cta-description-modern:last-of-type {
    margin-bottom: 40px;
}

.cta-actions-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions-modern .btn-primary-modern {
    background: #14B8A6;
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.2px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-actions-modern .btn-primary-modern:hover {
    background: #0F766E;
    color: #FFFFFF;
    box-shadow: none;
    transform: translateY(-2px);
}

.cta-actions-modern .btn-secondary-modern {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 36px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-actions-modern .btn-secondary-modern:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

/* CTA Overline */
.cta-overline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #14B8A6;
    margin-bottom: 16px;
}

/* CTA Trust Row */
.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.cta-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cta-trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.cta-trust-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-modern {
        text-align: center;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .hero-divider {
        transform-origin: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-video-overlay {
        background: 
            linear-gradient(180deg, rgba(7, 30, 35, 0.7) 0%, rgba(10, 48, 56, 0.6) 40%, rgba(11, 58, 58, 0.7) 70%, rgba(7, 30, 35, 0.85) 100%);
    }
    
    .stats-section-modern {
        margin-top: 0;
        padding: 60px 0;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-overview-card {
        aspect-ratio: 3 / 3.5;
    }
}

@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .service-overview-card {
        aspect-ratio: 3 / 3;
    }

    .service-overview-overlay {
        transform: translateY(calc(100% - 64px));
        padding: 20px 16px;
    }

    .service-overview-title {
        font-size: 0.8125rem;
    }

    .service-overview-description {
        font-size: 0.75rem;
    }

    .hero-content-modern {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .hero-heading-modern {
        font-size: 2.75rem;
        letter-spacing: -1px;
    }
    
    .hero-sub-primary {
        font-size: 1.0625rem;
    }
    
    .hero-subheading-modern {
        font-size: 0.9375rem;
    }
    
    .hero-section-modern {
        min-height: 85vh;
    }
    
    .hero-section-modern > .container {
        padding: 0 24px;
    }
    
    .hero-overline {
        font-size: 0.625rem;
        letter-spacing: 3px;
    }
    
    .hero-trust-badges {
        gap: 16px;
    }
    
    .hero-trust-badges span {
        font-size: 0.75rem;
    }
    
    .stats-section-modern {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .section-heading-modern {
        font-size: 1.75rem;
    }
    
    .company-intro-section {
        padding: 60px 0;
    }
    
    .intro-features-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .partner-item-modern {
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1px solid #F1F5F9;
    }

    .partner-item-modern:nth-child(odd) {
        border-right: 1px solid #F1F5F9;
    }

    .partner-item-modern:nth-child(n+3) {
        border-bottom: none;
    }

    .partner-item-modern:last-child {
        border-right: none;
    }

    .partner-item-modern:last-child {
        border-bottom: none;
    }

    .cta-heading-modern {
        font-size: 1.75rem;
    }

    .cta-trust-row {
        gap: 20px;
        margin-top: 32px;
    }

    .cta-trust-number {
        font-size: 1.25rem;
    }

    .cta-trust-label {
        font-size: 0.7rem;
    }

    .cta-trust-divider {
        height: 32px;
    }
    
    .cta-actions-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-actions-modern .btn-primary-modern,
    .cta-actions-modern .btn-secondary-modern {
        width: 100%;
        text-align: center;
    }
}


/* ===================================
   CORPORATE PAGE V2 STYLES
   Clean, Minimal & Professional
   =================================== */

/* Hero Section V2 */
.corp-hero-v2 {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 50%, #14B8A6 100%);
    position: relative;
    overflow: hidden;
}

.corp-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.corp-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.corp-hero-text {
    flex: 1;
    max-width: 550px;
}

.corp-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.corp-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.corp-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 0;
}

.corp-hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.corp-stat {
    text-align: center;
    min-width: 140px;
}

.corp-stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 6px;
}

.corp-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-bottom: 12px;
}

/* Stat Progress Bar */
.corp-stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.corp-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.corp-stat.animated .corp-stat-bar-fill {
    width: var(--bar-width, 80%);
}

.corp-hero-visual {
    flex-shrink: 0;
    width: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.corp-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section V2 */
.corp-about-v2 {
    padding: 100px 0;
    background: #fff;
}

.corp-about-header {
    margin-bottom: 60px;
}

.corp-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 16px;
}

.corp-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0F766E, #0F766E);
    border-radius: 2px;
}

.corp-about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.corp-about-lead {
    font-size: 1.25rem;
    color: #1a202c;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 500;
}

.corp-about-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.9;
}

.corp-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 30px;
    border-left: 2px solid #e2e8f0;
}

.corp-timeline-item {
    position: relative;
    padding-left: 24px;
}

.corp-timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #0F766E;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0F766E;
}

.corp-timeline-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B3A3A;
}

.corp-timeline-text {
    display: block;
    font-size: 0.9375rem;
    color: #718096;
}

/* Mission & Vision V2 */
.corp-mv-v2 {
    padding: 100px 0;
    background: #f8fafc;
}

.corp-mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.corp-mv-item {
    padding: 48px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.corp-mv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0F766E;
}

.corp-mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0F766E 0%, #0B3A3A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: white;
}

.corp-mv-icon svg {
    width: 32px;
    height: 32px;
}

.corp-mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 16px;
}

.corp-mv-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Values Section V2 */
.corp-values-v2 {
    padding: 100px 0;
    background: white;
}

.corp-values-header {
    margin-bottom: 60px;
}

.corp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.corp-value-item {
    padding: 32px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.corp-value-item:hover {
    background: white;
    border-color: #0F766E;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.1);
}

.corp-value-icon {
    display: block;
    font-size: 1.5rem;
    color: #0F766E;
    margin-bottom: 16px;
}

.corp-value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 8px;
}

.corp-value-desc {
    font-size: 0.9375rem;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

/* Certifications V2 */
.corp-certs-v2 {
    padding: 100px 0;
    background: #f8fafc;
}

.corp-certs-header {
    margin-bottom: 60px;
}

.corp-certs-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.corp-cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.corp-cert-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #0F766E;
}

.corp-cert-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0F766E 0%, #0B3A3A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.corp-cert-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 4px;
}

.corp-cert-desc {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* CTA Section V2 */
.corp-cta-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3038 0%, #0B3A3A 30%, #0D4A4A 60%, #0F5C5C 100%);
    position: relative;
    overflow: hidden;
}

.corp-cta-v2::before {
    display: none;
}

.corp-cta-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(20, 184, 166, 0.25) 50%, transparent 100%);
    z-index: 1;
}

.corp-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.corp-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.corp-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.corp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.corp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: white;
    color: #0F766E;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.corp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.corp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.corp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Responsive Design V2 */
@media (max-width: 1024px) {
    .corp-hero-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .corp-hero-text {
        max-width: 100%;
    }
    
    .corp-hero-stats {
        justify-content: center;
    }
    
    .corp-hero-visual {
        width: 100%;
        max-width: 400px;
    }
    
    .corp-hero-title {
        font-size: 2.75rem;
    }
    
    .corp-about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .corp-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 2px solid #e2e8f0;
        padding-left: 0;
        padding-top: 30px;
    }
    
    .corp-timeline-item {
        padding-left: 0;
        padding-top: 24px;
    }
    
    .corp-timeline-item::before {
        left: 50%;
        top: -6px;
        transform: translateX(-50%);
    }
    
    .corp-mv-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .corp-certs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .corp-hero-v2 {
        padding: 100px 0 80px;
    }
    
    .corp-hero-title {
        font-size: 2.25rem;
    }
    
    .corp-hero-stats {
        gap: 20px 32px;
        justify-content: center;
    }
    
    .corp-stat {
        min-width: 80px;
        text-align: center;
    }
    
    .corp-stat-num {
        font-size: 1.5rem;
    }
    
    .corp-stat-label {
        font-size: 0.75rem;
    }
    
    .corp-about-v2,
    .corp-mv-v2,
    .corp-values-v2,
    .corp-certs-v2,
    .corp-cta-v2 {
        padding: 80px 0;
    }
    
    .corp-section-title {
        font-size: 2rem;
    }
    
    .corp-values-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-certs-list {
        grid-template-columns: 1fr;
    }
    
    .corp-cta-title {
        font-size: 2rem;
    }
    
    .corp-cta-buttons {
        flex-direction: column;
    }
    
    .corp-btn-primary,
    .corp-btn-secondary {
        width: 100%;
    }
}


/* ===================================
   PRODUCTION PAGE STYLES
   Professional & Corporate Design
   =================================== */

/* Production Hero */
.production-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.production-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.production-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.production-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.production-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Products Gallery Section */
.products-gallery-section {
    padding: 100px 0;
    background: white;
}

/* Masonry-style Gallery Grid */
.products-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

/* Product Gallery Item Sizes */
.product-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Large - 2x2 grid */
.product-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Medium - 2x1 grid */
.product-medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* Small - 1x1 grid */
.product-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Wide - 2x1 grid */
.product-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Product Gallery Image */
.product-gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-item:hover .product-gallery-image img {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(13, 79, 87, 0.95) 0%,
        rgba(13, 79, 87, 0.7) 40%,
        rgba(13, 79, 87, 0.3) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-gallery-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-item:hover .product-overlay-content {
    transform: translateY(0);
}

.product-overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.product-overlay-category {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Hover Effects */
.product-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 118, 110, 0.25);
}

/* Add subtle border on hover */
.product-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-gallery-item:hover::before {
    opacity: 1;
}

/* Manufacturing Capabilities Section */
.manufacturing-capabilities-section {
    padding: 100px 0;
    background: var(--bg-gray-50);
}

.capabilities-grid-production {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.capability-card-production {
    background: white;
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.capability-card-production:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.capability-icon-production {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
}

.capability-card-production:hover .capability-icon-production {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

.capability-icon-production svg {
    width: 36px;
    height: 36px;
}

.capability-title-production {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.capability-description-production {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Technical Specifications Section */
.technical-specs-section {
    padding: 100px 0;
    background: white;
}

.specs-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.spec-card-modern {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.spec-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.spec-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.spec-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list-modern li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #475569;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-list-modern li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2d3748;
    display: inline-block;
    min-width: 140px;
}

/* Production Process Section */
.production-process-section {
    padding: 100px 0;
    background: var(--bg-gray-50);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step-card {
    background: white;
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #cbd5e0;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Production CTA Section */
.production-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.production-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.production-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.production-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.production-cta-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.production-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.production-cta-actions .btn-primary-modern {
    background: white;
    color: var(--primary-color);
}

.production-cta-actions .btn-primary-modern:hover {
    background: var(--bg-gray-50);
    color: var(--primary-color);
}

.production-cta-actions .btn-secondary-modern {
    background: transparent;
    color: white;
    border-color: white;
}

.production-cta-actions .btn-secondary-modern:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Production Page */
@media (max-width: 1400px) {
    .products-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
    }
    
    .product-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .product-medium {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .product-wide {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .products-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 16px;
    }
    
    .product-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .product-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .product-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .capabilities-grid-production {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-hero {
        padding: 60px 0 40px;
    }
    
    .production-hero-title {
        font-size: 2.5rem;
    }
    
    .production-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .products-masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 16px;
    }
    
    .product-large,
    .product-medium,
    .product-small,
    .product-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .product-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(13, 79, 87, 0.9) 0%,
            rgba(13, 79, 87, 0.5) 50%,
            transparent 100%
        );
    }
    
    .product-overlay-content {
        transform: translateY(0);
    }
    
    .product-overlay-title {
        font-size: 1.25rem;
    }
    
    .product-overlay-category {
        font-size: 0.875rem;
    }
    
    .products-gallery-section,
    .manufacturing-capabilities-section,
    .technical-specs-section,
    .production-process-section,
    .production-cta-section {
        padding: 60px 0;
    }
    
    .capabilities-grid-production {
        grid-template-columns: 1fr;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .production-cta-title {
        font-size: 2rem;
    }
    
    .production-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .production-cta-actions .btn-primary-modern,
    .production-cta-actions .btn-secondary-modern {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-masonry-grid {
        grid-auto-rows: 240px;
    }
    
    .product-overlay {
        padding: 20px;
    }
}


/* ===================================
   MACHINE PARK PAGE STYLES
   Professional HPDC Machines Display
   =================================== */

/* Machine Park Hero - Ultra Premium */
.machine-park-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric pattern overlay */
.machine-park-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

/* Floating parallax shape */
.machine-park-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatShape 20s ease-in-out infinite;
}

.machine-park-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.machine-park-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.machine-park-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* HPDC Machines Section - Ultra Premium */
.hpdc-machines-section {
    padding: 100px 0;
    background: #f8fafb;
    position: relative;
}

/* Section background pattern */
.hpdc-machines-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    pointer-events: none;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Machine Card - Ultra Premium with Glassmorphism */
.machine-card {
    background: linear-gradient(165deg, rgba(255,255,255,0.98) 0%, rgba(248,250,251,0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    /* Scroll animation */
    opacity: 0;
    transform: translateY(40px);
}

.machine-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animated gradient border on hover */
.machine-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0F766E, #14b8a6, #0F766E, #0F766E);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientBorder 4s ease infinite;
}

.machine-card:hover::before {
    opacity: 1;
}

.machine-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(15, 118, 110, 0.2),
        0 40px 80px rgba(0, 0, 0, 0.15);
}

.machine-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
    position: relative;
}

.machine-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.machine-card:hover .machine-image {
    transform: scale(1.08);
}

.machine-info {
    padding: 32px;
}

.machine-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-lighter);
}

.machine-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.spec-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.spec-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Supporting Equipment Section */
.supporting-equipment-section {
    padding: 100px 0;
    background: var(--bg-gray-50);
}

.equipment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.equipment-card-modern {
    background: white;
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.equipment-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.equipment-icon-modern {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
}

.equipment-card-modern:hover .equipment-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

.equipment-icon-modern svg {
    width: 36px;
    height: 36px;
}

.equipment-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.equipment-card-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Production Capacity Section */
.production-capacity-section {
    padding: 100px 0;
    background: white;
}

.capacity-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.capacity-stat-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.capacity-stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.capacity-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary-color);
}

.capacity-stat-card .stat-icon svg {
    width: 40px;
    height: 40px;
}

.capacity-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.capacity-stat-card .stat-label {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design for Machine Park */
@media (max-width: 1024px) {
    .machines-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .equipment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .capacity-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .machine-park-hero {
        padding: 60px 0 40px;
    }
    
    .machine-park-hero-title {
        font-size: 2.5rem;
    }
    
    .machine-park-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .machine-image-container {
        height: 280px;
    }
    
    .machine-info {
        padding: 24px;
    }
    
    .machine-name {
        font-size: 1.5rem;
    }
    
    .hpdc-machines-section,
    .supporting-equipment-section,
    .production-capacity-section {
        padding: 60px 0;
    }
    
    .capacity-stat-card {
        padding: 32px 24px;
    }
    
    .capacity-stat-card .stat-number {
        font-size: 2.5rem;
    }
}


/* ===================================
   Page Transition Animations
   =================================== */

/* Page fade-in animation */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to main content */
main {
    animation: pageFadeIn 0.6s ease-out;
}

/* Smooth page transitions on navigation */
body {
    transition: opacity 0.3s ease-out;
}

body.page-transitioning {
    opacity: 0;
}

/* Link transition effect */
a {
    transition: all 0.3s ease;
}

/* Navigation link hover with slide effect */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: left 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    left: 0;
}

/* Section entrance animations */
section {
    animation: sectionSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes sectionSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger section animations */
section:nth-child(1) { animation-delay: 0s; }
section:nth-child(2) { animation-delay: 0.15s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.45s; }
section:nth-child(5) { animation-delay: 0.6s; }

/* Hero section special entrance */
.hero-section-modern,
.corporate-hero,
.production-hero,
.machine-park-hero {
    animation: heroEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Card entrance animations with stagger */
.service-card,
.product-card,
.product-gallery-item,
.machine-card,
.capability-card-modern,
.capability-card-production,
.equipment-card-modern,
.value-card-corporate,
.cert-card,
.mv-card,
.spec-card-modern,
.process-step-card,
.capacity-stat-card,
.client-item,
.project-card {
    animation: cardEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger card animations */
.service-card:nth-child(1),
.product-card:nth-child(1),
.product-gallery-item:nth-child(1),
.machine-card:nth-child(1),
.capability-card-modern:nth-child(1),
.capability-card-production:nth-child(1) { animation-delay: 0.1s; }

.service-card:nth-child(2),
.product-card:nth-child(2),
.product-gallery-item:nth-child(2),
.machine-card:nth-child(2),
.capability-card-modern:nth-child(2),
.capability-card-production:nth-child(2) { animation-delay: 0.2s; }

.service-card:nth-child(3),
.product-card:nth-child(3),
.product-gallery-item:nth-child(3),
.machine-card:nth-child(3),
.capability-card-modern:nth-child(3),
.capability-card-production:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(4),
.product-card:nth-child(4),
.product-gallery-item:nth-child(4),
.machine-card:nth-child(4),
.capability-card-modern:nth-child(4),
.capability-card-production:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(5),
.product-card:nth-child(5),
.product-gallery-item:nth-child(5),
.machine-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:nth-child(6),
.product-card:nth-child(6),
.product-gallery-item:nth-child(6),
.machine-card:nth-child(6) { animation-delay: 0.6s; }

.product-gallery-item:nth-child(7) { animation-delay: 0.7s; }
.product-gallery-item:nth-child(8) { animation-delay: 0.8s; }
.product-gallery-item:nth-child(9) { animation-delay: 0.9s; }

/* Button hover animations */
.btn,
.btn-primary-modern,
.btn-secondary-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before,
.btn-primary-modern::before,
.btn-secondary-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
}

.btn:hover::before,
.btn-primary-modern:hover::before,
.btn-secondary-modern:hover::before {
    width: 300px;
    height: 300px;
}

/* Image zoom on hover */
.story-image img,
.gallery-item img,
.product-image,
.product-gallery-image img,
.machine-image,
.client-logo,
.project-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-image:hover img,
.gallery-item:hover img,
.product-card:hover .product-image,
.product-gallery-item:hover .product-gallery-image img,
.machine-card:hover .machine-image,
.client-item:hover .client-logo,
.project-card:hover .project-image {
    transform: scale(1.05);
}

/* Footer fade-in */
.footer {
    animation: footerFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s backwards;
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    main,
    section,
    .hero-section-modern,
    .corporate-hero,
    .production-hero,
    .machine-park-hero,
    .footer {
        animation: none !important;
    }
}

/* Mobile optimizations */
@media screen and (max-width: 767px) {
    main,
    section {
        animation-duration: 0.4s;
    }
    
    .service-card,
    .product-card,
    .machine-card,
    .capability-card-modern {
        animation-duration: 0.4s;
    }
}


/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Page Hero */
.contact-page-hero {
    background: linear-gradient(135deg, #0A3038 0%, #0B3A3A 30%, #0D4A4A 60%, #0F5C5C 100%);
    padding: 120px 20px 60px;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.contact-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Main Contact Section */
.main-contact-section {
    padding: 64px 0;
    background: #f8fafb;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #14B8A6;
}

.contact-form-clean .form-row {
    margin-bottom: 18px;
}

.contact-form-clean .form-group {
    margin-bottom: 0;
}

.contact-form-clean .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
}

.contact-form-clean .form-input,
.contact-form-clean .form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #2d3748;
    background: #fafbfc;
    transition: all 0.25s ease;
    font-family: inherit;
}

.contact-form-clean .form-input:focus,
.contact-form-clean .form-textarea:focus {
    outline: none;
    border-color: #14B8A6;
    background: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.contact-form-clean .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-clean .form-input::placeholder,
.contact-form-clean .form-textarea::placeholder {
    color: #a0aec0;
}

.form-actions {
    margin-top: 8px;
}

.form-actions .btn-primary-modern {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 32px;
    cursor: pointer;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: white !important;
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
}

.info-sidebar-heading {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 28px !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid #14B8A6 !important;
}

.info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #edf2f7 !important;
}

.info-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.info-item:first-of-type {
    padding-top: 0 !important;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.info-item-content h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item-content p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.info-item-content a {
    color: #0F766E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-item-content a:hover {
    color: #14B8A6;
}

/* Map Section */
.contact-map-section {
    padding: 0 0 64px;
    background: #f8fafb;
}

.contact-map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 24px;
}

.contact-map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 100px 20px 50px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .main-contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-sidebar {
        padding: 28px 20px;
    }
    
    .form-heading,
    .info-sidebar-heading {
        font-size: 1.25rem;
    }
    
    .contact-map-section {
        padding: 0 0 40px;
    }
    
    .contact-map-frame iframe {
        height: 350px;
    }
}



/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-link .dropdown-arrow {
    width: 12px;
    height: 8px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: rgba(20, 184, 166, 0.06);
    border-left-color: #14B8A6;
    color: #14B8A6;
    padding-left: 24px;
}

/* Additional Sections Styles for New Pages */
.process-overview-section {
    padding: 80px 0;
    background: white;
}

.process-content-modern {
    max-width: 900px;
    margin: 0 auto;
}

.advantages-section {
    padding: 80px 0;
    background: var(--bg-gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%);
    border-radius: 50%;
    color: white;
}

.advantage-icon svg {
    width: 36px;
    height: 36px;
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.applications-section {
    padding: 80px 0;
    background: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.application-card {
    background: var(--bg-gray-50);
    padding: 28px 24px;
    border-radius: 12px;
    border-left: 4px solid #0F766E;
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.12);
    border-left-color: #0F766E;
}

.application-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.application-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}


/* Pik Döküm Page Specific Styles */
.pik-hero {
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%) !important;
}

/* Sfero Döküm Page Specific Styles */
.sfero-hero {
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%) !important;
}

.production-hero .hero-heading-modern {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.production-hero .hero-subheading-modern {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.process-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.process-text-content {
    padding-right: 20px;
}

.process-image-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.process-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.process-image-content:hover .process-main-image {
    transform: scale(1.05);
}

.pik-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* 2 Column Gallery Grid */
.pik-gallery-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pik-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    transition: all 0.4s ease;
}

.pik-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pik-gallery-item:hover {
    box-shadow: 0 12px 32px rgba(45, 55, 72, 0.15);
    transform: translateY(-8px);
}

.pik-gallery-item:hover img {
    transform: scale(1.1);
}

.pik-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 55, 72, 0.9) 0%, rgba(45, 55, 72, 0.7) 50%, transparent 100%);
    padding: 32px 24px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.pik-overlay-content {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.pik-gallery-overlay h3 {
    color: white;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.pik-gallery-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.pik-gallery-item:hover .pik-gallery-overlay {
    background: linear-gradient(to top, rgba(15, 118, 110, 0.9) 0%, rgba(15, 118, 110, 0.7) 50%, transparent 100%);
    padding: 40px 28px;
}

.pik-gallery-item:hover .pik-overlay-content {
    transform: translateY(-8px);
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background: white;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.key-feature-item {
    position: relative;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    border-left: 4px solid #0F766E;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.key-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.12);
    border-left-color: #0F766E;
    border-color: #cbd5e0;
    background: #f8f9fa;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.2);
    transition: all 0.4s ease;
}

.key-feature-item:hover .feature-number {
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    margin-top: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Pik Döküm Page */
@media (max-width: 768px) {
    .process-content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-text-content {
        padding-right: 0;
    }
    
    .pik-gallery-grid-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .key-feature-item {
        padding: 36px 24px;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        left: 24px;
    }
}

/* Responsive Design for Pik Döküm Page */
@media (max-width: 768px) {
    .process-content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-text-content {
        padding-right: 0;
    }
    
    .pik-gallery-grid-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .key-feature-item {
        padding: 36px 24px;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        left: 24px;
    }
    
    .production-hero .hero-heading-modern {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .production-hero .hero-subheading-modern {
        font-size: 1rem;
    }
    
    .section-heading-modern {
        font-size: 2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    .intro-text-modern {
        font-size: 1rem;
    }
    
    .pik-gallery-overlay h3 {
        font-size: 1.125rem;
    }
    
    .pik-gallery-overlay p {
        font-size: 0.875rem;
    }
    
    .spec-card-title {
        font-size: 1.125rem;
    }
    
    .production-cta-title {
        font-size: 1.75rem;
    }
    
    .production-cta-text {
        font-size: 1rem;
    }
}


/* ===================================
   Toast Notification System
   =================================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #64748b;
}

.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}

.toast-message {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #2d3748;
}

.toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #2d3748;
}

/* Toast Types */
.toast-success {
    border-left-color: #10b981;
}

.toast-success .toast-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-warning .toast-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-info .toast-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        padding: 14px 16px;
    }
    
    .toast-message {
        font-size: 0.875rem;
    }
}


/* ===================================
   SERVICE PAGE V2 STYLES
   Professional & Clean Design
   Matching Corporate Page V2
   =================================== */

/* Service Hero V2 - Modern Industrial Background Design with Video */
.service-hero-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* HTML5 Video Background Container */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.9) contrast(1.1);
}

/* Smooth left-to-right gradient overlay - darker and more natural */
.service-hero-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 20, 30, 0.85) 0%,
        rgba(10, 20, 30, 0.75) 15%,
        rgba(10, 20, 30, 0.6) 30%,
        rgba(10, 20, 30, 0.45) 45%,
        rgba(10, 20, 30, 0.3) 60%,
        rgba(10, 20, 30, 0.15) 75%,
        rgba(10, 20, 30, 0.05) 85%,
        transparent 95%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.service-hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-hero-text {
    max-width: 600px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.service-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.service-hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: flex-start;
}

.service-stat {
    text-align: left;
    flex: 0 0 auto;
    position: relative;
}

.service-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.service-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress bar for service stats */
.service-stat-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.service-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hide the old visual container */
.service-hero-visual {
    display: none;
}

/* Service Hero Slideshow */
.service-slideshow-box {
    width: 100%;
    max-width: 500px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-slideshow-box:hover .service-slide.active img {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.service-slide-caption {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 10px 20px;
    background: rgba(15, 118, 110, 0.85);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Service About V2 */
.service-about-v2 {
    padding: 100px 0;
    background: white;
}

.service-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0F766E, #14B8A6);
    margin: 0 auto;
    border-radius: 2px;
}

.service-about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-about-main {
    padding-right: 20px;
}

.service-about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0F766E;
    transition: all 0.3s ease;
}

.service-highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.1);
}

.service-highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

/* Service Features V2 - Minimal Grid */
.service-features-v2 {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-feature-item {
    background: white;
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.12);
    border-color: #0F766E;
}

.service-feature-num {
    font-size: 2rem;
    font-weight: 700;
    color: #cbd5e0;
    margin-bottom: 16px;
}

.service-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-feature-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Service Specs V2 - Clean Cards */
.service-specs-v2 {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-specs-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-spec-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-spec-card:hover {
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1);
}

.service-spec-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.service-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
}

.service-spec-list li:last-child {
    border-bottom: none;
}

.service-spec-label {
    font-weight: 600;
    color: #475569;
}

.service-spec-value {
    color: #0F766E;
    font-weight: 600;
}

/* Service Process V2 - Timeline Style */
.service-process-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color, #0F766E) 0%, var(--secondary-color, #0B3A3A) 100%);
}

.service-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-process-v2 .service-section-title {
    color: white;
}

.service-process-v2 .service-title-line {
    background: white;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-process-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: white;
}

.service-process-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.service-process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.service-process-icon svg {
    width: 28px;
    height: 28px;
}

.service-process-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-process-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Service Applications V2 */
.service-apps-v2 {
    padding: 100px 0;
    background: white;
}

.service-apps-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-app-item {
    background: #f8f9fa;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-app-item:hover {
    background: white;
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1);
}

.service-app-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-app-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-app-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.service-app-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Service CTA V2 */
.service-cta-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.service-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-cta-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.service-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: #0F766E;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.service-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Service Gallery V2 */
.service-gallery-v2 {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Ultra Premium 3D Gallery - Improved Professional Design */
.service-gallery-ultra {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 100px 0 80px;
    background: #f5f5f7;
    overflow: hidden;
}

/* Remove animated background - keep it clean */
.service-gallery-ultra::before {
    display: none;
}

/* Remove floating shapes - minimal design */
.service-gallery-ultra::after {
    display: none;
}

.service-gallery-ultra-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-gallery-ultra-header .service-section-title {
    color: #1d1d1f;
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.service-gallery-ultra-header .service-title-line {
    background: #0F766E;
    height: 2px;
    width: 60px;
}

/* Category Filter Tabs - Minimal Style */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 20px;
}

.gallery-filter-tab {
    padding: 10px 24px;
    background: white;
    border: 1px solid #d2d2d7;
    border-radius: 20px;
    color: #1d1d1f;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
}

.gallery-filter-tab:hover {
    background: #f5f5f7;
    border-color: #86868b;
    color: #1d1d1f;
    transform: none;
}

.gallery-filter-tab.active {
    background: #1d1d1f;
    color: white;
    border-color: #1d1d1f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 3D Carousel Container - Larger center image */
.gallery-3d-container {
    position: relative;
    height: 500px;
    perspective: 2000px;
    overflow: visible;
}

.gallery-3d-track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3D Gallery Cards - Larger, cleaner design */
.gallery-3d-item {
    position: absolute;
    width: 700px;
    height: 450px;
    left: 50%;
    top: 50%;
    margin-left: -350px;
    margin-top: -225px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Remove glow effect */
.gallery-3d-item::before {
    display: none;
}

/* Clean card design - no glassmorphism */
.gallery-3d-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gallery-3d-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-3d-item:hover img {
    transform: scale(1.05);
}

/* Card Content Overlay - Minimal */
.gallery-3d-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-3d-item.active .gallery-3d-content,
.gallery-3d-item:hover .gallery-3d-content {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.gallery-3d-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(15, 118, 110, 0.95);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Remove large number overlay */
.gallery-3d-num {
    display: none;
}

.gallery-3d-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.3px;
}

.gallery-3d-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* View Button - Minimal */
.gallery-3d-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 18px;
    background: white;
    border: none;
    border-radius: 4px;
    color: #1d1d1f;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
}

.gallery-3d-view:hover {
    background: #f5f5f7;
    color: #1d1d1f;
    transform: translateX(4px);
}

.gallery-3d-view svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.gallery-3d-view:hover svg {
    transform: translateX(2px);
}

/* Progress Dots - Minimal */
.gallery-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d2d7;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-dot::before {
    display: none;
}

.gallery-dot:hover {
    background: #86868b;
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #1d1d1f;
    width: 24px;
    border-radius: 4px;
    transform: none;
    box-shadow: none;
}

/* Navigation Arrows - Minimal */
.gallery-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    backdrop-filter: none;
    border: 1px solid #d2d2d7;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: #f5f5f7;
    color: #1d1d1f;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #86868b;
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
}

/* Auto-play indicator - Minimal */
.gallery-autoplay {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #86868b;
    font-size: 0.8125rem;
    font-weight: 500;
    z-index: 2;
}

.gallery-autoplay-toggle {
    width: 44px;
    height: 26px;
    background: #d2d2d7;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.gallery-autoplay-toggle::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gallery-autoplay-toggle.active {
    background: #0F766E;
}

.gallery-autoplay-toggle.active::after {
    transform: translateX(18px);
}

/* Lightbox Modal - Professional Design */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    z-index: 1;
}

.gallery-lightbox.active .gallery-lightbox-content {
    transform: scale(1);
    opacity: 1;
}

/* Image Container */
.gallery-lightbox-image-wrapper {
    position: relative;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 75vh;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.gallery-lightbox img:hover {
    transform: none;
}

/* Close Button - Simple Style */
.gallery-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 24px;
}

.gallery-lightbox-close svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.gallery-lightbox-close:active {
    transform: scale(1.05);
}

/* Info Section - Simple Style */
.gallery-lightbox-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 600px;
}

.gallery-lightbox-info::before {
    display: none;
}

.gallery-lightbox-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gallery-lightbox-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Category Badge in Lightbox */
.gallery-lightbox-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Navigation Arrows in Lightbox */
.gallery-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.gallery-lightbox-nav.prev {
    left: 20px;
}

.gallery-lightbox-nav.next {
    right: 20px;
}

.gallery-lightbox-arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
}

.gallery-lightbox-arrow svg {
    width: 20px;
    height: 20px;
}

.gallery-lightbox-arrow:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* Counter Badge */
.gallery-lightbox-counter {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .gallery-lightbox-content {
        width: 95vw;
        padding: 20px;
    }
    
    .gallery-lightbox img {
        max-height: 50vh;
        border-radius: 16px;
    }
    
    .gallery-lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .gallery-lightbox-info {
        margin-top: 24px;
        padding: 24px 28px;
        border-radius: 16px;
    }
    
    .gallery-lightbox-title {
        font-size: 1.375rem;
    }
    
    .gallery-lightbox-desc {
        font-size: 0.9375rem;
    }
    
    .gallery-lightbox-arrow {
        width: 45px;
        height: 45px;
    }
    
    .gallery-lightbox-nav.prev {
        left: 15px;
    }
    
    .gallery-lightbox-nav.next {
        right: 15px;
    }
}

.service-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    transition: all 0.4s ease;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-gallery-item:hover {
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.2);
    transform: translateY(-8px);
}

.service-gallery-item:hover img {
    transform: scale(1.08);
}

.service-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 118, 110, 0.95) 0%, rgba(15, 118, 110, 0.7) 50%, transparent 100%);
    padding: 40px 28px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.service-gallery-item:hover .service-gallery-overlay {
    transform: translateY(0);
}

.service-gallery-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.service-gallery-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Service Equipment V2 - For Kalıp İmalatı */
.service-equipment-v2 {
    padding: 100px 0;
    background: white;
}

.service-equipment-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-equipment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-equipment-item {
    background: #f8f9fa;
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-equipment-item:hover {
    background: white;
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1);
}

.service-equipment-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-equipment-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.service-equipment-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

/* Service V2 Responsive */
@media (max-width: 1200px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding: 0 20px;
    }
    
    .service-hero-text {
        padding-right: 0;
        text-align: left;
        max-width: 100%;
        align-items: flex-start;
    }
    
    .service-hero-stats {
        justify-content: flex-start;
        gap: 32px;
    }
    
    .service-hero-title {
        font-size: 2.25rem;
    }
    
    .service-hero-visual {
        max-width: 100%;
        justify-content: center;
    }
    
    .service-hero-visual img {
        max-width: 400px;
    }
    
    .service-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-about-main {
        padding-right: 0;
    }
    
    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-v2 {
        padding: 60px 0;
        min-height: 500px;
    }
    
    /* Video background on mobile - more subtle */
    .hero-video-background video {
        opacity: 0.4;
        filter: brightness(0.85) contrast(1.1);
    }
    
    /* Stack gradient on mobile */
    .service-hero-v2::after {
        background: linear-gradient(
            to bottom,
            rgba(10, 20, 30, 0.85) 0%,
            rgba(10, 20, 30, 0.75) 40%,
            rgba(10, 20, 30, 0.55) 70%,
            rgba(10, 20, 30, 0.35) 100%
        );
    }
    
    .service-hero-inner {
        padding: 0 20px;
    }
    
    .service-hero-text {
        max-width: 100%;
        padding-right: 0;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .service-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .service-stat-num {
        font-size: 2rem;
    }
    
    .service-stat-label {
        font-size: 0.75rem;
    }
    
    .service-section-title {
        font-size: 2rem;
    }
    
    .service-about-v2,
    .service-features-v2,
    .service-specs-v2,
    .service-process-v2,
    .service-apps-v2,
    .service-gallery-v2,
    .service-equipment-v2,
    .service-cta-v2 {
        padding: 60px 0;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .service-process-grid {
        grid-template-columns: 1fr;
    }
    
    .service-apps-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .gallery-3d-container {
        height: 400px;
    }
    
    .gallery-3d-item {
        width: 340px;
        height: 280px;
        margin-left: -170px;
        margin-top: -140px;
        border-radius: 6px;
    }
    
    .gallery-3d-item-inner {
        border-radius: 6px;
    }
    
    .gallery-filter-tabs {
        gap: 8px;
    }
    
    .gallery-filter-tab {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-nav-arrows {
        padding: 0 20px;
    }
    
    .service-gallery-ultra {
        padding: 60px 0;
    }
    
    .service-gallery-ultra-header .service-section-title {
        font-size: 2rem;
    }
    
    .gallery-progress {
        margin-top: 40px;
    }
    
    .gallery-3d-content {
        padding: 24px;
    }
    
    .gallery-3d-title {
        font-size: 1.25rem;
    }
    
    .gallery-3d-desc {
        font-size: 0.875rem;
    }
    
    .service-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cta-title {
        font-size: 2rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .service-btn-primary,
    .service-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .service-gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 118, 110, 0.9) 0%, rgba(15, 118, 110, 0.5) 60%, transparent 100%);
        padding: 24px 20px;
    }
}


/* ===================================
   PRODUCT PORTFOLIO V2 STYLES
   Professional & Corporate Design
   Apple/Tesla Inspired
   =================================== */

/* Product Hero V2 - Clean & Minimal */
.product-hero-v2 {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 50%, #14B8A6 100%);
    position: relative;
    overflow: hidden;
}

.product-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-hero-inner-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-hero-badge-v2 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.product-hero-title-v2 {
    font-size: 3.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

.product-hero-desc-v2 {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 520px;
}

.product-hero-features-v2 {
    display: flex;
    gap: 48px;
}

.product-feature-v2 {
    text-align: left;
}

.product-feature-num-v2 {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.product-feature-label-v2 {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.product-hero-visual-v2 {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    position: relative;
}

.product-hero-visual-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.product-hero-visual-v2 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Categories V2 - Clean Grid */
.product-categories-v2 {
    padding: 120px 0;
    background: #fff;
}

.product-categories-header-v2 {
    text-align: center;
    margin-bottom: 80px;
}

.product-section-title-v2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.product-section-subtitle-v2 {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.product-title-line-v2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0F766E, #0F766E);
    border-radius: 2px;
    margin: 24px auto 0;
}

.product-categories-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-category-card-v2 {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
}

.product-category-card-v2:hover {
    background: white;
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 118, 110, 0.15);
    border-color: #0F766E;
}

.product-category-image-v2 {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-category-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category-card-v2:hover .product-category-image-v2 img {
    transform: scale(1.08);
}

.product-category-content-v2 {
    padding: 32px;
}

.product-category-title-v2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 12px;
}

.product-category-desc-v2 {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Product Showcase V2 - Featured Products */
.product-showcase-v2 {
    padding: 120px 0;
    background: #f8fafc;
}

.product-showcase-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-showcase-item-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.product-showcase-item-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.12);
    border-color: #0F766E;
}

.product-showcase-item-v2.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.product-showcase-image-v2 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.product-showcase-item-v2.featured .product-showcase-image-v2 {
    height: 100%;
    min-height: 400px;
}

.product-showcase-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-item-v2:hover .product-showcase-image-v2 img {
    transform: scale(1.05);
}

.product-showcase-info-v2 {
    padding: 24px;
}

.product-showcase-item-v2.featured .product-showcase-info-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 90, 99, 0.95) 0%, rgba(10, 90, 99, 0.8) 50%, transparent 100%);
    padding: 40px 32px;
}

.product-showcase-name-v2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 8px;
}

.product-showcase-item-v2.featured .product-showcase-name-v2 {
    color: white;
    font-size: 1.5rem;
}

.product-showcase-category-v2 {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.product-showcase-item-v2.featured .product-showcase-category-v2 {
    color: rgba(255, 255, 255, 0.8);
}

/* Manufacturing Excellence V2 */
.manufacturing-excellence-v2 {
    padding: 120px 0;
    background: white;
}

.manufacturing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.manufacturing-item-v2 {
    text-align: center;
    padding: 40px 24px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.manufacturing-item-v2:hover {
    background: white;
    border-color: #0F766E;
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.1);
    transform: translateY(-6px);
}

.manufacturing-icon-v2 {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #0B3A3A 100%);
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
}

.manufacturing-item-v2:hover .manufacturing-icon-v2 {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.3);
}

.manufacturing-icon-v2 svg {
    width: 40px;
    height: 40px;
}

.manufacturing-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 12px;
}

.manufacturing-desc-v2 {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Technical Specs V2 - Clean Cards */
.technical-specs-v2 {
    padding: 120px 0;
    background: #f8fafc;
}

.specs-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.spec-card-v2 {
    background: white;
    padding: 48px 36px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.spec-card-v2:hover {
    border-color: #0F766E;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.spec-card-header-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.spec-card-icon-v2 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0F766E 0%, #0B3A3A 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.spec-card-icon-v2 svg {
    width: 28px;
    height: 28px;
}

.spec-card-title-v2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0B3A3A;
    margin: 0;
}

.spec-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list-v2 li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
}

.spec-list-v2 li:last-child {
    border-bottom: none;
}

.spec-list-v2 .spec-name {
    color: #64748b;
    font-weight: 500;
}

.spec-list-v2 .spec-value {
    color: #0B3A3A;
    font-weight: 700;
}

/* Process Steps V2 - Horizontal Timeline */
.process-steps-v2 {
    padding: 120px 0;
    background: white;
}

.process-timeline-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline-v2::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #0F766E, #14B8A6, #0F766E, #14B8A6);
    border-radius: 2px;
    z-index: 0;
}

.process-step-v2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number-v2 {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid #0F766E;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F766E;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.15);
}

.process-step-v2:hover .process-step-number-v2 {
    background: linear-gradient(135deg, #0F766E 0%, #0B3A3A 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.3);
}

.process-step-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 12px;
}

.process-step-desc-v2 {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* Product CTA V2 */
.product-cta-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 50%, #14B8A6 100%);
    position: relative;
}

.product-cta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-cta-inner-v2 {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-cta-title-v2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.product-cta-desc-v2 {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 48px;
}

.product-cta-buttons-v2 {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.product-btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: white;
    color: #0F766E;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-btn-primary-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.product-btn-secondary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.product-btn-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px);
}

/* Product Portfolio V2 Responsive */
@media (max-width: 1200px) {
    .product-hero-inner-v2 {
        gap: 60px;
    }
    
    .product-hero-title-v2 {
        font-size: 3rem;
    }
    
    .product-showcase-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-showcase-item-v2.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .product-showcase-item-v2.featured .product-showcase-image-v2 {
        min-height: 300px;
    }
}

@media (max-width: 1024px) {
    .product-hero-inner-v2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-hero-title-v2 {
        font-size: 2.75rem;
    }
    
    .product-hero-desc-v2 {
        max-width: 100%;
    }
    
    .product-categories-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .manufacturing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-cards-v2 {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-timeline-v2::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-hero-v2 {
        padding: 100px 0 80px;
    }
    
    .product-hero-title-v2 {
        font-size: 2.25rem;
    }
    
    .product-hero-features-v2 {
        gap: 32px;
    }
    
    .product-feature-num-v2 {
        font-size: 2.25rem;
    }
    
    .product-categories-v2,
    .product-showcase-v2,
    .manufacturing-excellence-v2,
    .technical-specs-v2,
    .process-steps-v2,
    .product-cta-v2 {
        padding: 80px 0;
    }
    
    .product-section-title-v2 {
        font-size: 2rem;
    }
    
    .product-categories-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-item-v2.featured {
        grid-column: span 1;
    }
    
    .manufacturing-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-v2 {
        grid-template-columns: 1fr;
    }
    
    .product-cta-title-v2 {
        font-size: 2rem;
    }
    
    .product-cta-buttons-v2 {
        flex-direction: column;
    }
    
    .product-btn-primary-v2,
    .product-btn-secondary-v2 {
        width: 100%;
    }
}


/* ===================================
   Product Sectors Section - Premium V3
   =================================== */

.product-sectors {
    padding: 0;
    background: #f8fafb;
    position: relative;
}

/* ===================================
   Product Sectors - Ultra Premium
   =================================== */

.product-sector {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    counter-increment: sector-counter;
}

/* Large background sector number */
.product-sector .container {
    position: relative;
}

.product-sector .container::before {
    content: "0" counter(sector-counter);
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(15, 118, 110, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -10px;
}

/* Alternating backgrounds - Premium style with geometric patterns */
.product-sector:nth-child(odd) {
    background: 
        linear-gradient(135deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(15, 118, 110, 0.02) 25%, transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px, 100% 100%;
    background-position: 0 0, 30px 0, 30px -30px, 0 30px, 0 0;
}

.product-sector:nth-child(even) {
    background: 
        radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(15, 118, 110, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #eef3f6 0%, #f5f8fa 50%, #eef3f6 100%);
}

/* Floating parallax shapes */
.product-sector::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatShape 20s ease-in-out infinite;
}

.product-sector::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatShape 15s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(30px, 10px) scale(1.05); }
}

/* Wave divider between sections */
.product-sector:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,0 600,60 900,30 C1050,15 1150,45 1200,30 L1200,60 Z' fill='%23f5f8fa'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}

/* Sector Header - Premium Style */
.sector-header {
    margin-bottom: 64px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0F766E 0%, #0a5f6a 50%, #085560 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    box-shadow: 
        0 6px 24px rgba(15, 118, 110, 0.4),
        0 2px 8px rgba(15, 118, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badge shine effect - smoother */
.sector-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.sector-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a2d3d;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.sector-title span {
    color: #0F766E;
    position: relative;
}

.sector-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F766E 0%, rgba(15, 118, 110, 0.3) 100%);
    border-radius: 2px;
}

/* Product Grid - Premium Layout with more breathing room */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Product Card - Ultra Premium with Glassmorphism */
.product-card {
    position: relative;
    aspect-ratio: 1;
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255,255,255,0.95) 0%, rgba(248,250,251,0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Scroll animation */
    opacity: 0;
    transform: translateY(40px);
}

/* Animated gradient border */
.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0F766E, #14b8a6, #0F766E, #0F766E);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientBorder 4s ease infinite;
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Scroll animation - görünür olduğunda */
.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Show gradient border on hover */
.product-card:hover::before {
    opacity: 1;
}

/* Staggered animation delay for each card */
.product-card:nth-child(1) { transition-delay: 0s; }
.product-card:nth-child(2) { transition-delay: 0.1s; }
.product-card:nth-child(3) { transition-delay: 0.2s; }

/* 3D Tilt hover effect */
.product-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: rgba(15, 118, 110, 0.3);
    box-shadow: 
        0 20px 40px rgba(15, 118, 110, 0.2),
        0 40px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Image container */
.product-card-image {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: calc(100% - 48px);
    height: auto;
    max-height: calc(100% - 120px);
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.product-card:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.15));
}

/* Zoom icon - premium style */
.product-card .zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: translateY(-12px) scale(0.85);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(15, 118, 110, 0.15);
}

.product-card:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card .zoom-icon:hover {
    background: #0F766E;
    transform: scale(1.1);
}

.product-card .zoom-icon:hover svg {
    stroke: white;
}

.product-card .zoom-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0F766E;
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

/* Product info bar - always visible at bottom with enhanced styling */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 20%, #ffffff 100%);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: 1px solid rgba(15, 118, 110, 0.08);
}

/* Hover hint text */
.product-overlay::before {
    content: 'İncelemek için tıkla';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    color: #0F766E;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

html[lang="en"] .product-overlay::before {
    content: 'Click to view';
}

.product-card:hover .product-overlay::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card:hover .product-overlay {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0) 0%, rgba(15, 118, 110, 0.92) 20%, #0F766E 100%);
    border-top-color: transparent;
    padding-bottom: 24px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2d3d;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-name {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Product number badge - enhanced */
.product-card::after {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0F766E 0%, #085560 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 6px 16px rgba(15, 118, 110, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    
    .product-sector {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .product-sector {
        padding: 80px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .sector-title {
        font-size: 2rem;
    }
    
    .sector-header {
        margin-bottom: 48px;
    }
    
    .product-card {
        min-height: 320px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .product-sector {
        padding: 64px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sector-title {
        font-size: 1.5rem;
    }
    
    .sector-header {
        margin-bottom: 36px;
    }
    
    .product-overlay {
        padding: 16px 18px;
    }
    
    .product-name {
        font-size: 0.875rem;
    }
    
    .product-card {
        min-height: 240px;
        border-radius: 18px;
    }
    
    .product-card .zoom-icon {
        width: 40px;
        height: 40px;
        top: 14px;
        right: 14px;
        border-radius: 12px;
    }
    
    .product-card::after {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        top: 14px;
        left: 14px;
    }
}

@media (max-width: 480px) {
    .product-sector {
        padding: 48px 0;
    }
    
    .product-grid {
        gap: 16px;
    }
    
    .sector-title {
        font-size: 1.25rem;
    }
    
    .product-name {
        font-size: 0.8125rem;
    }
    
    .product-overlay {
        padding: 14px 16px;
    }
    
    .product-card {
        min-height: 180px;
        border-radius: 14px;
    }
    
    .product-card img {
        padding: 16px;
    }
    
    .sector-badge {
        padding: 8px 18px;
        font-size: 0.6875rem;
        letter-spacing: 1.5px;
    }
    
    .sector-header {
        margin-bottom: 28px;
    }
    
    .product-card .zoom-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
}


/* ===================================
   Premium Product Flagship - pf- Design System
   World-class industrial engineering presentation
   No cards, no boxes — section-based layout
   =================================== */

.pf-sectors {
    padding: 0;
}

.pf-sector {
    padding: 120px 0;
    position: relative;
}

.pf-sector--white {
    background: #ffffff;
}

.pf-sector--gray {
    background: #f7f8fa;
}

/* --- Flagship Product — Full-width hero-style presentation --- */
.pf-flagship {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.pf-flagship__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #F8FAFC;
    border-radius: 16px;
    min-height: 440px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pf-sector--gray .pf-flagship__visual {
    background: #FFFFFF;
}

.pf-flagship__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 7px 16px;
    background: #14B8A6;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
}

.pf-flagship__visual img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.06));
    transition: transform 0.4s ease;
}

.pf-flagship:hover .pf-flagship__visual img {
    transform: scale(1.03);
}

.pf-flagship__info {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.pf-flagship__tag {
    display: inline-block;
    width: fit-content;
    padding: 0;
    background: none;
    color: #14B8A6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.pf-flagship__tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #14B8A6;
}

.pf-flagship__name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

.pf-flagship__desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0 0 36px 0;
    max-width: 480px;
}

/* Engineering-style spec table — clean grid, no borders */
.pf-flagship__specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
}

.pf-flagship__specs tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pf-flagship__specs tr:last-child {
    border-bottom: none;
}

.pf-flagship__specs td {
    padding: 14px 0;
    font-size: 0.9375rem;
    vertical-align: middle;
}

.pf-flagship__specs td:first-child {
    color: #9ca3af;
    font-weight: 500;
    width: 38%;
    padding-right: 20px;
    letter-spacing: 0.3px;
}

.pf-flagship__specs td:last-child {
    color: #14B8A6;
    font-weight: 700;
}

.pf-flagship__actions {
    display: flex;
    gap: 16px;
    padding-top: 4px;
}

/* Ghost button variant */
.mp-btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #14B8A6;
    border: 1.5px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.mp-btn--ghost:hover {
    background: rgba(20, 184, 166, 0.06);
    border-color: #14B8A6;
    color: #14B8A6;
}

/* --- Secondary Products — Clean horizontal rows --- */
.pf-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: center;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.pf-row:last-child {
    border-bottom: none;
}

.pf-row:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pf-row__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 16px;
    aspect-ratio: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pf-sector--gray .pf-row__img {
    background: #FFFFFF;
}

.pf-row__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.06));
    transition: transform 0.4s ease;
}

.pf-row:hover .pf-row__img img {
    transform: scale(1.05);
}

.pf-row__info {
    display: flex;
    flex-direction: column;
}

.pf-row__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.pf-row:hover .pf-row__name {
    color: #14B8A6;
}

.pf-row__desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 560px;
}

.pf-row__meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pf-row__tag {
    display: inline-block;
    padding: 4px 12px;
    background: none;
    color: #14B8A6;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* --- Technical Advantages Section --- */
.pf-advantages {
    padding: 120px 0;
    background: #F8FAFC;
}

.pf-advantages .mp-section-header {
    color: #0F172A;
}

.pf-advantages .mp-section-tag {
    background: rgba(20, 184, 166, 0.08);
    color: #14B8A6;
}

.pf-advantages .mp-section-title {
    color: #0F172A;
}

.pf-advantages .mp-section-line {
    background: #E2E8F0;
}

.pf-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pf-advantage {
    padding: 44px 32px;
    background: #FFFFFF;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.pf-advantage:last-child {
    border-right: none;
}

.pf-advantage:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pf-advantage__num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(20, 184, 166, 0.15);
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -2px;
}

.pf-advantage__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 12px 0;
    letter-spacing: -0.2px;
}

.pf-advantage__desc {
    font-size: 0.875rem;
    color: #64748B;
    line-height: 1.75;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pf-flagship {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pf-flagship__visual {
        min-height: 320px;
    }
    .pf-flagship__name {
        font-size: 1.875rem;
    }
    .pf-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pf-sector {
        padding: 80px 0;
    }
    .pf-flagship {
        margin-bottom: 48px;
    }
    .pf-flagship__visual {
        min-height: 260px;
        padding: 40px;
    }
    .pf-flagship__name {
        font-size: 1.625rem;
    }
    .pf-flagship__desc {
        font-size: 0.9375rem;
    }
    .pf-flagship__info {
        padding: 0;
    }
    .pf-row {
        grid-template-columns: 140px 1fr;
        gap: 28px;
        padding: 24px;
    }
    .pf-advantages {
        padding: 80px 0;
    }
    .pf-advantages__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pf-advantage {
        border-right: none;
        padding: 32px 24px;
    }
    .pf-advantage:last-child {
        border-bottom: none;
    }
    .pf-advantage__num {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .pf-sector {
        padding: 60px 0;
    }
    .pf-flagship__visual {
        min-height: 200px;
        padding: 28px;
    }
    .pf-flagship__name {
        font-size: 1.5rem;
    }
    .pf-flagship__actions {
        flex-direction: column;
    }
    .pf-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px;
    }
    .pf-row__img {
        max-width: 200px;
        margin: 0 auto;
    }
    .pf-row__name {
        font-size: 1.0625rem;
        text-align: center;
    }
    .pf-row__desc {
        text-align: center;
    }
    .pf-row__meta {
        justify-content: center;
    }
}


/* ===================================
   Product Lightbox - Professional Corporate Gallery
   Clean, minimal, Apple-inspired design
   =================================== */

.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.product-lightbox.closing {
    opacity: 0;
}

/* Clean professional backdrop */
.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    transition: opacity 0.4s ease;
    overflow: hidden;
}

/* Subtle ambient glow */
.lightbox-backdrop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(15, 118, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Subtle noise texture for depth */
.lightbox-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Hide extra elements - keep it clean */
.lightbox-particles,
.lightbox-waves,
.lightbox-glow-orbs {
    display: none;
}

.product-lightbox.closing .lightbox-backdrop {
    opacity: 0;
}

/* Container */
.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

/* Remove grid pattern */
.lightbox-container::before {
    display: none;
}

/* Content wrapper */
.lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/* Clean image wrapper - no background for transparent images */
.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    will-change: transform, opacity;
}

/* Remove decorative elements */
.lightbox-image-wrapper::before,
.lightbox-image-wrapper::after {
    display: none;
}

/* Main image - clean and prominent */
.lightbox-image {
    max-width: 85vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

/* Professional info bar */
.lightbox-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    animation: lightboxInfoIn 0.5s ease 0.2s forwards;
    will-change: opacity;
}

@keyframes lightboxInfoIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product name - elegant typography */
.lightbox-caption {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
}

.lightbox-caption::before {
    display: none;
}

/* Counter badge */
.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.1em;
}

/* Minimal close button */
.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    box-shadow: none;
    animation: lightboxButtonIn 0.4s ease 0.3s forwards;
}

@keyframes lightboxButtonIn {
    to {
        opacity: 1;
    }
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.lightbox-close:active {
    transform: scale(0.95);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
    stroke: #ffffff;
}

/* Minimal navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    box-shadow: none;
    animation: lightboxButtonIn 0.4s ease 0.35s forwards;
}

.lightbox-nav::before {
    display: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.lightbox-nav:hover svg {
    stroke: #ffffff;
}

.lightbox-prev {
    left: 32px;
}

.lightbox-prev:hover svg {
    transform: translateX(-2px);
}

.lightbox-next {
    right: 32px;
}

.lightbox-next:hover svg {
    transform: translateX(2px);
}

/* Keyboard hint */
.lightbox-container::after {
    content: 'ESC · ← →';
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.15em;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    opacity: 0;
    animation: lightboxHintIn 0.5s ease 0.6s forwards;
}

@keyframes lightboxHintIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-container {
        padding: 60px 20px;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 60vh;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
    
    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close svg {
        width: 18px;
        height: 18px;
    }
    
    .lightbox-caption {
        font-size: 1.125rem;
    }
    
    .lightbox-info {
        margin-top: 32px;
        flex-direction: column;
        gap: 8px;
    }
    
    .lightbox-container::after {
        display: none;
    }
}

/* Thumbnail Gallery - Professional style */
.lightbox-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 90vw;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    transform: translateY(16px);
    animation: lightboxThumbsIn 0.4s ease 0.4s forwards;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

@keyframes lightboxThumbsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: none;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.lightbox-thumb:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.lightbox-thumb:hover img {
    opacity: 0.9;
}

.lightbox-thumb.active {
    border-color: rgba(15, 118, 110, 0.8);
    background: rgba(15, 118, 110, 0.15);
    box-shadow: none;
    transform: none;
}

/* Thumbnail responsive */
@media (max-width: 768px) {
    .lightbox-thumbnails {
        margin-top: 20px;
        padding: 6px;
        gap: 6px;
    }
    
    .lightbox-thumb {
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }
    
    .lightbox-thumb img {
        border-radius: 3px;
    }
}

/* Premium close button */
.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    opacity: 0;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(15, 118, 110, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: lightboxButtonIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

@keyframes lightboxButtonIn {
    to {
        opacity: 1;
    }
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 
        0 8px 32px rgba(15, 118, 110, 0.4),
        0 0 0 1px rgba(15, 118, 110, 0.3);
}

.lightbox-close:hover svg {
    stroke: white;
}

.lightbox-close:active {
    transform: scale(0.95) rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: #1a2d3d;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

/* Premium navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    opacity: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(15, 118, 110, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: lightboxButtonIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards;
}

/* Ripple effect on nav buttons */
.lightbox-nav::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(15, 118, 110, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
}

.lightbox-nav:hover::before {
    inset: -10px;
    opacity: 1;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 
        0 8px 40px rgba(15, 118, 110, 0.4),
        0 0 0 1px rgba(15, 118, 110, 0.3);
}

.lightbox-nav:hover svg {
    stroke: white;
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
    stroke: #1a2d3d;
    stroke-width: 2.5;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.lightbox-nav:hover svg {
    transform: scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-prev:hover svg {
    transform: translateX(-2px) scale(1.1);
}

.lightbox-next {
    right: 40px;
}

.lightbox-next:hover svg {
    transform: translateX(2px) scale(1.1);
}

/* Keyboard hint with premium styling */
.lightbox-container::after {
    content: 'ESC ile kapat • ← → ile gezin';
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(15, 118, 110, 0.5);
    letter-spacing: 1px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: lightboxHintIn 0.6s ease 0.7s forwards;
}

@keyframes lightboxHintIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-container {
        padding: 24px;
    }
    
    .lightbox-container::before {
        background-size: 40px 40px;
    }
    
    .lightbox-image-wrapper {
        padding: 16px;
        border-radius: 24px;
    }
    
    .lightbox-image-wrapper::before {
        border-radius: 27px;
    }
    
    .lightbox-image-wrapper::after {
        inset: -12px;
    }
    
    .lightbox-image {
        max-width: 90vw;
        max-height: 55vh;
        border-radius: 16px;
    }
    
    .lightbox-nav {
        width: 52px;
        height: 52px;
    }
    
    .lightbox-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-prev {
        left: 16px;
    }
    
    .lightbox-next {
        right: 16px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    
    .lightbox-close svg {
        width: 22px;
        height: 22px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
    }
    
    .lightbox-caption::before {
        display: none;
    }
    
    .lightbox-info {
        margin-top: 24px;
        padding: 14px 24px;
        gap: 16px;
        flex-direction: column;
    }
    
    .lightbox-backdrop::before,
    .lightbox-backdrop::after {
        width: 100%;
        height: 100%;
    }
    
    .lightbox-container::after {
        display: none;
    }
    
    /* Reduce effects on mobile for performance */
    .lightbox-waves {
        height: 25%;
        opacity: 0.5;
    }
    
    .glow-orb {
        filter: blur(60px);
        opacity: 0.3;
    }
    
    .glow-orb.orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .glow-orb.orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .glow-orb.orb-3 {
        display: none;
    }
    
    .floating-particle {
        filter: blur(2px);
    }
}

/* Thumbnail Gallery */
.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 251, 0.9) 100%);
    border-radius: 100px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(15, 118, 110, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    max-width: 90vw;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    transform: translateY(20px);
    animation: lightboxThumbsIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

@keyframes lightboxThumbsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lightbox-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.2);
}

.lightbox-thumb:hover img {
    transform: scale(1.1);
}

.lightbox-thumb.active {
    border-color: #0F766E;
    box-shadow: 
        0 0 0 2px rgba(15, 118, 110, 0.2),
        0 4px 16px rgba(15, 118, 110, 0.25);
    transform: scale(1.05);
}

.lightbox-thumb.active img {
    transform: scale(1.05);
}

/* Thumbnail responsive */
@media (max-width: 768px) {
    .lightbox-thumbnails {
        margin-top: 16px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .lightbox-thumb {
        width: 52px;
        height: 52px;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .lightbox-thumb img {
        border-radius: 7px;
    }
}




/* Product Slideshow in Hero Section */
.product-slideshow-box {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-slideshow {
    position: relative;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8fafa;
}

.slideshow-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.slideshow-item.active {
    opacity: 1;
    position: relative;
}

.slideshow-image {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.slideshow-caption {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F766E;
    text-align: center;
    margin: 0;
    padding: 10px 16px;
    background: rgba(15, 118, 110, 0.06);
    border-radius: 8px;
}

/* Production Page Hero - Match with service pages styling */
.corp-hero-v2 .corp-hero-title {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

.corp-hero-v2 .corp-hero-badge {
    display: inline-block !important;
    padding: 10px 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 28px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.corp-hero-v2 .corp-hero-desc {
    font-size: 1.0625rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.75 !important;
    margin-bottom: 36px !important;
}

.corp-hero-v2 .corp-hero-stats {
    padding-top: 28px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.corp-hero-v2 .corp-stat {
    text-align: left !important;
}

.corp-hero-v2 .corp-stat-num {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: white !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

.corp-hero-v2 .corp-stat-label {
    display: block !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 0 !important;
}




/* Manufacturing Processes Section */
.processes-section {
    padding: 100px 0;
    background: #f7fafc;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.process-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 16px;
}

.process-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-content ul li {
    font-size: 0.9375rem;
    color: #4a5568;
    padding: 8px 0 8px 28px;
    position: relative;
}

.process-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0F766E;
    font-weight: bold;
    font-size: 1.125rem;
}

/* Capabilities Section */
.capabilities-section {
    padding: 100px 0;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.capability-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.capability-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    border-radius: 50%;
    color: white;
}

.capability-icon svg {
    width: 32px;
    height: 32px;
}

.capability-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B3A3A;
    margin-bottom: 12px;
}

.capability-item p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .processes-section,
    .capabilities-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-content {
        padding: 30px 24px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-item {
        padding: 32px 20px;
    }
}


/* Responsive improvements for product slideshow */
@media (max-width: 768px) {
    .product-slideshow-box {
        padding: 16px;
    }
    
    .product-slideshow {
        min-height: 200px;
    }
    
    .slideshow-item {
        padding: 16px;
    }
    
    .slideshow-image {
        max-width: 150px;
        max-height: 130px;
        margin-bottom: 12px;
    }
    
    .slideshow-caption {
        font-size: 0.8125rem;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .product-slideshow-box {
        padding: 14px;
    }
    
    .product-slideshow {
        min-height: 180px;
    }
    
    .slideshow-item {
        padding: 12px;
    }
    
    .slideshow-image {
        max-width: 130px;
        max-height: 110px;
        margin-bottom: 10px;
    }
    
    .slideshow-caption {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}


/* ============================================
   Interactive Social Media Icons (Original Design)
   ============================================ */

.footer-social {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.footer-social .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
}

.footer-social .icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 15px;
}

.footer-social .icon i {
    color: #333;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-social .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    display: inline-block;
    min-width: max-content;
}

.footer-social .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-social .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-social .icon:hover span,
.footer-social .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* LinkedIn hover */
.footer-social .linkedin:hover {
    background: #0077b5;
}
.footer-social .linkedin:hover .tooltip {
    background: #0077b5;
    color: #ffffff;
}
.footer-social .linkedin:hover .tooltip::before {
    background: #0077b5;
}
.footer-social .linkedin:hover i {
    color: #ffffff;
}

/* Facebook hover */
.footer-social .facebook:hover {
    background: #1877f2;
}
.footer-social .facebook:hover .tooltip {
    background: #1877f2;
    color: #ffffff;
}
.footer-social .facebook:hover .tooltip::before {
    background: #1877f2;
}
.footer-social .facebook:hover i {
    color: #ffffff;
}

/* Twitter hover */
.footer-social .twitter:hover {
    background: #222222;
}
.footer-social .twitter:hover .tooltip {
    background: #222222;
    color: #ffffff;
}
.footer-social .twitter:hover .tooltip::before {
    background: #222222;
}
.footer-social .twitter:hover i {
    color: #ffffff;
}

/* Instagram hover */
.footer-social .instagram:hover {
    background: #e4405f;
}
.footer-social .instagram:hover .tooltip {
    background: #e4405f;
    color: #ffffff;
}
.footer-social .instagram:hover .tooltip::before {
    background: #e4405f;
}
.footer-social .instagram:hover i {
    color: #ffffff;
}

/* YouTube hover */
.footer-social .youtube:hover {
    background: #cd201f;
}
.footer-social .youtube:hover .tooltip {
    background: #cd201f;
    color: #ffffff;
}
.footer-social .youtube:hover .tooltip::before {
    background: #cd201f;
}
.footer-social .youtube:hover i {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-social .icon {
        width: 45px;
        height: 45px;
        padding: 12px;
        margin: 8px;
    }
}

/* =============================================
   MACHINE PARK PAGE - Premium Turquoise Accent
   70% white · 20% dark gray · 10% turquoise
   ============================================= */

/* ---------- Hero Section ---------- */
.mp-hero {
    position: relative;
    padding: 60px 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mp-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 30, 0.7) 0%,
        rgba(10, 20, 30, 0.5) 50%,
        rgba(10, 20, 30, 0.8) 100%
    );
    z-index: 1;
}

.mp-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 20px;
}

.mp-hero__accent-line {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 24px;
    border-radius: 2px;
}

.mp-hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.mp-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.mp-hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 600px;
}

.mp-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Hero Load Animation ---------- */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-hero__accent-line,
.mp-hero__badge,
.mp-hero__title,
.mp-hero__desc,
.mp-hero__actions,
.mp-hero__stats {
    opacity: 0;
}

.mp-hero.is-loaded .mp-hero__accent-line {
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

.mp-hero.is-loaded .mp-hero__badge {
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
}

.mp-hero.is-loaded .mp-hero__title {
    animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

.mp-hero.is-loaded .mp-hero__desc {
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.9s;
}

.mp-hero.is-loaded .mp-hero__actions {
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.15s;
}

.mp-hero.is-loaded .mp-hero__stats {
    animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.4s;
}

/* ---------- Scroll Reveal (components) ---------- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="slide-left"].reveal-hidden {
    transform: translateX(-20px);
}

[data-reveal="slide-right"].reveal-hidden {
    transform: translateX(20px);
}

[data-reveal="slide-left"].reveal-visible,
[data-reveal="slide-right"].reveal-visible {
    transform: translateX(0);
}

/* ---------- Card Hover Effects ---------- */
.pf-flagship {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pf-flagship:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.pf-row {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s ease;
}

.pf-row:hover {
    transform: translateX(4px);
    background: rgba(20, 184, 166, 0.02);
}

.pf-advantage {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.pf-advantage:hover {
    transform: translateY(-2px);
}

.pf-advantage:hover .pf-advantage__num {
    color: var(--primary-color);
    transition: color 0.5s ease;
}

/* ---------- Buttons ---------- */
.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.mp-btn--accent {
    background: var(--primary-color);
    color: #fff;
}

.mp-btn--accent:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.mp-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.mp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.mp-btn--white {
    background: #fff;
    color: var(--secondary-color);
}

.mp-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mp-btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.mp-btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ---------- Section Headers ---------- */
.mp-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.mp-section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.mp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.mp-section-line {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.mp-section-line--left {
    margin-left: 0;
}

.mp-section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Stats inside Hero ---------- */
.mp-hero__stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mp-hero__stats .mp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.mp-stats__item {
    padding: 20px;
}

.mp-stats__number {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.mp-stats__plus {
    color: var(--primary-color);
}

.mp-stats__unit {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.mp-stats__divider {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    margin: 12px auto;
    border-radius: 1px;
}

.mp-stats__label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    line-height: 1.4;
}

/* ---------- Machines Section ---------- */
.mp-machines {
    padding: 120px 0;
    background: #fff;
}

/* Flagship Machine */
.mp-machine--flagship {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.mp-machine__visual {
    position: relative;
    background: #f5f5f7;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.mp-machine__visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mp-machine__visual:hover img {
    transform: scale(1.08);
}

.mp-machine__badge-corner {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary-color);
    padding: 5px 14px;
    border-radius: 4px;
}

.mp-machine__info {
    padding: 20px 0;
}

.mp-machine__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.mp-machine__name {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.mp-machine__desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 28px;
}

.mp-machine__spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}

.mp-machine__spec-table td {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.mp-machine__spec-table tr:last-child td {
    border-bottom: none;
}

.mp-machine__spec-table td:first-child {
    color: #9ca3af;
    font-weight: 500;
}

.mp-machine__spec-table td:last-child {
    text-align: right;
    color: var(--secondary-color);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.mp-machine__actions {
    display: flex;
    gap: 12px;
}

/* Secondary Machine Cards Grid */
.mp-machines__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mp-machine-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mp-machine-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.mp-machine-card__img {
    background: #f5f5f7;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.mp-machine-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mp-machine-card:hover .mp-machine-card__img img {
    transform: scale(1.08);
}

.mp-machine-card__body {
    padding: 24px;
}

.mp-machine-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px;
}

.mp-machine-card__desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px;
}

.mp-machine-card .mp-machine__spec-table {
    margin-bottom: 0;
}

.mp-machine-card .mp-machine__spec-table td {
    padding: 8px 0;
    font-size: 0.85rem;
}

/* ---------- Production Process Timeline ---------- */
.mp-process {
    padding: 120px 0;
    background: #f8f9fa;
}

.mp-process__timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.mp-process__step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 20px;
}

.mp-process__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}

.mp-process__step:hover .mp-process__icon {
    background: var(--primary-color);
}

.mp-process__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.mp-process__num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.mp-process__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px;
}

.mp-process__desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.mp-process__connector {
    width: 60px;
    height: 1px;
    background: var(--primary-light);
    margin-top: 32px;
    flex-shrink: 0;
}

/* ---------- Gallery Section ---------- */
.mp-gallery {
    padding: 120px 0;
    background: #fff;
}

.mp-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.mp-gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.mp-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.mp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mp-gallery__item:hover img {
    transform: scale(1.05);
}

.mp-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 90, 99, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-gallery__item:hover .mp-gallery__overlay {
    opacity: 1;
}

.mp-gallery__overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ---------- Equipment Table Section ---------- */
.mp-equipment {
    padding: 120px 0;
    background: #fff;
}

.mp-equipment__table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mp-equipment__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.mp-equipment__table thead {
    background: linear-gradient(135deg, #0B3A3A 0%, #0F766E 100%);
}

.mp-equipment__table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.mp-equipment__table td {
    padding: 16px 24px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.mp-equipment__table tbody tr:last-child td {
    border-bottom: none;
}

.mp-equipment__table tbody tr:hover {
    background: #f1f5f9;
}

.mp-equipment__table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ---------- Quality & Certification ---------- */
.mp-quality {
    padding: 120px 0;
    background: #f8f9fa;
}

.mp-quality__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.mp-quality__content .mp-section-tag,
.mp-quality__content .mp-section-title {
    text-align: left;
}

.mp-quality__text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 20px 0 40px;
}

.mp-quality__certs {
    display: flex;
    gap: 24px;
}

.mp-quality__cert {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-quality__cert-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(15, 118, 110, 0.08);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(15, 118, 110, 0.15);
    letter-spacing: 0.5px;
}

.mp-quality__cert-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    padding-left: 4px;
}

.mp-quality__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mp-quality__visual img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

/* ---------- CTA Section ---------- */
.mp-cta {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.mp-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.mp-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.mp-cta__desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px;
}

.mp-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mp-cta .mp-btn--white {
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    color: #fff;
}

.mp-cta .mp-btn--white:hover {
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.35);
}

.mp-cta .mp-btn--outline {
    color: #0F766E;
    border-color: rgba(15, 118, 110, 0.3);
}

.mp-cta .mp-btn--outline:hover {
    color: #0F766E;
    border-color: rgba(15, 118, 110, 0.6);
    background: rgba(15, 118, 110, 0.05);
}

/* ---------- Machine Park Responsive ---------- */
@media (max-width: 1024px) {
    .mp-hero__stats .mp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .mp-machine--flagship {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-machines__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-quality__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .mp-hero {
        padding: 60px 0;
    }

    .mp-hero__inner {
        padding-top: 40px;
    }

    .mp-hero__stats .mp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mp-machines,
    .mp-process,
    .mp-equipment,
    .mp-quality,
    .mp-cta {
        padding: 80px 0;
    }

    .mp-machines__grid {
        grid-template-columns: 1fr;
    }

    .mp-process__timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .mp-process__connector {
        width: 1px;
        height: 40px;
        margin: 0;
    }

    .mp-process__step {
        max-width: 100%;
    }

    .mp-gallery__grid {
        grid-template-columns: 1fr;
    }

    .mp-gallery__item--large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .mp-quality__certs {
        flex-direction: column;
        gap: 16px;
    }

    .mp-quality__visual {
        display: none;
    }

    .mp-equipment__table {
        font-size: 0.85rem;
    }

    .mp-equipment__table th,
    .mp-equipment__table td {
        padding: 12px 16px;
    }

    .mp-section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .mp-hero__stats .mp-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .mp-stats__item {
        padding: 12px;
    }

    .mp-hero__actions {
        flex-direction: column;
    }

    .mp-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .mp-machine-card__body {
        padding: 16px;
    }
}
