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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #022e3e;
    --accent-color: #034156;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #022e3e;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ==================== STICKY SIDE NAVIGATION ==================== */
.sticky-nav {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sticky-nav.visible {
    opacity: 1;
    visibility: visible;
}

.nav-tab {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-tab-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    padding: 15px 10px;
    background: rgba(2, 46, 62, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.nav-tab-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-color);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.nav-tab:hover .nav-tab-text {
    color: var(--primary-color);
    background: rgba(2, 46, 62, 0.95);
    border-color: rgba(255, 107, 53, 0.3);
}

.nav-tab.active .nav-tab-text {
    color: var(--primary-color);
    background: rgba(2, 46, 62, 1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.nav-tab.active .nav-tab-indicator {
    height: 40px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.header.scrolled .logo-img {
    opacity: 0;
}

.logo-img-dark {
    position: absolute;
    height: 40px;
    width: auto;
    opacity: 0;
    transition: var(--transition);
    top: 0;
    left: 0;
    z-index: 1;
}

.header.scrolled .logo-img-dark {
    opacity: 1;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: #022e3e;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

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

.header.scrolled .hamburger span {
    background: #022e3e;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== HERO SECTION - CREATIVE DESIGN ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, #022e3e 0%, #034156 50%, #022e3e 100%);
    display: flex;
    align-items: center;
}

/* Image Background Slider */
.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    overflow: hidden;
}

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

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Video loading state */
.hero-slide:not(.active) .hero-video-bg {
    opacity: 0;
}

.hero-slide.active .hero-video-bg {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Mobile optimization for videos */
@media (max-width: 768px) {
    .hero-video-bg {
        /* Mobilde performans için biraz düşük kalite */
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Video Background (kept for backward compatibility) */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    filter: blur(2px);
    display: none; /* Disabled */
}

/* Canvas Background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradient Overlay */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Noise Texture */
.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 3;
    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");
    pointer-events: none;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: var(--primary-color);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    opacity: 0.6;
    animation: particleFloat var(--duration) ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -30px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-20px, -60px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(40px, -30px) scale(1.1); opacity: 0.7; }
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Top Bar */
.hero-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.tag-text {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-year {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
}

/* Title Wrapper */
.hero-title-wrapper {
    margin-bottom: 40px;
}

.title-line-wrapper {
    overflow: hidden;
}

.title-prefix {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 6px;
    animation: slideInLeft 0.8s ease forwards;
}

.title-main-wrapper {
    overflow: hidden;
    margin: 20px 0;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
}

.title-word {
    display: inline-block;
    color: var(--white);
    animation: titleReveal 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(100%);
}

.title-stroke {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 3px var(--primary-color);
    margin-left: 20px;
    animation: titleReveal 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(100%);
}

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

.title-suffix-wrapper {
    overflow: hidden;
}

.title-suffix {
    display: none;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-decoration: none;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.5);
}

.cta-primary .cta-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .cta-bg {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-5px);
}

.cta-play {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-secondary:hover .cta-play {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cta-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.3s;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Showcase */
.hero-showcase {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 550px;
    z-index: 5;
}

.showcase-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-main {
    width: 100%;
    height: 100%;
    z-index: 3;
    animation: showcaseFloat 8s ease-in-out infinite;
}

@keyframes showcaseFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.showcase-main:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

.showcase-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 4;
}

.showcase-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 10px;
}

.showcase-info h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.showcase-secondary {
    width: 200px;
    height: 250px;
    top: -30px;
    right: -30px;
    z-index: 2;
    animation: showcaseFloat2 10s ease-in-out infinite;
}

.showcase-tertiary {
    width: 180px;
    height: 200px;
    bottom: -20px;
    left: -40px;
    z-index: 1;
    animation: showcaseFloat3 12s ease-in-out infinite;
}

@keyframes showcaseFloat2 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

@keyframes showcaseFloat3 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

.showcase-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    pointer-events: none;
    z-index: 0;
}

.deco-circle {
    position: absolute;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
}

.deco-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: decoRotate 30s linear infinite;
}

.deco-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation: decoRotate 25s linear infinite reverse;
}

.deco-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3), transparent);
}

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

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 120px;
    left: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.hero-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot-number {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.dot-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-dot.active .dot-number {
    color: var(--primary-color);
}

.hero-dot.active .dot-line {
    width: 60px;
    background: var(--primary-color);
}

.hero-dot:hover .dot-number {
    color: var(--primary-color);
}

/* Hero Arrows */
.hero-arrows {
    position: absolute;
    bottom: 120px;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.hero-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

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

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Socials */
.hero-socials {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 20;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover i {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.social-tooltip {
    position: absolute;
    left: 60px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Bottom Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), #ff8c5a);
    transition: width 0.3s ease;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 80px 0;
    background: var(--bg-light);
    margin-top: -1px;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #022e3e;
}

.feature-item p {
    color: var(--text-light);
}

/* ==================== PRODUCT SHOWCASE SECTION ==================== */
.product-showcase {
    padding: 0;
}

.product-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.5s ease;
}

.product-slide:hover .product-bg {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.product-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.product-number {
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.product-info {
    max-width: 600px;
    margin-left: 150px;
    color: var(--white);
}

.product-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-badge.popular {
    background: var(--primary-color);
}

.product-badge.luxury {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 16px;
}

.feature-tag span {
    font-size: 14px;
    font-weight: 500;
}

.product-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Product Decoration */
.product-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 20%;
}

.deco-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

/* Alternate layout for even products */
.product-2 .product-content {
    justify-content: flex-end;
}

.product-2 .product-number {
    right: 20px;
    left: auto;
}

.product-2 .product-info {
    margin-left: 0;
    margin-right: 150px;
    text-align: right;
}

.product-2 .product-overlay {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==================== PRODUCT SPECS SECTION - CREATIVE DESIGN ==================== */
.product-specs {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #022e3e 0%, #034156 50%, #022e3e 100%);
    overflow: hidden;
}

/* Animated Background Elements */
.product-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-specs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    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");
    pointer-events: none;
}

/* Floating Orbs */
.specs-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.specs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.specs-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.specs-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.specs-orb-3 {
    width: 250px;
    height: 250px;
    background: #764ba2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(20px, -20px) scale(1.05); }
}

.specs-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.specs-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.specs-number {
    font-size: 150px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 107, 53, 0.3);
    line-height: 1;
    position: relative;
}

.specs-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 107, 53, 0.05);
    -webkit-text-stroke: 0;
}

