/* Reset & Base Styles */
*, *:before, *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Global Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a, button, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --secondary-color: #F59E0B;
    --secondary-light: #FBBF24;
    --accent-color: #10B981;
    --text-dark: #111827;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Global Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

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

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.top-bar-social {
    display: flex;
    gap: 0.8rem;
}

.top-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.top-social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    animation: slideDownHeader 0.5s ease;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    z-index: 9999;
    overflow: visible;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: wrap;
    position: relative;
    z-index: 9999;
}

/* Masaüstünde mobil menü içeriğini normal menü gibi göster */
.nav-links .mobile-menu-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.3rem;
    width: 100%;
}

/* Masaüstünde mobile-menu-links içindeki linkleri normal menü gibi göster - SADECE MASAÜSTÜ */
@media (min-width: 969px) {
    .nav-links .mobile-menu-links {
        display: flex;
        flex-direction: row;
        gap: 0.3rem;
        align-items: center;
        justify-content: center;
        flex: 1;
        flex-wrap: wrap;
        padding: 0;
        overflow: visible;
    }

    .nav-links .mobile-menu-links .nav-link {
        display: flex;
        padding: 0.5rem 0.6rem;
        border-bottom: none;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }
}

.nav-links .mobile-menu-footer {
    display: none;
}

.nav-links .mobile-menu-close {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 2px 0 0;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    z-index: 9999;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

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

.nav-dropdown-link {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-link i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.lang-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.lang-link:hover i {
    color: var(--white);
}

.btn-quote-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

/* Mobil menü içeriği varsayılan olarak masaüstünde görünsün (yukarıdaki kurallar ile override edilecek) */

.mobile-menu-toggle:hover {
    background: var(--gray-100);
    transform: scale(1.1);
}

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

/* Hero Section */

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-large i {
    transition: transform 0.3s;
}

.btn-large:hover i {
    transform: translateX(5px);
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: arrowDown 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -6px;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
    margin-top: -6px;
}

@keyframes arrowDown {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

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

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-controls .slider-btn {
    pointer-events: all;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
}

.decorative-shape {
    position: absolute;
    border-radius: 20px;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: 50px;
    right: 50px;
    opacity: 0.2;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border: 3px dashed var(--text-dark);
    top: 150px;
    right: 150px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-placeholder,
.about-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gray-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    transition: opacity 0.3s;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.feature-card:hover::after {
    opacity: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    z-index: 2;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.feature-card:hover .feature-icon-bg {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover .feature-hover-effect {
    transform: scaleX(0);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Hero Slider */
.slider__warpper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 75vh;
    overflow: hidden;
    box-sizing: border-box;
}

.slider__navi {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
}

.slider__navi a {
    display: block;
    height: 6px;
    width: 20px;
    margin: 20px 0;
    text-indent: -9999px;
    box-shadow: none;
    border: none;
    background: rgb(37, 99, 235);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider__navi a.active {
    background: rgba(255,255,255,1);
}

.flex__container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap; 
    justify-content: flex-start;
    height: 75vh;
    width: 100%;
    z-index: 1;
}

.flex__container.flex--active {
    z-index: 2;
}

.text--sub {
    font-size: 12px;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.text--big {
    font-family: 'Poppins', sans-serif;
    font-size: 7.5em;
    font-weight: 700;
    line-height: 110px;
    margin-left: -8px;
    color: #fff;
}

.text--normal {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 22px;
    margin-top: 25px;
}

.text__background {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 72px;
    bottom: -60px;
    color: rgba(0,0,0,0.05);
    font-size: 170px;
    font-weight: 700;
}

.flex__item {
    height: 75vh;
    color: #fff;
    transition: transform 0.1s linear;
}

.flex__item--left {
    display: flex;
    display: flex;
    align-items: center;
    width: 60%;
    transform-origin: left bottom;
    transition: transform 0.1s linear 0.4s;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.flex__item--right {
    width: 45%;
    transform-origin: right center;
    transition: transform 0.1s linear 0s;
    opacity: 0;
}

.flex--preStart .flex__item--left,
.flex--preStart .flex__item--right,
.flex--active .flex__item--left,
.flex--active .flex__item--right {
    opacity: 1;
}

/* Pikachu - Spor Ekipmanları */
.flex--pikachu .flex__item--left {
    background: var(--primary-color);
}

.flex--pikachu .flex__item--right {
    background: rgba(37, 99, 235, 0.1);
}

/* Piplup - Voleybol Direği */
.flex--piplup .flex__item--left {
    background: var(--secondary-color);
}

.flex--piplup .flex__item--right {
    background: rgba(245, 158, 11, 0.1);
}

/* Charizard - Futbol Kalesi */
.flex--charizard .flex__item--left {
    background: #10b981;
}

.flex--charizard .flex__item--right {
    background: rgba(16, 185, 129, 0.1);
}

.flex__content {
    margin-left: 80px;
    width: 55%;
    opacity: 1;
    transform: translate3d(0,0,0);
    transition: transform 0.2s linear 0.2s, opacity 0.1s linear 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.pokemon__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: translate3d(0,0,0);
    transition: opacity 0.43s 0.6s, transform 0.4s 0.65s cubic-bezier(0, 0.88, 0.4, 0.93);
}

/* Animate-START point */
.flex__container.animate--start .flex__content {
    transform: translate3d(0,-200%,0);
    opacity: 0;
}

.flex__container.animate--start .pokemon__img {
    transform: translate3d(-200px,0,0);
    opacity: 0;
}

/* Animate-END point */
.flex__container.animate--end .flex__item--left {
    transform: scaleY(0);
}

.flex__container.animate--end .flex__item--right {
    transform: scaleX(0);
}

.flex__container.animate--end .flex__content {
    transform: translate3d(0,200%,0);
    opacity: 0;
}

.flex__container.animate--end .pokemon__img {
    transform: translate3d(200px,0,0);
    opacity: 0;
}

@media (max-width: 968px) {
    .top-bar {
        display: none;
    }

    .slider__warpper {
        height: auto;
        overflow: hidden;
        position: relative;
    }

    .flex__container {
        height: auto;
        flex-flow: column nowrap !important;
        position: relative !important;
        display: flex;
        flex-direction: column;
        width: 100%;
        top: auto !important;
        left: auto !important;
    }

    .flex__container.flex--active {
        display: flex;
    }

    .flex__container.animate--start {
        display: none;
    }

    .flex__item {
        height: auto;
    }

    .text--big {
        font-size: 2.5em;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .text--sub {
        font-size: 10px;
        letter-spacing: 0.3rem;
        margin-bottom: 15px;
    }

    .text--normal {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 15px;
    }

    .text__background {
        display: none;
    }

    .flex__content {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        padding: 30px 20px;
        z-index: 10;
        position: relative;
        background: transparent;
    }

    .flex__item--left {
        width: 100% !important;
        min-height: 50vh;
        height: auto;
        z-index: 3;
        position: relative;
        display: flex;
        align-items: center;
        order: 1;
        transform: none !important;
        opacity: 1 !important;
        overflow: visible;
    }

    .flex__item--right {
        display: none;
    }

    .pokemon__img {
        position: relative !important;
        width: 100% !important;
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
        object-fit: cover;
        z-index: 1;
        opacity: 1 !important;
        order: 2;
        display: block;
        margin: 0;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }

    /* Mobilde animasyonları basitleştir */
    .flex__container.animate--start .flex__item--left,
    .flex__container.animate--end .flex__item--left {
        transform: none !important;
        opacity: 1 !important;
    }

    .flex__container.animate--start .pokemon__img,
    .flex__container.animate--end .pokemon__img {
        transform: none !important;
        opacity: 1 !important;
    }

    .flex__container.animate--start .flex__content,
    .flex__container.animate--end .flex__content {
        transform: none !important;
        opacity: 1 !important;
    }

    .slider__navi {
        right: 10px;
        z-index: 20;
        top: auto;
        bottom: 20px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .text--big {
        font-size: 2em;
        line-height: 1.2;
    }

    .text--sub {
        font-size: 9px;
        letter-spacing: 0.2rem;
        margin-bottom: 15px;
    }

    .text--normal {
        font-size: 11px;
    }

    .text__background {
        font-size: 60px;
        left: 15px;
        bottom: -20px;
    }

    .flex__content {
        margin-left: 15px;
        width: 95%;
        padding: 15px;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    height: 500px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--secondary-color);
    opacity: 0.6;
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

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

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--white);
    overflow-x: hidden;
}

.products-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 3rem;
    margin-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.products-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.products-title-left {
    text-align: left;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.products-description-left {
    text-align: left;
    margin-bottom: 0;
    font-size: 0.95rem;
}


.products-slider-container {
    overflow: hidden;
    position: relative;
}

.products-slider-track {
    display: flex;
    transition: transform 0.35s ease-out;
    gap: 0.8rem;
    will-change: transform;
}

.products-slider-track .product-card-modern {
    min-width: calc(25% - 0.75rem);
    flex-shrink: 0;
    width: calc(25% - 0.75rem);
}

.products-slider-wrapper {
    position: relative;
    margin-bottom: 4rem;
    margin-left: 20px;
    padding: 0;
    overflow: visible;
}

.products-slider-container {
    overflow: hidden;
}

.products-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
    left: -50px;
    right: -50px;
}

.products-slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    position: relative;
}

.products-slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.products-slider-btn:active {
    transform: scale(0.95);
}

.products-slider-btn i {
    font-size: 1rem;
    font-weight: 600;
}

.products-slider-prev {
    left: 0;
    position: absolute;
}

.products-slider-next {
    right: 0;
    position: absolute;
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-header {
        text-align: center;
    }

    .products-title-left {
        text-align: center;
    }

    .products-description-left {
        text-align: center;
    }

    .products-slider-wrapper {
        padding: 0;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .products-slider-container {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .products-slider-nav {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 10px;
    }

    .products-slider-track .product-card-modern {
        min-width: calc(45% - 1rem);
        width: calc(45% - 1rem);
    }

    .products-slider-prev {
        left: 0;
    }

    .products-slider-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    /* Masaüstü yapısını mobilde tamamen gizle */
    .products-layout {
        display: none !important;
    }

    /* Mobil için yeni yapı */
    .products {
        padding: 4rem 0;
    }

    .products .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Mobil başlık */
    .products-mobile-header {
        text-align: center;
        width: 100%;
    }

    .products-mobile-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .products-mobile-header h2 .highlight {
        color: var(--primary-color);
    }

    .products-mobile-header p {
        color: var(--text-light);
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Mobil kartlar container */
    .products-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    /* Mobil kartlar */
    .products-mobile-cards .product-card-modern {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid var(--gray-200);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .products-mobile-cards .product-card-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .products-mobile-cards .product-card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .products-mobile-cards .product-card-content {
        padding: 1.5rem;
    }

    .products-mobile-cards .product-card-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

    .products-mobile-cards .product-card-content p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Mobilde sadece ilk 2 kartı göster */
    .products-mobile-cards .product-card-modern:nth-child(n+3) {
        display: none;
    }

    /* Mobil buton */
    .products-mobile-view-all {
        display: block !important;
        text-align: center;
        margin-top: 1rem;
        width: 100%;
        padding: 0 20px;
    }
}

/* Masaüstünde mobil yapıyı gizle */
@media (min-width: 769px) {
    .products-mobile-header {
        display: none !important;
    }

    .products-mobile-cards {
        display: none !important;
    }

    .products-mobile-view-all {
        display: none !important;
    }
}

.product-card-modern {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card-modern:hover {
    box-shadow: none;
}

.product-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

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

.product-card-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.product-card-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex: 1;
    font-size: 0.85rem;
}

.product-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: auto;
}

.product-card-link i {
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.product-card-modern:hover .product-card-link i {
    transform: translateX(3px);
}

.products-view-all {
    margin-top: 1.5rem;
}

.products-header .products-view-all {
    text-align: left;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

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

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

/* Sports Fields Section */
.sports-fields {
    padding: 6rem 0;
    background: var(--bg-light);
}

.sports-fields .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.fields-content {
    display: flex;
    justify-content: center;
}

.field-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.field-image {
    width: 100%;
    height: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gray-100);
}

.field-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.field-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.field-card p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials .section-title {
    text-align: center;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.testimonial-author span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-content-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item-minimal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item-minimal i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item-minimal strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item-minimal p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-social-media {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--gray-200);
}

.contact-social-media h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    background: var(--bg-light);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.2rem;
}

.contact-social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-social-link:hover i {
    transform: scale(1.2);
}

.contact-social-link:nth-child(1):hover {
    background: #1877F2;
    border-color: #1877F2;
}

.contact-social-link:nth-child(2):hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.contact-social-link:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.contact-social-link:nth-child(4):hover {
    background: #FF0000;
    border-color: #FF0000;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-email {
    display: flex;
    gap: 0.5rem;
}

.footer-email input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.footer-email input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-email input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-send {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-send:hover {
    background: var(--secondary-light);
}

.footer-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* CTA Bar */
/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.gallery-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-section .section-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.gallery-item::after {
    display: none;
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Gallery Slider */
.gallery-slider-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.gallery-slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.35s ease-out;
    gap: 0.5rem;
    will-change: transform;
}

.gallery-slider-item {
    flex: 0 0 calc(20% - 0.4rem);
    width: calc(20% - 0.4rem);
    min-width: calc(20% - 0.4rem);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-slider-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.gallery-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 60px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
    left: -30px;
    right: -30px;
}

/* Desktop: nav içindeki butonlar - Galeri için özel stil */
.gallery-slider-nav .gallery-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-slider-nav .gallery-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.gallery-slider-nav .gallery-slider-btn:active {
    transform: scale(1.05) translateY(0);
}

/* Mobil: wrapper içindeki direkt butonlar */
@media (max-width: 480px) {
    .gallery-slider-wrapper {
        padding: 0 10px;
        position: relative;
    }
    
    .gallery-slider-wrapper > .gallery-slider-btn {
        display: none !important;
    }
    
    .gallery-slider-nav {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(50% + 100px);
        left: 33px;
        right: -50px;
    }
}

/* Desktop ve tablet: wrapper içindeki butonları gizle */
@media (min-width: 481px) {
    .gallery-slider-wrapper {
        display: block;
        padding: 0 50px;
    }
    
    .gallery-slider-wrapper > .gallery-slider-btn {
        display: none !important;
    }
    
    .gallery-slider-nav {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(90% + 60px);
        left: 28px;
        right: 0;
        z-index: 20;
    }
}

/* Eski genel buton stili kaldırıldı - artık sadece özel stiller kullanılıyor */

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
    touch-action: none;
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: none;
}

.lightbox-content img {
    pointer-events: all;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: all;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10001;
    pointer-events: all;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

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

.cta-bar {
    background: url('assets/backs.jpg') center center / cover no-repeat;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.7);
    z-index: 0;
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-bar-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.cta-bar-button {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.map-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

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

/* Responsive Design */
@media (max-width: 968px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .gallery-slider-item {
        flex: 0 0 calc(33.333% - 0.4rem);
        width: calc(33.333% - 0.4rem);
        min-width: calc(33.333% - 0.4rem);
    }
    
    .gallery-slider-track {
        gap: 0.4rem;
    }
    
    .gallery-slider-wrapper {
        padding: 0 40px;
    }
    
    .gallery-slider-nav {
        width: calc(100% + 80px);
        left: -40px;
        right: -40px;
    }
    
    .gallery-slider-nav .gallery-slider-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
        z-index: 10001;
        pointer-events: all;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.75rem;
        z-index: 10001;
        pointer-events: all;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 0 !important;
        margin: 0 !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        text-align: left;
        z-index: 9999;
        overflow-y: auto;
    }

    /* Mobilde normal linkleri gizle */
    .nav-links > .nav-link {
        display: none;
    }

    .nav-links.active {
        left: 0;
        animation: slideInMenu 0.4s ease;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .mobile-menu-close {
        position: absolute;
        top: 0.25rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-dark);
        font-size: 1.2rem;
        z-index: 10;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-close:hover {
        color: var(--primary);
    }

    /* MOBİL İÇİN ÖZEL CSS - SADECE MOBİLDE GEÇERLİ */
    .mobile-menu-links {
        flex: 1;
        padding: 0.5rem 0 !important;
        overflow-y: auto;
        flex-direction: column !important;
        display: flex !important;
        width: 100%;
        gap: 0 !important;
        margin: 0 !important;
        min-height: 0;
    }

    .mobile-menu-links .nav-link {
       display: flex !important;
    padding: 0.6rem 1rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
    margin: 0 !important;
    min-height: auto !important;
    line-height: 1.4 !important;
    box-sizing: border-box;
    height: auto !important;
    flex-direction: row !important;
    }

    .mobile-menu-links .nav-link:hover {
        background: #F9FAFB;
        color: var(--primary);
    }

    .mobile-menu-links .nav-link.active {
        color: var(--primary);
        background: #EFF6FF;
    }

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

    .header-actions {
        margin-left: auto;
        margin-right: 0.5rem;
        gap: 0.5rem;
    }

    .language-switcher .lang-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .language-switcher .lang-link span {
        display: none;
    }

    .language-switcher .lang-link i {
        font-size: 0.85rem;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .nav-link-dropdown {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 0.5rem;
        margin-left: 0;
        padding: 0.5rem 0;
        display: none;
    }

    .nav-item-dropdown.active .nav-dropdown {
        display: block;
    }

    .nav-item-dropdown.active .nav-link-dropdown::after {
        transform: rotate(180deg);
    }

    .nav-dropdown-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-left: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid #F3F4F6;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: #F9FAFB;
        color: var(--primary);
    }

    .nav-link.active {
        color: var(--primary);
        background: #EFF6FF;
    }
    
    .nav-link-dropdown {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-links .nav-link {
        display: flex;
        align-items: center;
    }

    .btn-quote-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: 5px;
    }

    .mobile-menu-toggle:hover {
        background: var(--gray-100);
        transform: scale(1.1);
    }

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

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding: 1.5rem 1rem !important;
        border-top: 1px solid #E5E7EB !important;
        background: var(--white) !important;
        margin-top: auto !important;
        display: block !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    /* Mobilde mobil menü içeriğini dikey düzende göster */
    .nav-links .mobile-menu-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .mobile-menu-close {
        display: flex;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-footer {
        display: block;
    }

    .mobile-menu-buttons {
        display: none !important;
    }

    .mobile-menu-social {
        text-align: left;
        width: 100%;
    }

    .mobile-menu-social-title {
        display: block;
        font-size: 0.85rem;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
        font-weight: 500;
    }

    .mobile-menu-social-icons {
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
        align-items: center;
    }

    .mobile-social-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 50%;
        color: var(--text-dark);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 1px solid #E5E7EB;
    }

    .mobile-social-icon:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .logo-img {
        height: 28px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }



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

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

    .products-slider-wrapper {
        padding: 0 20px;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .products-slider-container {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .products-slider-nav {
        width: calc(100% + 40px);
        left: -20px;
        right: -20px;
    }

    .products-slider-track .product-card-modern {
        min-width: 100%;
    }

    .products-slider-prev {
        left: 0;
        width: 36px;
        height: 36px;
    }

    .products-slider-next {
        right: 0;
        width: 36px;
        height: 36px;
    }

    .product-card-image-wrapper {
        height: 280px;
    }

    .product-card-content {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.85)), url('../assets/slider-2.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/slider-2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header h1 .highlight {
    color: var(--secondary-color);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Page */
.products-page {
    padding: 5rem 0;
    background: var(--bg-light);
}

.products-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.products-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .products-grid-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-image-large {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-product-quote {
    margin-top: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-product-quote:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0;
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Slogan Section */
.slogan-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/futbol-kalesi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.slogan-background img {
    display: none;
}

.slogan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 26, 66, 0.85), rgba(9, 26, 66, 0.90));
    z-index: 1;
}

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

.slogan-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.slogan-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-slogan {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-slogan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--secondary-color);
    color: var(--white);
}

.btn-slogan i {
    transition: transform 0.3s ease;
}

.btn-slogan:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
}

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

/* About Page */
.about-page {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text-large h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text-large h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.about-text-large p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image-large {
    position: relative;
}

.about-image-large .image-wrapper {
    height: 500px;
}

/* Principles Section */
.principles-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 20px;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.principle-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.principle-item p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Quality & Values Section */
.quality-values-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.quality-content {
    margin-top: 2rem;
}

.quality-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.quality-content p:last-child {
    margin-bottom: 0;
}

/* Sports Fields Intro */
.sports-fields-intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    height: 300px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Sports Fields Types */
.sports-fields-types {
    padding: 4rem 0;
    background: var(--bg-light);
}

.field-type-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    align-items: center;
}

.field-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.field-type-card.field-left {
    direction: ltr;
}

.field-type-card.field-right {
    direction: rtl;
}

.field-type-card.field-right > * {
    direction: ltr;
}

.field-type-image {
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    height: 250px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.field-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.field-type-card:hover .field-type-image img {
    transform: scale(1.05);
}

.field-type-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.field-type-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.field-type-content > p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.field-features-minimal {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.field-features-minimal li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.field-features-minimal li i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    align-self: flex-start;
}

/* References Images */
.references-images {
    padding: 5rem 0;
    background: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

.reference-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.reference-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.reference-image-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.reference-item:hover .reference-image {
    transform: scale(1.1);
}

/* Testimonials Page */
.testimonials-page {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonials-grid-extended .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.testimonials-grid-extended .testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonials-grid-extended .testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
    background: var(--bg-light);
}

.working-hours {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.working-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.working-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.working-hours strong {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .cta-bar {
        padding: 2rem 0;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-bar-text h3 {
        font-size: 1.25rem;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-image-large {
        height: 400px;
        max-width: 100% !important;
    }
    
    .product-image-large img {
        height: 100%;
        object-fit: contain;
    }

    .about-page-content {
        grid-template-columns: 1fr;
    }

    .principles-section,
    .quality-values-section {
        padding: 2rem 0;
    }

    .principle-item {
        padding: 1.25rem;
    }

    .principle-item i {
        font-size: 1.25rem;
    }

    .principle-item p {
        font-size: 0.95rem;
    }

    .quality-content p {
        font-size: 0.95rem;
        text-align: left;
    }

    .references-images {
        padding: 3rem 0;
    }

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

    .reference-image-wrapper {
        height: 100px;
    }

    .contact-social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-content-minimal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item-minimal {
        padding: 1.25rem;
    }

    .slogan-section {
        padding: 4rem 0;
        min-height: 400px;
    }

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

    .slogan-text {
        font-size: 1.1rem;
    }

    .btn-slogan {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .field-type-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .field-type-card.field-right {
        direction: ltr;
    }

    .field-type-image {
        width: 100%;
        height: 200px;
    }

    .field-features-minimal {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-extended {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 95%;
    max-width: 900px;
    position: relative;
    animation: slideDown 0.3s;
    max-height: 96vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.quote-form {
    margin-top: 0;
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.quote-form::-webkit-scrollbar {
    width: 6px;
}

.quote-form::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.quote-form::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.quote-form::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form .form-group.full-width {
    grid-column: 1 / -1;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quote-form textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-content {
        width: 98%;
        margin: 1% auto;
        padding: 1.5rem;
        max-height: 98vh;
    }
}

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

    .gallery-slider-wrapper {
        padding: 0 50px;
        margin-top: 2rem;
        overflow: hidden;
        max-width: 100%;
        display: block;
    }
    
    .gallery-slider-container {
        overflow: hidden;
        max-width: 100%;
        position: relative;
        width: 100%;
    }
    
    .gallery-slider-track {
        gap: 0.4rem;
        display: flex;
        width: 100%;
    }
    
    .gallery-slider-item {
        min-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }
    
    .gallery-slider-wrapper > .gallery-slider-btn {
        display: none !important;
    }
    
    .gallery-slider-nav {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% + 100px);
        left: -50px;
        right: -50px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        margin: 1% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .product-item {
        padding: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.whatsapp-tooltip {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        max-width: 150px;
        white-space: normal;
        text-align: center;
    }

    .whatsapp-tooltip::after {
        right: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookies-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookies-text i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cookies-text p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookies-accept {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookies-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cookies-decline {
    background: transparent;
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--gray-300);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookies-decline:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookies-text {
        flex-direction: column;
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookies-accept,
    .btn-cookies-decline {
        flex: 1;
    }
}

/* Blog Content Styles */
.blog-content-html {
    color: #374151;
    line-height: 1.8;
    font-size: 1.125rem;
}

.blog-content-html p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content-html h1,
.blog-content-html h2,
.blog-content-html h3,
.blog-content-html h4,
.blog-content-html h5,
.blog-content-html h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.4;
}

.blog-content-html h1 {
    font-size: 2.5rem;
}

.blog-content-html h2 {
    font-size: 2rem;
}

.blog-content-html h3 {
    font-size: 1.75rem;
}

.blog-content-html h4 {
    font-size: 1.5rem;
}

.blog-content-html h5 {
    font-size: 1.25rem;
}

.blog-content-html h6 {
    font-size: 1.125rem;
}

.blog-content-html ul,
.blog-content-html ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content-html ul li,
.blog-content-html ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-content-html ul {
    list-style-type: disc;
}

.blog-content-html ol {
    list-style-type: decimal;
}

.blog-content-html a {
    color: #2563EB;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-content-html a:hover {
    color: #1E40AF;
}

.blog-content-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
}

.blog-content-html blockquote {
    border-left: 4px solid #2563EB;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #F9FAFB;
    border-radius: 4px;
    font-style: italic;
    color: #6B7280;
}

.blog-content-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.blog-content-html table th,
.blog-content-html table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.blog-content-html table th {
    background: #F9FAFB;
    font-weight: bold;
    color: #111827;
}

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

.blog-content-html strong,
.blog-content-html b {
    font-weight: bold;
    color: #111827;
}

.blog-content-html em,
.blog-content-html i {
    font-style: italic;
}

.blog-content-html u {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-content-html {
        font-size: 1rem;
    }
    
    .blog-content-html h1 {
        font-size: 2rem;
    }
    
    .blog-content-html h2 {
        font-size: 1.75rem;
    }
    
    .blog-content-html h3 {
        font-size: 1.5rem;
    }
    
    .blog-content-html table {
        font-size: 0.875rem;
    }
    
    .blog-content-html table th,
    .blog-content-html table td {
        padding: 0.5rem;
    }
}

/* Blog Layout Responsive */
@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .blog-sidebar {
        order: 2;
    }
    
    .blog-posts {
        order: 1;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 2rem 0 !important;
    }
    
    .blog-header {
        margin-bottom: 2rem !important;
    }
    
    .blog-header h1 {
        font-size: 2rem !important;
    }
    
    .blog-header p {
        font-size: 0.9rem !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .blog-card {
        margin-bottom: 0 !important;
    }
    
    .blog-detail-section {
        padding: 2rem 0 !important;
    }
    
    .blog-detail h1 {
        font-size: 1.75rem !important;
    }
    
    .blog-content {
        padding: 1.5rem !important;
    }
    
    .blog-content-html {
        font-size: 1rem !important;
    }
    
    .blog-widget {
        padding: 1rem !important;
    }
    
    .blog-widget h3 {
        font-size: 1.125rem !important;
    }
    
    .blog-widget ul li {
        margin-bottom: 0.5rem !important;
    }
    
    .blog-widget ul li a {
        padding: 0.4rem !important;
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 1.5rem 0 !important;
    }
    
    .blog-header {
        margin-bottom: 1.5rem !important;
    }
    
    .blog-header h1 {
        font-size: 1.75rem !important;
    }
    
    .blog-grid {
        gap: 1rem !important;
    }
    
    .blog-card {
        border-radius: 6px !important;
    }
    
    .blog-card > a > div:last-child {
        padding: 1rem !important;
    }
    
    .blog-card h2 {
        font-size: 1.125rem !important;
    }
    
    .blog-detail-section {
        padding: 1.5rem 0 !important;
    }
    
    .blog-detail-section .container {
        padding: 0 15px !important;
    }
    
    .blog-detail h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .blog-detail header > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .blog-content {
        padding: 1rem !important;
        border-radius: 6px !important;
    }
    
    .blog-content-html {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    .blog-content-html p {
        margin-bottom: 1rem !important;
    }
    
    .blog-content-html h1 {
        font-size: 1.75rem !important;
    }
    
    .blog-content-html h2 {
        font-size: 1.5rem !important;
    }
    
    .blog-content-html h3 {
        font-size: 1.25rem !important;
    }
    
    .blog-widget {
        padding: 0.875rem !important;
    }
    
    .blog-widget h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .blog-widget ul {
        padding-left: 1.5rem !important;
    }
    
    .blog-widget ul li a {
        padding: 0.35rem !important;
        font-size: 0.8rem !important;
    }
    
    .blog-detail nav {
        font-size: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .blog-detail nav a,
    .blog-detail nav span {
        margin: 0 0.25rem !important;
    }
    
    .blog-detail .share-buttons,
    .blog-detail > div:last-child {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }
    
    .blog-detail .share-buttons > span {
        width: 100% !important;
        text-align: center !important;
    }
    
    .blog-detail .share-buttons a {
        flex: 1 !important;
        text-align: center !important;
        padding: 0.6rem 1rem !important;
    }
    
    .blog-detail .related-posts {
        margin-top: 2rem !important;
    }
    
    .blog-detail .related-posts h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .blog-detail .related-posts > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}