.specs-title {
    position: relative;
}

.specs-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.specs-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specs-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}

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

.spec-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 107, 53, 0.1);
}

.spec-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.spec-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.spec-card:hover .spec-icon-wrapper::before {
    opacity: 0.3;
    transform: scale(1.2);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.spec-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.spec-card:hover .spec-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: var(--white);
    border-color: transparent;
    transform: rotateY(360deg);
}

.spec-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.spec-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.spec-card p br {
    content: '';
    display: block;
    margin-bottom: 5px;
}

/* Spec Value Highlight */
.spec-card p {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-card p br {
    display: none;
}

/* Decorative Elements */
.specs-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.specs-decoration::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    animation: decoRotateSlow 40s linear infinite;
}

.specs-decoration::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    animation: decoRotateSlow 35s linear infinite reverse;
}

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

/* Grid Lines */
.specs-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ==================== TECH SUMMARY ==================== */
.tech-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tech-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.tech-summary-item:hover::before {
    opacity: 1;
}

.tech-summary-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 53, 0.1);
}

.tech-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.tech-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ==================== PRODUCT EQUIPMENT SECTION ==================== */
.product-equipment {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #034156 0%, #022e3e 50%, #034156 100%);
    overflow: hidden;
}

.product-equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 152, 219, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.product-equipment::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    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");
    pointer-events: none;
}

.equipment-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.equipment-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.equipment-number {
    font-size: 150px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 107, 53, 0.3);
    line-height: 1;
    position: relative;
}

.equipment-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 107, 53, 0.05);
    -webkit-text-stroke: 0;
}

.equipment-title {
    position: relative;
}

.equipment-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.equipment-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.equipment-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.equipment-sections {
    display: grid;
    gap: 40px;
}

.equipment-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
    pointer-events: none;
}

.equipment-section:hover::before {
    opacity: 1;
}

.equipment-section:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.equipment-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.equipment-section:hover .section-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: var(--white);
    transform: rotateY(180deg);
}

.equipment-section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 30px 40px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.equipment-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.equipment-item i.fa-check-circle {
    color: #10b981;
}

.equipment-item i.fa-star {
    color: var(--primary-color);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.equipment-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.equipment-item.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.2);
}

.equipment-item.featured:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-color: rgba(255, 107, 53, 0.3);
}

.equipment-item.featured span {
    color: var(--white);
    font-weight: 500;
}

/* ==================== PRODUCT GALLERY SECTION - CREATIVE DESIGN ==================== */
.product-gallery {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #022e3e 0%, #034156 50%, #022e3e 100%);
    overflow: hidden;
}

/* Animated Background */
.product-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 152, 219, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.product-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    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");
    pointer-events: none;
}

.gallery-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.gallery-number {
    font-size: 150px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 107, 53, 0.3);
    line-height: 1;
    position: relative;
}

.gallery-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 107, 53, 0.05);
    -webkit-text-stroke: 0;
}

.gallery-title {
    position: relative;
}

.gallery-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.gallery-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
}

.gallery-masonry .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-masonry .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}

.gallery-masonry .gallery-item:hover::before {
    opacity: 1;
}

.gallery-masonry .gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 107, 53, 0.1);
}

.gallery-masonry .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-masonry .gallery-item.tall {
    grid-row: span 2;
}

.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(30%);
}

.gallery-masonry .gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.gallery-masonry .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 140, 90, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
    border-radius: 20px;
}

.gallery-masonry .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-masonry .gallery-overlay i {
    font-size: 40px;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-masonry .gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(90deg);
}

/* Gallery Item Shine Effect */
.gallery-masonry .gallery-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px;
}

.gallery-masonry .gallery-item:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* ==================== PRODUCT QUOTE SECTION ==================== */
.product-quote {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.quote-number {
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -50px;
}

.quote-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ==================== MAIN GALLERY SECTION ==================== */
.main-gallery {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

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

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

.gallery-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-intro p {
    font-size: 18px;
    opacity: 0.8;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid .gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 10px;
}

.item-overlay h4 {
    font-size: 20px;
    font-weight: 600;
}

.item-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover .item-overlay-bg {
    opacity: 1;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #022e3e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #022e3e;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-links .social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #e55a2b;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: #e55a2b;
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-showcase {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 45px;
    }
    
    .title-suffix {
        display: none;
    }
    
    .hero-showcase {
        width: 300px;
        height: 400px;
        right: 40px;
    }
    
    .showcase-secondary {
        width: 160px;
        height: 200px;
    }
    
    .showcase-tertiary {
        width: 140px;
        height: 160px;
    }
    
    .hero-dots,
    .hero-arrows {
        left: 40px;
        bottom: 100px;
    }
    
    .hero-arrows {
        left: auto;
        right: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Product Showcase Responsive */
    .product-number {
        font-size: 120px;
    }
    
    .product-info {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .product-2 .product-content {
        justify-content: flex-start;
    }
    
    .product-2 .product-number {
        left: 20px;
        right: auto;
    }
    
    .product-2 .product-info {
        text-align: left;
    }
    
    .product-2 .product-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Product Specs Tablet */
    .specs-container {
        padding: 0 40px;
    }
    
    .specs-header {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .specs-number {
        font-size: 100px;
    }
    
    .specs-title h2 {
        font-size: 36px;
    }
    
    .specs-title p {
        font-size: 14px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .spec-card {
        padding: 35px 25px;
    }
    
    .spec-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .spec-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
    
    .spec-card h4 {
        font-size: 18px;
    }
    
    .spec-card p {
        font-size: 14px;
    }
    
    /* Gallery Tablet */
    .gallery-container {
        padding: 0 40px;
    }
    
    .gallery-header {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .gallery-number {
        font-size: 100px;
    }
    
    .gallery-title h2 {
        font-size: 36px;
    }
    
    .gallery-title p {
        font-size: 14px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 20px;
    }
    
    .gallery-masonry .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-masonry .gallery-item.tall {
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Sticky Nav for Mobile - Keep vertical on left side */
    .sticky-nav {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        gap: 15px;
    }
    
    .nav-tab-text {
        font-size: 10px;
        padding: 10px 6px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-color);
        font-size: 18px;
    }
    
    /* ==================== MOBILE HERO - FRESH DESIGN ==================== */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 60px 0 100px;
        position: relative;
    }
    
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    
    .hero-canvas {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    
    /* 1. Premium Karavan Deneyimi - Full Width Top */
    .hero-top-bar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        margin-top: 10px;
        width: 100%;
    }
    
    .hero-tag {
        padding: 5px 5px;
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 25px;
    }
    
    .tag-text {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 700;
        color: var(--white);
    }
    
    .hero-year {
        display: none;
    }
    
    /* 2. Eco Series Showcase - Below Tag */
    .hero-showcase {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 180px;
        top: -40px;
        left: 0;
        transform: none;
        z-index: 5;
        margin-bottom: -15px;
        overflow: hidden;
    }
    
    .showcase-card {
        position: absolute;
        width: 100%;
        height: 100%;
        transition: transform 0.8s ease, opacity 0.8s ease;
    }
    
    .showcase-main {
        transform: translateX(0);
        opacity: 1;
    }
    
    .showcase-secondary {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .showcase-tertiary {
        transform: translateX(100%);
        opacity: 0;
    }
    
    /* Active slide states */
    .hero-showcase.slide-1 .showcase-main {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .hero-showcase.slide-1 .showcase-secondary {
        transform: translateX(0);
        opacity: 1;
    }
    
    .hero-showcase.slide-2 .showcase-secondary {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .hero-showcase.slide-2 .showcase-tertiary {
        transform: translateX(0);
        opacity: 1;
    }
    
    .showcase-decoration {
        display: none;
    }
    
    /* 3. Vail Karavan Başlıyor - Below Showcase */
    .hero-title-wrapper {
        margin-bottom: 20px;
        margin-top: -30px;
    }
    
    .title-prefix {
        font-size: 11px;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .title-stroke {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        -webkit-text-stroke-width: 2px;
    }
    
    .title-suffix {
        display: none;
    }
    
    /* 4. Türk Mühendisliği Description */
    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
        margin-top: -40px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* 5. CTA Buttons - Horizontal Below Description */
    .hero-cta {
        flex-direction: row;
        width: 100%;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .cta-btn {
        flex: 1;
        justify-content: center;
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .cta-btn .cta-icon {
        width: 16px;
        height: 16px;
    }
    
    .cta-btn .cta-play {
        width: 20px;
        height: 20px;
    }
    
    /* 6. Stats - At Bottom */
    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 28px;
        font-weight: 900;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Mobile Hero Dots - Hide on mobile */
    .hero-dots {
        display: none;
    }
    
    /* Mobile Hero Arrows - Hide on mobile */
    .hero-arrows {
        display: none;
    }
    
    /* Mobile Scroll Indicator */
    .hero-scroll {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-mouse {
        width: 24px;
        height: 40px;
    }
    
    .scroll-text {
        font-size: 9px;
    }
    
    /* Mobile Socials - Hide on mobile */
    .hero-socials {
        display: none;
    }
    
    /* Mobile Product Showcase */
    .product-slide {
        min-height: 100vh;
        height: auto;
        padding: 80px 0;
    }
    
    .product-bg {
        position: absolute;
    }
    
    .product-content {
        flex-direction: column;
        padding-top: 0;
    }
    
    .product-number {
        position: relative;
        font-size: 60px;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .product-info {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        max-width: 100%;
    }
    
    .product-badge {
        font-size: 11px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .product-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .product-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .product-features {
        justify-content: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .feature-tag {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .deco-circle {
        display: none;
    }
    
    /* Mobile Gallery */
    .gallery-container {
        padding: 0 20px;
    }
    
    .gallery-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .gallery-number {
        font-size: 80px;
    }
    
    .gallery-title::before {
        display: none;
    }
    
    .gallery-title h2 {
        font-size: 32px;
    }
    
    .gallery-title p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .gallery-masonry .gallery-item.large,
    .gallery-masonry .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-masonry .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .gallery-masonry .gallery-overlay i {
        font-size: 32px;
    }
    
    /* Mobile Sections */
    .features {
        padding: 50px 0;
    }
    
    .product-specs,
    .product-gallery,
    .product-quote,
    .main-gallery,
    .contact {
        padding: 60px 0;
    }
    
    /* Mobile Product Specs */
    .specs-container {
        padding: 0 20px;
    }
    
    .specs-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .specs-number {
        font-size: 80px;
    }
    
    .specs-title::before {
        display: none;
    }
    
    .specs-title h2 {
        font-size: 32px;
    }
    
    .specs-title p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-card {
        padding: 35px 25px;
    }
    
    .spec-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .spec-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .spec-card h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .spec-card p {
        font-size: 14px;
    }
    
    /* Hide decorative elements on mobile */
    .specs-orbs,
    .specs-grid-lines,
    .specs-decoration {
        display: none;
    }
    
    /* Mobile Tech Summary */
    .tech-summary {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .tech-summary-item {
        padding: 20px 25px;
        min-width: calc(50% - 8px);
    }
    
    .tech-value {
        font-size: 32px;
    }
    
    .tech-label {
        font-size: 10px;
    }
    
    /* Mobile Equipment Section */
    .product-equipment {
        padding: 60px 0;
    }
    
    .equipment-container {
        padding: 0 20px;
    }
    
    .equipment-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .equipment-number {
        font-size: 80px;
    }
    
    .equipment-title::before {
        display: none;
    }
    
    .equipment-title h2 {
        font-size: 32px;
    }
    
    .equipment-title p {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .equipment-sections {
        gap: 25px;
    }
    
    .equipment-section {
        border-radius: 16px;
    }
    
    .equipment-section-header {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .equipment-section-header h3 {
        font-size: 18px;
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 25px;
    }
    
    .equipment-item {
        padding: 12px 15px;
    }
    
    .equipment-item i {
        font-size: 16px;
    }
    
    .equipment-item span {
        font-size: 13px;
    }
    
    .gallery-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .gallery-number {
        font-size: 60px;
    }
    
    .gallery-title h2 {
        font-size: 28px;
    }
    
    .gallery-title p {
        font-size: 14px;
    }
    
    .gallery-intro h2 {
        font-size: 28px;
    }
    
    .gallery-intro p {
        font-size: 14px;
    }
    
    .gallery-tabs {
        gap: 10px;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid .gallery-item {
        height: 250px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    /* Sticky Nav Mobile - Keep vertical on left side */
    .sticky-nav {
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        gap: 12px;
    }
    
    .nav-tab-text {
        font-size: 9px;
        padding: 8px 5px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .title-suffix {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price-value {
        font-size: 24px;
    }
}

/* ==================== PRODUCTS GRID SECTION ==================== */
.products-grid-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.products-grid-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid-section .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #022e3e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid-section .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.products-grid .product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 24px;
    background: #fff;
    transform: scale(0.9);
    transition: transform 0.6s ease;
}

.products-grid .product-card:hover .product-card-image img {
    transform: scale(0.95);
}

.product-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.product-card-content {
    padding: 30px;
}

.product-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #022e3e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card-specs {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.product-card-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.product-card-specs i {
    color: var(--primary-color);
    font-size: 16px;
}

.product-card .btn-block {
    width: 100%;
    text-align: center;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-card .btn-block i {
    transition: transform 0.3s ease;
}

.product-card:hover .btn-block i {
    transform: translateX(5px);
}

/* Product Card Features */
.product-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px 0;
    margin-bottom: 20px;
}

.product-card-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card-features .feature-item:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.product-card-features .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.product-card-features .feature-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-card-features .feature-value {
    font-size: 14px;
    font-weight: 700;
    color: #022e3e;
}

.product-card-features .feature-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Grid Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-grid-section .section-title {
        font-size: 36px;
    }
    
    .product-card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .products-grid-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .products-grid-section .section-title {
        font-size: 28px;
    }
    
    .products-grid-section .section-subtitle {
        font-size: 14px;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .product-card-content {
        padding: 25px;
    }
    
    .product-card-title {
        font-size: 20px;
    }
    
    .product-card-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-card-features .feature-item {
        padding: 10px;
    }
    
    .product-card-features .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .product-card-features .feature-value {
        font-size: 13px;
    }
    
    .product-card-features .feature-label {
        font-size: 10px;
    }
}
  
/* ==================== PRIVACY MODAL ==================== */  
.privacy-modal {  
    position: fixed;  
    top: 0;  
    left: 0;  
    width: 100%%;  
    height: 100%%;  
    z-index: 10000;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
} 
.privacy-modal-overlay {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%%;  
    height: 100%%;  
    background: rgba(0, 0, 0, 0.8);  
}  
  
.privacy-modal-content {  
    position: relative;  
    background: white;  
    width: 90%%;  
    max-width: 700px;  
    max-height: 90vh;  
    border-radius: 15px;  
    display: flex;  
    flex-direction: column;  
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);  
} 
  
.privacy-modal-header {  
    padding: 20px 25px;  
    border-bottom: 1px solid #eee;  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
}  
  
.privacy-modal-header h2 {  
    margin: 0;  
    font-size: 18px;  
    color: #022e3e;  
}  
  
.privacy-modal-close {  
    background: none;  
    border: none;  
    font-size: 28px;  
    cursor: pointer;  
    color: #888;  
    transition: color 0.3s;  
}  
  
.privacy-modal-close:hover {  
    color: #ff6b35;  
} 
  
.privacy-modal-body {  
    padding: 25px;  
    overflow-y: auto;  
    max-height: calc(90vh - 140px);  
}  
  
.privacy-modal-body h3 {  
    font-size: 16px;  
    color: #022e3e;  
    margin: 20px 0 10px 0;  
}  
  
.privacy-modal-body h3:first-child {  
    margin-top: 0;  
}  
  
.privacy-modal-body p {  
    font-size: 14px;  
    line-height: 1.6;  
    color: #555;  
    margin-bottom: 10px;  
}  
  
.privacy-modal-body ul {  
    margin: 10px 0;  
    padding-left: 20px;  
}  
  
.privacy-modal-body li {  
    font-size: 14px;  
    line-height: 1.6;  
    color: #555;  
    margin-bottom: 5px;  
} 
  
.privacy-modal-footer {  
    padding: 15px 25px;  
    border-top: 1px solid #eee;  
    display: flex;  
    justify-content: flex-end;  
}  
  
@media (max-width: 768px) {  
    .privacy-modal-content {  
        width: 95%;  
        max-height: 95vh;  
    }  
  
    .privacy-modal-header h2 {  
        font-size: 16px;  
    }  
  
    .privacy-modal-body {  
        padding: 15px;  
    }  
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-block {
    margin-bottom: 80px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

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

.feature-reverse .feature-content {
    direction: rtl;
}

.feature-reverse .feature-content > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.feature-text {
    padding: 20px;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 968px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-reverse .feature-content {
        direction: ltr;
    }
    
    .feature-image img {
        height: 400px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-block {
        margin-bottom: 60px;
    }
    
    .feature-image img {
        height: 300px;
    }
    
    .feature-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.7;
    }
} 
