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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 96px;
    background: linear-gradient(180deg, #051520 0%, #082030 50%, #0a2540 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* ===============================================
   TOP BAR – MODERN SURF OKULU
   =============================================== */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 96px;
    background: linear-gradient(180deg, 
        rgba(5, 20, 35, 0.98) 0%, 
        rgba(8, 30, 50, 0.98) 30%, 
        rgba(12, 40, 65, 0.98) 65%, 
        rgba(15, 50, 75, 0.98) 100%);
    box-shadow: 0 8px 40px rgba(0, 150, 200, 0.15), 
                0 4px 20px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(0, 212, 255, 0.1);
    overflow: visible;
}

@media (max-width: 991.98px) {
    .top-bar {
        overflow: visible;
    }
}

/* Üst çizgi - Okyanus turkuaz dalga efekti */
.top-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 212, 255, 0.4) 15%,
        #00d4ff 30%,
        #40e0ff 50%,
        #00d4ff 70%,
        rgba(0, 212, 255, 0.4) 85%,
        rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 60px rgba(0, 212, 255, 0.6);
    animation: waveGlow 3s ease-in-out infinite;
    z-index: 200;
}

@keyframes waveGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 60px rgba(0, 212, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 1.2), 0 0 80px rgba(0, 212, 255, 0.8);
    }
}

/* Sol logo paneli - Okyanus gradyanı */
.logo-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 360px;
    background: linear-gradient(135deg, 
        rgba(5, 15, 25, 0.98) 0%, 
        rgba(8, 25, 40, 0.98) 25%, 
        rgba(10, 35, 55, 0.98) 50%, 
        rgba(12, 40, 60, 0.98) 75%, 
        rgba(15, 45, 65, 0.98) 100%);
    clip-path: polygon(0% 0%, 0% 100%, 85% 100%, 88% 90%, 90% 80%, 92% 70%, 94% 60%, 96% 50%, 98% 40%, 99% 30%, 100% 20%, 100% 0%);
    box-shadow: 4px 0 25px rgba(0, 150, 200, 0.2),
                inset -2px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.logo-panel * {
    pointer-events: auto;
}

/* Üstte şerit yok - resimde görünmüyor */

/* Dalga efekti - Okyanus teması */
.logo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.15) 50%, 
        transparent 100%);
    animation: waveFlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes waveFlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 25px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo-img {
    height: 105px;
    width: auto;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.5s ease;
    position: relative;
}

/* Logo hover - Okyanus parlaması */
.logo-link:hover .logo-img {
    transform: scale(1.1) rotate(1deg);
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 1))
            drop-shadow(0 0 50px rgba(0, 212, 255, 0.9))
            drop-shadow(0 0 80px rgba(0, 180, 220, 0.6));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 1))
                drop-shadow(0 0 50px rgba(0, 212, 255, 0.9))
                drop-shadow(0 0 80px rgba(0, 180, 220, 0.6));
    }
    50% {
        filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 1))
                drop-shadow(0 0 60px rgba(0, 212, 255, 1))
                drop-shadow(0 0 100px rgba(0, 180, 220, 0.8));
    }
}

.logo-link {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-link:hover {
    transform: translateX(4px) translateY(-2px);
}

/* Navbar genel */
.top-bar-nav {
    height: 100%;
    padding: 0;
    position: relative;
    z-index: 200;
}

/* Bootstrap navbar-dark override */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff !important;
}

.top-bar-inner {
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 0 370px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 202;
    gap: 12px;
    flex-wrap: nowrap;
}

.top-bar-inner > * {
    flex-shrink: 0;
}

.main-menu {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 200px);
}

/* Menü */
.navbar-collapse {
    z-index: 205 !important;
}

/* Mobilde Bootstrap collapse için - 1200px altında hamburger */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
    }
    
    /* Desktop'ta sosyal medya ikonlarını gizle */
    .mobile-social-icons {
        display: none !important;
    }
    
    /* Hamburger'ı gizle */
    .navbar-toggler {
        display: none !important;
    }
}

.main-menu {
    display: flex !important;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 203;
    flex: 0 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
}

.main-menu .nav-item,
.navbar-nav .nav-item {
    height: 100%;
    display: flex !important;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.navbar-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Menü linkleri - kesin görünürlük */
.main-menu .nav-link {
    padding: 0 8px !important;
    font-size: 12px !important;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: visible;
    max-width: none;
}

.navbar-nav .nav-link,
.top-bar-nav .nav-link,
.navbar .nav-link,
.top-bar .nav-link,
a.nav-link,
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    color: #ffffff !important;
    text-transform: none !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 1), 0 0 12px rgba(0, 0, 0, 0.8) !important;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                text-shadow 0.4s ease,
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                font-size 0.3s ease,
                padding 0.3s ease !important;
    overflow: visible !important;
    z-index: 204 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
}

/* Menü link hover - Okyanus dalga efekti */
.main-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00d4ff 50%, 
        transparent 100%);
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

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

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(0, 212, 255, 0) 0%,
        #00d4ff 50%,
        rgba(0, 212, 255, 0) 100%);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-menu .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 1px 15px rgba(0, 212, 255, 1), 
                 0 0 25px rgba(0, 212, 255, 0.7),
                 0 0 40px rgba(0, 180, 220, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.main-menu .nav-link:hover::after {
    opacity: 0.7;
    transform: translateY(0);
}

.main-menu .nav-link.active,
.navbar-nav .nav-link.active {
    color: #00d4ff !important;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 1), 
                 0 0 20px rgba(0, 212, 255, 0.8);
}

.main-menu .nav-link.active::after,
.navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* Sağ: Dil butonu - Okyanus Teması */
/* Auth Dropdown */
.auth-dropdown-wrapper {
    margin-right: 0;
    position: relative;
    z-index: 210;
    flex-shrink: 0;
}

.auth-btn-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, 
                rgba(8, 30, 50, 0.9) 0%, 
                rgba(12, 40, 65, 0.8) 50%, 
                rgba(8, 30, 50, 0.9) 100%);
    color: rgba(200, 240, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3),
                0 0 30px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(0, 212, 255, 0.2);
    cursor: pointer;
}

.auth-btn-dropdown i:first-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.auth-btn-dropdown i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.auth-btn-dropdown:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(0, 212, 255, 1);
    background: linear-gradient(135deg, 
                rgba(12, 40, 65, 0.95) 0%, 
                rgba(15, 50, 75, 0.9) 50%, 
                rgba(12, 40, 65, 0.95) 100%);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.6),
                0 0 50px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.auth-btn-dropdown:hover i:first-child {
    transform: scale(1.2) rotate(5deg);
}

.auth-btn-dropdown[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}

.auth-dropdown-menu {
    background: linear-gradient(135deg, 
                rgba(8, 30, 50, 0.98) 0%, 
                rgba(12, 40, 65, 0.95) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(0, 212, 255, 0.2);
    min-width: 200px;
}

.auth-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(200, 240, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
}

.auth-dropdown-menu .dropdown-item i {
    color: #00d4ff;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.auth-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, 
                rgba(0, 212, 255, 0.2) 0%, 
                rgba(0, 180, 220, 0.15) 100%);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.auth-dropdown-menu .dropdown-item:hover i {
    transform: scale(1.2);
}

/* Language Switcher - Bayrak ile */
.language-switcher {
    margin-left: 15px;
    position: relative;
    z-index: 210;
}

.lang-btn-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 50px;
    border: 2px solid rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, 
                rgba(8, 30, 50, 0.9) 0%, 
                rgba(12, 40, 65, 0.8) 50%, 
                rgba(8, 30, 50, 0.9) 100%);
    color: rgba(200, 240, 255, 0.95);
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3),
                0 0 30px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(0, 212, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 15px;
    line-height: 1;
    overflow: hidden;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-flag span {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

/* Lang Flag Image - SVG bayraklar için */
.lang-flag-img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lang-code {
    font-size: 10px;
    font-weight: 700;
}

.lang-btn-dropdown i {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.lang-btn-dropdown:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(0, 212, 255, 1);
    background: linear-gradient(135deg, 
                rgba(12, 40, 65, 0.95) 0%, 
                rgba(15, 50, 75, 0.9) 50%, 
                rgba(12, 40, 65, 0.95) 100%);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.6),
                0 0 50px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.lang-btn-dropdown[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    background: linear-gradient(135deg, 
                rgba(8, 30, 50, 0.98) 0%, 
                rgba(12, 40, 65, 0.95) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(0, 212, 255, 0.2);
    min-width: 180px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(200, 240, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.lang-option .lang-flag {
    width: 28px;
    height: 20px;
    flex-shrink: 0;
}

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

.lang-option .lang-flag-img {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-option .lang-name {
    flex: 1;
    font-weight: 500;
}

.lang-option i {
    color: #00d4ff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-option.active i {
    opacity: 1;
}

.lang-option:hover {
    background: linear-gradient(90deg, 
                rgba(0, 212, 255, 0.2) 0%, 
                rgba(0, 180, 220, 0.15) 100%);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.lang-option.active {
    background: linear-gradient(90deg, 
                rgba(0, 212, 255, 0.15) 0%, 
                rgba(0, 180, 220, 0.1) 100%);
    color: #00d4ff;
}

/* Hamburger - Okyanus Teması */
.navbar-toggler {
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    padding: 8px 12px;
    background: rgba(8, 30, 50, 0.8);
    transition: all 0.3s ease;
    position: relative;
    z-index: 301;
}

.navbar-toggler:hover {
    border-color: rgba(0, 212, 255, 0.8);
    background: rgba(12, 40, 65, 0.9);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,212,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Hamburger X'e dönüşme animasyonu */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,212,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.navbar-toggler[aria-expanded="true"] {
    border-color: rgba(0, 212, 255, 1);
    background: rgba(12, 40, 65, 1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

/* ===============================================
   RESPONSIVE - MASAÜSTÜ BREAKPOINT'LERİ
   Menü her zaman sığacak şekilde küçülür
   =============================================== */

/* 1500px - 1600px arası */
@media (min-width: 1500px) and (max-width: 1599.98px) {
    .logo-panel {
        width: 350px;
    }

    .logo-img {
        height: 100px;
    }

    .top-bar-inner {
        padding: 0 20px 0 360px;
        gap: 10px;
    }
    
    .main-menu {
        gap: 7px;
    }
    
    .main-menu .nav-link {
        padding: 0 8px !important;
        font-size: 12px !important;
    }

    .auth-btn-dropdown {
        padding: 6px 12px;
        font-size: 10px;
    }

    .lang-btn-dropdown {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* 1400px - 1499px arası */
@media (min-width: 1400px) and (max-width: 1499.98px) {
    .logo-panel {
        width: 340px;
    }

    .logo-img {
        height: 95px;
    }

    .top-bar-inner {
        padding: 0 18px 0 350px;
        gap: 8px;
    }
    
    .main-menu {
        gap: 5px;
    }
    
    .main-menu .nav-link {
        padding: 0 7px !important;
        font-size: 11px !important;
    }

    .auth-btn-dropdown {
        padding: 6px 10px;
        font-size: 9px;
    }

    .auth-btn-dropdown span {
        font-size: 9px;
    }

    .lang-btn-dropdown {
        padding: 6px 10px;
        font-size: 9px;
    }

    .lang-code {
        font-size: 9px;
    }
}

/* 1300px - 1399px arası */
@media (max-width: 1399.98px) {
    .logo-panel {
        width: 320px;
    }

    .logo-img {
        height: 90px;
    }

    .top-bar-inner {
        padding: 0 15px 0 335px;
        gap: 8px;
    }
    
    .main-menu {
        gap: 5px;
    }
    
    .main-menu .nav-link {
        padding: 0 6px !important;
        font-size: 11px !important;
    }
    
    .auth-btn-dropdown {
        padding: 5px 8px;
        font-size: 9px;
    }

    .auth-btn-dropdown span {
        display: none;
    }

    .auth-btn-dropdown i:first-child {
        font-size: 10px;
    }
    
    .lang-btn-dropdown {
        padding: 5px 8px;
        font-size: 9px;
    }

    .lang-code {
        display: none;
    }
    
    .language-switcher {
        margin-left: 0;
    }
}

/* 1200px - 1299px arası */
@media (max-width: 1299.98px) {
    .logo-panel {
        width: 300px;
    }

    .logo-img {
        height: 85px;
    }

    .top-bar-inner {
        padding: 0 12px 0 315px;
        gap: 6px;
    }
    
    .main-menu {
        gap: 4px;
    }
    
    .main-menu .nav-link {
        padding: 0 5px !important;
        font-size: 10px !important;
    }
    
    .auth-btn-dropdown {
        padding: 4px 6px;
        font-size: 8px;
    }

    .auth-btn-dropdown span {
        display: none;
    }

    .auth-btn-dropdown i:first-child {
        font-size: 9px;
    }
    
    .lang-btn-dropdown {
        padding: 4px 6px;
        font-size: 8px;
    }

    .lang-code {
        display: none;
    }

    .lang-flag {
        width: 14px;
        height: 10px;
    }
    
    .lang-flag-img {
        width: 18px;
        height: 13px;
    }
    
    .language-switcher {
        margin-left: 0;
    }
}

/* 1200px altı - MOBİL - Hamburger menü aktif */
@media (max-width: 1199.98px) {
    body {
        padding-top: 70px;
    }
    
    .top-bar {
        height: 70px;
    }
    
    .logo-panel {
        width: 200px;
    height: 100%;
    }

    .logo-link {
        padding: 0 10px;
    }

    .logo-img {
        height: 65px;
    }

    .top-bar-inner {
        padding: 0 15px 0 210px;
    display: flex;
    align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .main-menu {
        display: none !important;
    }

    .auth-dropdown-wrapper,
    .language-switcher {
        display: none;
    }

    /* Hamburger butonu - Sağda */
    .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10001;
    }

    /* ============================================
       MOBİL MENÜ - SÖRF OKULU TEMASI
       Okyanus mavisi, turkuaz, aqua tonları
       ============================================ */
    
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        width: 300px;
        max-width: 85vw;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, 
            rgba(8, 32, 50, 0.98) 0%,
            rgba(12, 45, 65, 0.98) 50%,
            rgba(15, 55, 80, 0.98) 100%);
        margin: 0;
        padding: 0;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        border-right: 2px solid rgba(0, 212, 255, 0.3);
        box-shadow: 5px 0 40px rgba(0, 150, 200, 0.2),
                    inset -1px 0 0 rgba(0, 212, 255, 0.1);
    }

    .navbar-collapse.show {
        display: flex !important;
        transform: translateX(0);
    }

    .navbar-collapse:not(.show) {
        display: flex !important;
        transform: translateX(-100%);
    }

    /* Body overlay - Okyanus tonu */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 25, 40, 0.6);
        z-index: 9998;
    }

    /* ============================================
       MENÜ ÖĞELERİ - AÇIK TONLAR
       ============================================ */
    
    .main-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 20px 0 10px 0;
        flex: 0 0 auto;
        order: 1;
        width: 100%;
    }

    .navbar-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .main-menu .nav-item {
        height: auto;
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    }

    .main-menu .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: auto !important;
        padding: 22px 25px !important;
        margin: 0 !important;
        font-size: 20px !important;
        font-weight: 400 !important;
        color: rgba(200, 240, 255, 0.95) !important;
        background: transparent !important;
        border: none !important;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3) !important;
        letter-spacing: 0.5px;
        transition: all 0.25s ease;
    }

    .main-menu .nav-link::before,
    .main-menu .nav-link::after {
        display: none !important;
    }

    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus {
        background: linear-gradient(90deg, 
            rgba(0, 212, 255, 0.15) 0%,
            rgba(0, 180, 220, 0.08) 100%) !important;
        color: #00d4ff !important;
        text-shadow: 0 0 25px rgba(0, 212, 255, 0.5) !important;
        padding-left: 30px !important;
    }

    .main-menu .nav-link.active {
        background: linear-gradient(90deg, 
            rgba(0, 212, 255, 0.2) 0%,
            rgba(0, 180, 220, 0.1) 100%) !important;
        color: #00d4ff !important;
        font-weight: 500 !important;
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.6) !important;
    }

    /* ============================================
       ALT KISIM - TURKUAZ TONLARI
       ============================================ */
    
    .auth-dropdown-wrapper {
        margin: 20px 25px 15px 25px;
        order: 2;
        width: calc(100% - 50px);
        display: block !important;
    }

    .auth-btn-dropdown {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        justify-content: center;
    }

    .auth-btn-dropdown span {
        display: inline !important;
    }

    .auth-dropdown-menu {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 8px;
        position: static !important;
        transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(0, 212, 255, 0.15);
    }

    .language-switcher {
        margin: 15px 25px 20px 25px;
        display: flex !important;
        justify-content: flex-start;
        order: 3;
        width: calc(100% - 50px);
    }

    .lang-btn-dropdown {
        width: 100%;
        padding: 12px 20px;
        justify-content: flex-start;
    }

    .lang-code {
        display: inline !important;
    }

    .lang-dropdown-menu {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 8px;
        position: static !important;
        transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(0, 212, 255, 0.15);
    }

    /* Sosyal Medya İkonları - Okyanus teması */
    .mobile-social-icons {
        display: flex;
        justify-content: flex-start;
        gap: 14px;
        padding: 25px;
        margin-top: auto;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        background: rgba(0, 100, 150, 0.1);
        order: 4;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    display: flex;
    align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(0, 212, 255, 0.08);
        border: 2px solid rgba(0, 212, 255, 0.25);
        color: rgba(0, 212, 255, 0.8);
        font-size: 18px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .social-icon:hover {
        background: rgba(0, 212, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.6);
        color: #00d4ff;
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 64px;
    }

    .top-bar {
        height: 64px;
    }

    .logo-panel {
        width: 160px;
        height: 100%;
    }

    .logo-link {
        padding: 0 8px;
    }

    .logo-img {
        height: 60px;
    }
    
    .top-bar-inner {
        padding: 0 12px 0 170px;
    }

    /* Hamburger butonu - küçük ekranlar */
    .navbar-toggler {
        right: 15px;
    }

    /* Mobil menü - küçük ekranlar için */
    .navbar-collapse {
        top: 64px;
        height: calc(100vh - 64px);
        width: 280px;
    }

    body.menu-open::before {
        top: 64px;
    }

    .main-menu {
        padding: 20px 0;
    }

    .main-menu .nav-link {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }

.language-switcher {
        margin: 0 24px 18px;
    }

    .mobile-social-icons {
        padding: 18px 24px;
    }

    .lang-btn-dropdown {
        padding: 9px 16px;
        font-size: 12px;
    }
}

/* 1600px ve üzeri - Büyük ekranlar */
@media (min-width: 1600px) {
    body {
        padding-top: 96px;
    }

    .top-bar {
        height: 96px;
    }

    .logo-panel {
        width: 360px;
        height: 100%;
    }

    .logo-link {
        padding: 0 25px;
    }

    .logo-img {
        height: 105px;
    }

    .top-bar-inner {
        padding: 0 25px 0 370px;
        gap: 12px;
    }

    .main-menu {
        gap: 10px;
    }

    .main-menu .nav-link {
        padding: 0 10px !important;
        font-size: 13px;
    }

    .auth-btn-dropdown {
        padding: 7px 14px;
        font-size: 11px;
    }

    .lang-btn-dropdown {
        padding: 7px 14px;
        font-size: 11px;
    }
}

/* ===============================================
   HERO BANNER SECTION - RESİMDEKİ GİBİ
   Tam ekran arka plan görseli ile
   =============================================== */

.hero-banner-section {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0; /* Header fixed olduğu için margin yok */
    overflow: hidden;
    z-index: 1;
}

/* Arka plan görseli */
.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Arka plan üstüne hafif overlay - görünürlük için */
.hero-banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Parlayan yıldız noktaları */
.hero-banner-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%,
        rgba(100, 200, 255, 0.8) 30%,
        transparent 70%);
    border-radius: 50%;
    animation: heroStarTwinkle 2s ease-in-out infinite;
}

.hero-star::before,
.hero-star::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.hero-star::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-star::after {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Yıldız pozisyonları */
.hero-star-1 { top: 15%; right: 35%; animation-delay: 0s; }
.hero-star-2 { top: 20%; right: 25%; animation-delay: 0.4s; }
.hero-star-3 { top: 12%; right: 15%; animation-delay: 0.8s; }
.hero-star-4 { top: 25%; right: 8%; animation-delay: 1.2s; }
.hero-star-5 { top: 18%; right: 45%; animation-delay: 1.6s; }

@keyframes heroStarTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* İçerik - Sağ tarafta konumlandırılmış */
.hero-banner-content {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
}

/* Başlık - MICRO KITESURF - H1 (SEO için) */
.hero-banner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 6px;
    margin: 0 0 15px 0;
    line-height: 1;
    color: #0077a8;
    text-transform: uppercase;
    text-shadow: 
        -1px -1px 0 rgba(255, 255, 255, 0.5),
        1px -1px 0 rgba(255, 255, 255, 0.5),
        -1px 1px 0 rgba(255, 255, 255, 0.5),
        1px 1px 0 rgba(255, 255, 255, 0.5),
        0 0 20px rgba(0, 150, 200, 0.8),
        0 0 40px rgba(0, 150, 200, 0.5),
        3px 3px 6px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 2px rgba(0, 100, 150, 0.3);
}

/* Tagline - El yazısı italik - Koyu gölgeli */
.hero-banner-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 30px 0;
    line-height: 1.3;
    text-shadow: 
        -1px -1px 0 rgba(255, 255, 255, 0.8),
        1px -1px 0 rgba(255, 255, 255, 0.8),
        -1px 1px 0 rgba(255, 255, 255, 0.8),
        1px 1px 0 rgba(255, 255, 255, 0.8),
        2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* CTA Button - Sörf temalı dalgalı buton */
.hero-banner-cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg,
        #0891b2 0%,
        #06b6d4 30%,
        #22d3ee 50%,
        #06b6d4 70%,
        #0891b2 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 30px 60px 30px 60px;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(6, 182, 212, 0.5),
        0 0 30px rgba(34, 211, 238, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    animation: waveButtonGradient 3s ease-in-out infinite;
}

/* Dalga gradient animasyonu */
@keyframes waveButtonGradient {
    0%, 100% {
        background-position: 0% 50%;
        border-radius: 30px 60px 30px 60px;
    }
    50% {
        background-position: 100% 50%;
        border-radius: 60px 30px 60px 30px;
    }
}

/* Dalga efekti - içeride */
.hero-banner-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 60%);
    animation: waveButtonShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveButtonShine {
    0%, 100% {
        transform: translateX(-30%) translateY(-30%) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(30%) translateY(30%) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-banner-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg,
        #06b6d4 0%,
        #22d3ee 30%,
        #67e8f9 50%,
        #22d3ee 70%,
        #06b6d4 100%);
    box-shadow: 
        0 8px 30px rgba(6, 182, 212, 0.6),
        0 0 50px rgba(34, 211, 238, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-banner-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* ===============================================
   FEATURES STRIP SECTION - MODERN KOYU ŞERİT
   Intro ve Services arası modern özellikler şeridi
   =============================================== */

.features-strip-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #0a2540; /* Koyu lacivert */
    overflow: hidden;
    z-index: 2;
}

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

.features-strip-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

/* Tek Feature Item - Box yok, düz */
.feature-strip-item {
    text-align: center;
    padding: 40px 30px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

/* Icon Wrapper */
.feature-strip-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Icon */
.feature-strip-icon {
    font-size: 48px;
    color: #64f0ff; /* Açık mavi/cyan */
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(100, 240, 255, 0.4));
}

/* Icon Glow - Minimal */
.feature-strip-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        rgba(100, 240, 255, 0.2) 0%,
        rgba(100, 240, 255, 0.1) 40%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Başlık */
.feature-strip-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Metin */
.feature-strip-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   RESPONSIVE - FEATURES STRIP
   =============================================== */

@media (max-width: 1199.98px) {
    .features-strip-section {
        padding: 60px 0;
    }

    .features-strip-container {
        padding: 0 30px;
    }

    .features-strip-wrapper {
        gap: 40px;
    }

    .feature-strip-item {
        padding: 35px 25px;
    }

    .feature-strip-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .feature-strip-icon {
        font-size: 42px;
    }

    .feature-strip-title {
        font-size: 22px;
    }

    .feature-strip-text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .features-strip-section {
        padding: 50px 0;
    }

    .features-strip-container {
        padding: 0 25px;
    }

    .features-strip-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-strip-item {
        padding: 35px 30px;
    }

    .feature-strip-icon-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }

    .feature-strip-icon {
        font-size: 40px;
    }

    .feature-strip-title {
        font-size: 20px;
    }

    .feature-strip-text {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .features-strip-section {
        padding: 40px 0;
    }

    .features-strip-container {
        padding: 0 20px;
    }

    .features-strip-wrapper {
        gap: 25px;
    }

    .feature-strip-item {
        padding: 30px 25px;
    }

    .feature-strip-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 18px;
    }

    .feature-strip-icon {
        font-size: 36px;
    }

    .feature-strip-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-strip-text {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .features-strip-section {
        padding: 35px 0;
    }

    .features-strip-container {
        padding: 0 15px;
    }

    .features-strip-wrapper {
        gap: 20px;
    }

    .feature-strip-item {
        padding: 25px 20px;
    }

    .feature-strip-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .feature-strip-icon {
        font-size: 32px;
    }

    .feature-strip-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-strip-text {
    font-size: 12px;
        line-height: 1.6;
    }
}

/* ===============================================
   INTRO CONTENT SECTION - İKİ AYRI MODERN BOX
   SEO Uyumlu, Benzersiz ID'ler ile admin panel entegrasyonu
   =============================================== */

.intro-content-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg,
        #f8fafc 0%,
        #f1f5f9 50%,
        #e2e8f0 100%);
    padding: 80px 0;
    overflow: hidden;
    z-index: 2;
}

.intro-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.intro-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ===============================================
   INTRO CONTENT SECTION - İKİ AYRI MODERN BOX
   SEO Uyumlu, Benzersiz ID'ler ile admin panel entegrasyonu
   =============================================== */

.intro-content-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg,
        #f8fafc 0%,
        #f1f5f9 50%,
        #e2e8f0 100%);
    padding: 70px 0;
    z-index: 2;
    overflow: hidden;
}

/* Okyanus dalga efekti arka plan */
.intro-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.05) 0%,
        transparent 100%);
    pointer-events: none;
}

.intro-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Ana Başlık - H2 (SEO için) */
#intro-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #005580;
    margin: 0 0 45px 0;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 85, 128, 0.1);
}

/* İki Box Wrapper */
.intro-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

/* Tek Box Stili */
.intro-box {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 
        0 8px 30px rgba(0, 85, 128, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Box hover efekti */
.intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.03) 0%,
        rgba(0, 150, 200, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.intro-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 85, 128, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 80px rgba(0, 212, 255, 0.1);
}

.intro-box:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.intro-box-icon-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.intro-box-icon {
    font-size: 36px;
    color: #00d4ff;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.intro-box:hover .intro-box-icon {
    transform: scale(1.15) rotate(5deg);
    color: #0891b2;
    filter: drop-shadow(0 6px 12px rgba(0, 212, 255, 0.5));
}

/* Icon Glow Efekti */
.intro-box-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
        height: 90px;
    background: radial-gradient(circle,
        rgba(0, 212, 255, 0.2) 0%,
        rgba(0, 212, 255, 0.1) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Box Başlık */
.intro-box-title {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #005580;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Box Ayırıcı */
.intro-box-separator {
    width: 60px;
    height: 2.5px;
    background: linear-gradient(90deg,
        transparent 0%,
        #00d4ff 20%,
        #0891b2 50%,
        #00d4ff 80%,
        transparent 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

/* Box Metin */
.intro-box-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 25px 0;
    text-align: center;
    flex-grow: 1;
}

/* Box Buton */
.intro-box-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg,
        #0891b2 0%,
        #06b6d4 50%,
        #22d3ee 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 18px rgba(8, 145, 178, 0.3),
        0 0 25px rgba(34, 211, 238, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: boxButtonGradient 4s ease-in-out infinite;
}

.intro-box-button-text {
    position: relative;
    z-index: 2;
}

.intro-box-button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Buton gradient animasyonu */
@keyframes boxButtonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Buton hover efekti */
.intro-box-button::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;
    z-index: 1;
}

.intro-box:hover .intro-box-button {
    background: linear-gradient(135deg,
        #06b6d4 0%,
        #22d3ee 50%,
        #67e8f9 100%);
    box-shadow: 
        0 10px 30px rgba(8, 145, 178, 0.4),
        0 0 50px rgba(34, 211, 238, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.intro-box:hover .intro-box-button::before {
    left: 100%;
}

.intro-box:hover .intro-box-button-icon {
    transform: translateX(5px);
}

/* Sol Box - Özel Renk */
.intro-box-left {
    border-top: 4px solid #00d4ff;
}

.intro-box-left .intro-box-icon {
    color: #00d4ff;
}

/* Sağ Box - Özel Renk */
.intro-box-right {
    border-top: 4px solid #0891b2;
}

.intro-box-right .intro-box-icon {
    color: #0891b2;
}

/* ===============================================
   RESPONSIVE - INTRO SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .intro-content-section {
        padding: 60px 0;
    }

    .intro-content-container {
        padding: 0 30px;
    }

    #intro-title {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 35px;
    }

    .intro-boxes-wrapper {
        gap: 25px;
        max-width: 900px;
    }

    .intro-box {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .intro-box-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .intro-box-icon {
        font-size: 32px;
    }

    .intro-box-title {
        font-size: 22px;
    }

    .intro-box-text {
        font-size: 13px;
        flex-grow: 1;
    }
}

@media (max-width: 991.98px) {
    .intro-content-section {
        padding: 50px 0;
    }

    .intro-content-container {
        padding: 0 25px;
    }

    #intro-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .intro-boxes-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 550px;
        margin: 0 auto;
    }

    .intro-box {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
    }

    .intro-box-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .intro-box-icon {
        font-size: 30px;
    }

    .intro-box-title {
        font-size: 20px;
    }

    .intro-box-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .intro-content-section {
        padding: 60px 0;
    }

    .intro-content-container {
        padding: 0 20px;
    }

    #intro-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 35px;
    }

    .intro-boxes-wrapper {
        gap: 25px;
    }

    .intro-box {
        padding: 35px 25px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .intro-box-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .intro-box-icon {
        font-size: 36px;
    }

    .intro-box-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .intro-box-separator {
        width: 60px;
        height: 2.5px;
        margin-bottom: 25px;
    }

    .intro-box-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .intro-box-button {
        padding: 14px 25px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .intro-content-section {
        padding: 50px 0;
    }

    .intro-content-container {
        padding: 0 15px;
    }

    #intro-title {
        font-size: 26px;
        letter-spacing: 0.5px;
        margin-bottom: 30px;
    }

    .intro-box {
        padding: 30px 20px;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
    }

    .intro-box-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .intro-box-icon {
        font-size: 32px;
    }

    .intro-box-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .intro-box-separator {
        width: 50px;
        height: 2px;
        margin-bottom: 20px;
    }

    .intro-box-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .intro-box-button {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }
}

/* ===============================================
   FEATURES STRIP SECTION - MODERN KOYU ŞERİT
   Intro ve Services arası modern özellikler şeridi
   =============================================== */

.features-strip-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #0a2540; /* Koyu lacivert */
    overflow: hidden;
    z-index: 2;
}

/* Üst ve alt glow efekti */
.features-strip-section::before {
    content: '';
        position: absolute;
    top: 0;
        left: 0;
        right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.6) 20%,
        #00d4ff 50%,
        rgba(0, 212, 255, 0.6) 80%,
        transparent 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: stripGlow 3s ease-in-out infinite;
    z-index: 1;
}

.features-strip-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.6) 20%,
        #00d4ff 50%,
        rgba(0, 212, 255, 0.6) 80%,
        transparent 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: stripGlow 3s ease-in-out infinite 1.5s;
    z-index: 1;
}

@keyframes stripGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 50px rgba(0, 212, 255, 1);
    }
}

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

.features-strip-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

/* Tek Feature Item - Box yok, düz */
.feature-strip-item {
    text-align: center;
    padding: 40px 30px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

/* Icon Wrapper */
.feature-strip-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Icon */
.feature-strip-icon {
    font-size: 48px;
    color: #64f0ff; /* Açık mavi/cyan */
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(100, 240, 255, 0.4));
}

/* Icon Glow - Minimal */
.feature-strip-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        rgba(100, 240, 255, 0.2) 0%,
        rgba(100, 240, 255, 0.1) 40%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Başlık */
.feature-strip-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Metin */
.feature-strip-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   RESPONSIVE - FEATURES STRIP
   =============================================== */

@media (max-width: 1199.98px) {
    .features-strip-section {
        padding: 60px 0;
    }

    .features-strip-container {
        padding: 0 30px;
    }

    .features-strip-wrapper {
        gap: 40px;
    }

    .feature-strip-item {
        padding: 35px 25px;
    }

    .feature-strip-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .feature-strip-icon {
        font-size: 42px;
    }

    .feature-strip-title {
        font-size: 22px;
    }

    .feature-strip-text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .features-strip-section {
        padding: 50px 0;
    }

    .features-strip-container {
        padding: 0 25px;
    }

    .features-strip-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-strip-item {
        padding: 35px 30px;
    }

    .feature-strip-icon-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }

    .feature-strip-icon {
        font-size: 40px;
    }

    .feature-strip-title {
        font-size: 20px;
    }

    .feature-strip-text {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .features-strip-section {
        padding: 40px 0;
    }

    .features-strip-container {
        padding: 0 20px;
    }

    .features-strip-wrapper {
        gap: 25px;
    }

    .feature-strip-item {
        padding: 30px 25px;
    }

    .feature-strip-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 18px;
    }

    .feature-strip-icon {
        font-size: 36px;
    }

    .feature-strip-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-strip-text {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .features-strip-section {
        padding: 35px 0;
    }

    .features-strip-container {
        padding: 0 15px;
    }

    .features-strip-wrapper {
        gap: 20px;
    }

    .feature-strip-item {
        padding: 25px 20px;
    }

    .feature-strip-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .feature-strip-icon {
        font-size: 32px;
    }

    .feature-strip-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-strip-text {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ===============================================
   SERVICES SECTION - MODERN SÖRF TEMALI
   Yarı saydam kartlar, dairesel görseller, arka plan
   =============================================== */

.services-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    padding: 100px 0;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(180deg,
        #0c4a6e 0%,
        #075985 10%,
        #0369a1 20%,
        #0284c7 30%,
        #0ea5e9 40%,
        #38bdf8 50%,
        #7dd3fc 60%,
        #bae6fd 70%,
        #e0f2fe 80%,
        #f0f9ff 90%,
        #ffffff 100%);
}

/* Sörf/Dalga Animasyonu - Gerçekçi ve Modern */
.services-wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300%;
    height: 250px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.4) 10%,
        rgba(255, 255, 255, 0.6) 20%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0.6) 80%,
        rgba(255, 255, 255, 0.4) 90%,
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    animation: waveMove 12s ease-in-out infinite;
    filter: blur(2px);
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.8;
    height: 200px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.45) 15%,
        rgba(255, 255, 255, 0.65) 30%,
        rgba(255, 255, 255, 0.55) 45%,
        rgba(255, 255, 255, 0.4) 60%,
        rgba(255, 255, 255, 0.3) 75%,
        rgba(255, 255, 255, 0.25) 100%);
    transform-origin: center bottom;
    filter: blur(1.5px);
}

.wave-2 {
    animation-delay: -4s;
    opacity: 0.7;
    height: 250px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.35) 20%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.45) 60%,
        rgba(255, 255, 255, 0.35) 80%,
        rgba(255, 255, 255, 0.2) 100%);
    transform-origin: center bottom;
    filter: blur(2px);
}

.wave-3 {
    animation-delay: -8s;
    opacity: 0.6;
    height: 220px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.4) 75%,
        rgba(255, 255, 255, 0.25) 100%);
    transform-origin: center bottom;
    filter: blur(2.5px);
}

@keyframes waveMove {
    0% {
        transform: translateX(-66.66%) translateY(0) scaleY(1);
    }
    25% {
        transform: translateX(-50%) translateY(-15px) scaleY(1.05);
    }
    50% {
        transform: translateX(-33.33%) translateY(-25px) scaleY(1.1);
    }
    75% {
        transform: translateX(-50%) translateY(-15px) scaleY(1.05);
    }
    100% {
        transform: translateX(-66.66%) translateY(0) scaleY(1);
    }
}

/* Ekstra dalga efektleri - Köpük ve parıltı */
.services-wave-animation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 200px at 20% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 600px 150px at 80% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 250px at 50% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    animation: waveGlow 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.services-wave-animation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.3) 100%);
    animation: waveFoam 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* Sörf Gölgesi Animasyonu */
.surf-shadow-animation {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.surf-shadow-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 120px;
    height: 8px;
    background: radial-gradient(ellipse,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    animation: surfShadowMove 8s ease-in-out infinite;
    filter: blur(8px);
}

.surf-shadow-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 80px;
    height: 5px;
    background: radial-gradient(ellipse,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    animation: surfShadowMove 8s ease-in-out infinite 0.5s;
    filter: blur(6px);
}

@keyframes surfShadowMove {
    0% {
        left: 20%;
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        opacity: 0.3;
    }
    25% {
        left: 35%;
        transform: translate(-50%, -50%) rotate(-10deg) scale(1.1);
        opacity: 0.4;
    }
    50% {
        left: 50%;
        transform: translate(-50%, -50%) rotate(-5deg) scale(1.2);
        opacity: 0.5;
    }
    75% {
        left: 65%;
        transform: translate(-50%, -50%) rotate(-10deg) scale(1.1);
        opacity: 0.4;
    }
    100% {
        left: 80%;
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes waveGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05) translateY(-10px);
    }
}

@keyframes waveFoam {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-5px);
        opacity: 0.5;
    }
}

/* Arka Plan Overlay - Üstte koyu, altta açık */
.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.03) 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Container */
.services-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 3;
}

/* Kartlar Wrapper */
.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

/* Tek Kart */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    text-align: center;
}

/* Kart hover efekti */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(8, 145, 178, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 100px rgba(0, 212, 255, 0.15);
}

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

/* Kart Başlık */
.service-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #005580;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Dairesel Görsel Wrapper */
.service-card-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgba(255, 255, 255, 0.8),
        0 0 0 8px rgba(0, 212, 255, 0.3);
    transition: all 0.5s ease;
    z-index: 2;
}

.service-card:hover .service-card-image-wrapper {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 5px rgba(255, 255, 255, 0.9),
        0 0 0 8px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3);
}

/* Dairesel Görsel */
.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

/* Görsel Overlay */
.service-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(8, 145, 178, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-card-image-overlay {
    opacity: 1;
}

/* Kart Metin */
.service-card-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 2;
}

/* Kart Butonu */
.service-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg,
        #0891b2 0%,
        #06b6d4 50%,
        #22d3ee 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(8, 145, 178, 0.3),
        0 0 30px rgba(34, 211, 238, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: cardButtonGradient 4s ease-in-out infinite;
    z-index: 2;
}

.service-card-button-text {
    position: relative;
    z-index: 2;
}

.service-card-button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    font-size: 14px;
}

/* Kart buton gradient animasyonu */
@keyframes cardButtonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Kart buton hover efekti */
.service-card-button::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;
    z-index: 1;
}

.service-card:hover .service-card-button {
    background: linear-gradient(135deg,
        #06b6d4 0%,
        #22d3ee 50%,
        #67e8f9 100%);
    box-shadow: 
        0 8px 30px rgba(8, 145, 178, 0.4),
        0 0 50px rgba(34, 211, 238, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-card:hover .service-card-button::before {
    left: 100%;
}

.service-card:hover .service-card-button-icon {
    transform: translateX(5px);
}

.service-card-button:active {
    transform: translateY(0);
}

/* CTA Buton Wrapper - KALDIRILDI */
/* Alt buton kaldırıldı - Her kartın kendi butonu var */

/* ===============================================
   RESPONSIVE - SERVICES SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .services-section {
        padding: 80px 0;
        min-height: 600px;
    }

    .services-container {
        padding: 0 30px;
    }

    .services-cards-wrapper {
        gap: 30px;
        margin-bottom: 0;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-card-title {
        font-size: 28px;
    }

    .service-card-image-wrapper {
        width: 200px;
        height: 200px;
        margin-bottom: 25px;
    }

    .service-card-text {
        font-size: 15px;
    }

    .service-card-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 70px 0;
        min-height: auto;
    }

    .services-container {
        padding: 0 25px;
    }

    .services-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-card-title {
        font-size: 26px;
    }

    .service-card-image-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
    }

    .service-card-text {
        font-size: 15px;
    }

    .service-card-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-cards-wrapper {
        gap: 25px;
        margin-bottom: 0;
    }

    .service-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .service-card-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .service-card-image-wrapper {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .service-card-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-card-button {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 50px 0;
    }

    .services-container {
        padding: 0 15px;
    }

    .services-cards-wrapper {
        gap: 20px;
        margin-bottom: 0;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .service-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .service-card-image-wrapper {
        width: 140px;
        height: 140px;
        margin-bottom: 18px;
    }

    .service-card-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-card-button {
        padding: 10px 20px;
        font-size: 12px;
        gap: 8px;
    }
}

/* Responsive - Hero Banner */
@media (max-width: 1199.98px) {
    .hero-banner-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .hero-banner-tagline {
        font-size: 28px;
    }

    .hero-banner-content {
        right: 8%;
    }
}

@media (max-width: 991.98px) {
    .hero-banner-section {
        height: 400px;
    }

    .hero-banner-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .hero-banner-tagline {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .hero-banner-cta-button {
        padding: 12px 35px;
        font-size: 15px;
    }

    .hero-banner-content {
        right: 5%;
    }

    /* Yıldızları gizle mobilde */
    .hero-banner-stars {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-banner-section {
        height: 350px;
    }

    .hero-banner-content {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
    }

    .hero-banner-title {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .hero-banner-tagline {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero-banner-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner-section {
        height: 320px;
    }

    .hero-banner-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-banner-tagline {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .hero-banner-cta-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* ===============================================
   MODERN FOOTER - DALGALI GÖRÜNÜM
   Sosyal medya ikonları ve modern tasarım
   =============================================== */

.modern-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg,
        #0a2540 0%,
        #0c4a6e 30%,
        #075985 60%,
        #0369a1 100%);
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}


/* ===============================================
   REFERENCES SECTION - MODERN REFERANSLAR
   Box yok, düz görünüm
   =============================================== */

.references-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(180deg,
        #1e3a5f 0%,
        #2d4a6e 20%,
        #3d5a7d 40%,
        #4d6a8c 60%,
        #5d7a9b 80%,
        #6d8aaa 100%);
    overflow: hidden;
    z-index: 2;
}

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

.references-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.references-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        #64f0ff 50%,
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(100, 240, 255, 0.6);
}

.references-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
    justify-items: center;
}

/* Reference Item - Box yok, düz, daha küçük */
.reference-item {
    position: relative;
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: brightness(1.05) opacity(0.9);
}

.reference-item:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.2) opacity(1);
}

.reference-image {
    width: 100%;
        height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.reference-item:hover .reference-image {
    filter: drop-shadow(0 10px 30px rgba(0, 85, 128, 0.2));
}

/* ===============================================
   RESPONSIVE - REFERENCES SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .references-section {
        padding: 70px 0;
    }

    .references-container {
        padding: 0 30px;
    }

    .references-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .references-wrapper {
        gap: 50px;
    }
}

@media (max-width: 991.98px) {
    .references-section {
        padding: 60px 0;
    }

    .references-container {
        padding: 0 25px;
    }

    .references-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .references-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .reference-item {
        max-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .references-section {
        padding: 50px 0;
    }

    .references-container {
        padding: 0 20px;
    }

    .references-title {
        font-size: 28px;
        margin-bottom: 35px;
        padding-bottom: 15px;
    }

    .references-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reference-item {
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .references-section {
        padding: 40px 0;
    }

    .references-container {
        padding: 0 15px;
    }

    .references-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }

    .references-wrapper {
        gap: 35px;
    }

    .reference-item {
        max-width: 180px;
    }
}

/* Footer Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 30px;
    position: relative;
    z-index: 2;
}

/* Footer Content - Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 180px;
        height: auto;
    opacity: 0.95;
}

.footer-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 300px;
}

/* Footer Title */
.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,
        #64f0ff 0%,
        #22d3ee 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #64f0ff;
}

.footer-menu a:hover {
    color: #64f0ff;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0;
}

.footer-contact-list i {
    color: #64f0ff;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #64f0ff;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(100, 240, 255, 0.3);
    border-radius: 50%;
    color: #64f0ff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(100, 240, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(100, 240, 255, 0.2);
    border-color: #64f0ff;
    box-shadow: 
        0 8px 25px rgba(100, 240, 255, 0.4),
        0 0 30px rgba(100, 240, 255, 0.3);
}

.footer-social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social-icon:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Instagram */
.footer-social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: #ffffff;
}

/* Facebook */
.footer-social-icon[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

/* WhatsApp */
.footer-social-icon[aria-label="WhatsApp"]:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

/* YouTube */
.footer-social-icon[aria-label="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

/* Footer References */
.footer-references {
        width: 100%;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-references-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    max-width: 120px;
        height: auto;
}

.footer-reference-item:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(100, 240, 255, 0.4));
}

.footer-reference-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright-year {
    display: inline-block;
    font-weight: 800;
    font-size: 1.2em;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-shadow: 0 0 18px rgba(100, 240, 255, 0.45), 0 0 6px rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #64f0ff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 18px 0 0;
}

.footer-credit-brand {
    color: #c4b5fd;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 181, 253, 0.45);
    transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit-brand:hover {
    color: #e9d5ff;
    border-bottom-color: rgba(233, 213, 255, 0.8);
    text-shadow: 0 0 12px rgba(196, 181, 253, 0.55);
}

/* ===============================================
   RESPONSIVE - MODERN FOOTER
   =============================================== */

@media (max-width: 1199.98px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-references-wrapper {
        gap: 35px;
    }

    .footer-reference-item {
        max-width: 110px;
    }
}

@media (max-width: 991.98px) {
    .footer-container {
        padding: 70px 30px 25px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-references {
        padding: 25px 0;
    }

    .footer-references-wrapper {
        gap: 30px;
    }

    .footer-reference-item {
        max-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .footer-container {
        padding: 60px 25px 20px;
    }

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

    .footer-logo {
        width: 140px;
    }

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

    .footer-social-icons {
        justify-content: center;
    }

    .footer-references {
        padding: 20px 0;
    }

    .footer-references-wrapper {
        gap: 25px;
    }

    .footer-reference-item {
        max-width: 90px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-container {
        padding: 50px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-menu a,
    .footer-contact-list span,
    .footer-contact-list a {
        font-size: 14px;
    }

    .footer-references {
        padding: 18px 0;
    }

    .footer-references-wrapper {
        gap: 20px;
    }

    .footer-reference-item {
        max-width: 80px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright,
    .footer-bottom-links a,
    .footer-credit {
        font-size: 12px;
    }

    .footer-copyright-year {
        font-size: 1.25em;
    }
}

/* ===============================================
   UÇURTMA SÖRFÜ HERO SECTION
   SEO uyumlu, modern tasarım
   =============================================== */

.kitesurf-hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
}

/* Arka plan görseli */
.kitesurf-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay - Görünürlük için */
.kitesurf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

/* İçerik */
.kitesurf-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
}

/* H1 Başlık - SEO için */
.kitesurf-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(100, 240, 255, 0.3);
    line-height: 1.2;
}

/* Alt Başlık */
.kitesurf-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 600;
    color: #e0f7ff;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.7),
        0 1px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* ===============================================
   RESPONSIVE - UÇURTMA SÖRFÜ HERO SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .kitesurf-hero-section {
        height: 450px;
    }

    .kitesurf-hero-title {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .kitesurf-hero-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .kitesurf-hero-section {
        height: 400px;
    }

    .kitesurf-hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .kitesurf-hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .kitesurf-hero-section {
        height: 350px;
    }

    .kitesurf-hero-content {
        width: 95%;
    }

    .kitesurf-hero-title {
        font-size: 38px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .kitesurf-hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .kitesurf-hero-section {
        height: 300px;
    }

    .kitesurf-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .kitesurf-hero-subtitle {
        font-size: 18px;
    }
}

/* ===============================================
   UÇURTMA SÖRFÜ CTA BUTTONS SECTION
   =============================================== */

.kitesurf-cta-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 2;
}

.kitesurf-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 20px;
        justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.kitesurf-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    text-align: center;
}

.kitesurf-cta-button::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;
}

.kitesurf-cta-button:hover::before {
    left: 100%;
}

.kitesurf-cta-button-primary {
    background: linear-gradient(180deg, #0c4a6e 0%, #0284c7 50%, #0ea5e9 100%);
}

.kitesurf-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 50%, #0c4a6e 100%);
}

.kitesurf-cta-button-secondary {
    background: linear-gradient(180deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
}

.kitesurf-cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.kitesurf-cta-button-text {
    position: relative;
    z-index: 1;
}

/* ===============================================
   UÇURTMA SÖRFÜ CONTENT SECTIONS
   =============================================== */

.kitesurf-content-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    z-index: 2;
}

.kitesurf-content-section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.kitesurf-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.kitesurf-content-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0c4a6e;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.kitesurf-content-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.kitesurf-content-separator {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    margin: 0 auto 40px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.kitesurf-content-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 25px 0;
}

.kitesurf-content-text p {
    margin: 0 0 20px 0;
}

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

.kitesurf-content-text strong {
    color: #0c4a6e;
    font-weight: 700;
}

.kitesurf-content-subheading {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0c4a6e;
    margin: 50px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Equipment Items */
.kitesurf-equipment-item {
    margin: 40px 0;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
}

.kitesurf-equipment-item:hover {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.kitesurf-equipment-item-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===============================================
   RESPONSIVE - UÇURTMA SÖRFÜ SECTIONS
   =============================================== */

@media (max-width: 1199.98px) {
    .kitesurf-content-container {
        padding: 0 30px;
    }

    .kitesurf-content-title {
        font-size: 42px;
    }

    .kitesurf-content-subheading {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .kitesurf-cta-section {
        padding: 35px 0;
    }

    .kitesurf-cta-container {
        padding: 0 30px;
        flex-direction: column;
        gap: 15px;
    }

    .kitesurf-cta-button {
        width: 100%;
        max-width: 400px;
        min-width: auto;
    }

    .kitesurf-content-section {
        padding: 60px 0;
    }

    .kitesurf-content-container {
        padding: 0 25px;
    }

    .kitesurf-content-title {
        font-size: 36px;
        letter-spacing: 1.5px;
    }

    .kitesurf-content-subtitle {
        font-size: 20px;
    }

    .kitesurf-content-text {
        font-size: 16px;
    }

    .kitesurf-content-subheading {
        font-size: 24px;
    }

    .kitesurf-equipment-item {
        padding: 25px;
        margin: 30px 0;
    }

    .kitesurf-equipment-item-title {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .kitesurf-cta-section {
        padding: 30px 0;
    }

    .kitesurf-cta-container {
        padding: 0 20px;
    }

    .kitesurf-cta-button {
        padding: 16px 35px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .kitesurf-content-section {
        padding: 50px 0;
    }

    .kitesurf-content-container {
        padding: 0 20px;
    }

    .kitesurf-content-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .kitesurf-content-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .kitesurf-content-separator {
        width: 80px;
        height: 3px;
        margin-bottom: 30px;
    }

    .kitesurf-content-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .kitesurf-content-subheading {
        font-size: 20px;
        margin: 40px 0 20px 0;
    }

    .kitesurf-equipment-item {
        padding: 20px;
        margin: 25px 0;
    }

    .kitesurf-equipment-item-title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .kitesurf-cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    .kitesurf-content-title {
        font-size: 24px;
    }

    .kitesurf-content-subtitle {
        font-size: 16px;
    }

    .kitesurf-content-text {
        font-size: 14px;
    }

    .kitesurf-content-subheading {
        font-size: 18px;
    }

    .kitesurf-equipment-item-title {
        font-size: 18px;
    }
}

/* ===============================================
   UÇURTMA SÖRFÜ GALERİ SECTION
   =============================================== */

.kitesurf-gallery-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 2;
}

.kitesurf-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.kitesurf-gallery-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0c4a6e;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

/* Galeri Grid */
.kitesurf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.kitesurf-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.kitesurf-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.kitesurf-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.kitesurf-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.kitesurf-gallery-icon {
    font-size: 32px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: galleryIconPulse 2s ease-in-out infinite;
}

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

/* Pagination */
.kitesurf-gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.kitesurf-gallery-pagination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.kitesurf-gallery-pagination-current {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c4a6e;
}

.kitesurf-gallery-pagination-count {
    font-size: 14px;
    color: #64748b;
}

.kitesurf-gallery-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(180deg, #0c4a6e 0%, #0284c7 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.kitesurf-gallery-pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(180deg, #0284c7 0%, #0ea5e9 100%);
    color: #ffffff;
}

.kitesurf-gallery-pagination-btn.kitesurf-gallery-pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.kitesurf-gallery-pagination-btn {
    border: none;
    cursor: pointer;
}

.kitesurf-gallery-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobil Navigation */
.kitesurf-gallery-mobile-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(180deg, #0c4a6e 0%, #0284c7 100%);
    border-radius: 12px;
    margin-top: 30px;
}

.kitesurf-gallery-mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    cursor: pointer;
}

.kitesurf-gallery-mobile-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #ffffff;
}

.kitesurf-gallery-mobile-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.kitesurf-gallery-mobile-nav-info {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.kitesurf-gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kitesurf-gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kitesurf-gallery-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.kitesurf-gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    z-index: 100001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.kitesurf-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.kitesurf-gallery-lightbox-prev,
.kitesurf-gallery-lightbox-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
        height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.kitesurf-gallery-lightbox-prev:hover,
.kitesurf-gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.kitesurf-gallery-lightbox-prev {
    left: 20px;
}

.kitesurf-gallery-lightbox-next {
    right: 20px;
}

/* ===============================================
   RESPONSIVE - GALERİ SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .kitesurf-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .kitesurf-gallery-title {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    .kitesurf-gallery-section {
        padding: 60px 0;
    }

    .kitesurf-gallery-container {
        padding: 0 30px;
    }

    .kitesurf-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .kitesurf-gallery-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .kitesurf-gallery-pagination {
        gap: 20px;
    }

    .kitesurf-gallery-pagination-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .kitesurf-gallery-pagination-current {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .kitesurf-gallery-section {
        padding: 50px 0;
    }

    .kitesurf-gallery-container {
        padding: 0 20px;
    }

    .kitesurf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .kitesurf-gallery-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .kitesurf-gallery-pagination {
        display: none;
    }

    .kitesurf-gallery-mobile-nav {
        display: flex;
    }

    .kitesurf-gallery-item {
        border-radius: 8px;
    }

    .kitesurf-gallery-lightbox-content {
        max-width: 95%;
    }

    .kitesurf-gallery-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .kitesurf-gallery-lightbox-prev,
    .kitesurf-gallery-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .kitesurf-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .kitesurf-gallery-title {
        font-size: 24px;
    }

    .kitesurf-gallery-mobile-nav {
        padding: 15px;
    }

    .kitesurf-gallery-mobile-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .kitesurf-gallery-mobile-nav-info {
        font-size: 16px;
    }
}

/* ===============================================
   IKO HERO SECTION
   SEO uyumlu, modern tasarım
   =============================================== */

.iko-hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
}

/* Arka plan görseli */
.iko-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay - Görünürlük için */
.iko-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

/* İçerik */
.iko-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
}

/* H1 Başlık - SEO için */
.iko-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(100, 240, 255, 0.3);
    line-height: 1.2;
}

/* Alt Başlık */
.iko-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 600;
    color: #e0f7ff;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.7),
        0 1px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* ===============================================
   RESPONSIVE - IKO HERO SECTION
   =============================================== */

@media (max-width: 1199.98px) {
    .iko-hero-section {
        height: 450px;
    }

    .iko-hero-title {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .iko-hero-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .iko-hero-section {
        height: 400px;
    }

    .iko-hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .iko-hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .iko-hero-section {
        height: 350px;
    }

    .iko-hero-content {
        width: 95%;
    }

    .iko-hero-title {
        font-size: 38px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .iko-hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .iko-hero-section {
        height: 300px;
    }

    .iko-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .iko-hero-subtitle {
        font-size: 18px;
    }
}

/* ===============================================
   IKO CONTENT SECTIONS
   =============================================== */

.iko-content-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    z-index: 2;
}

.iko-content-section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.iko-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.iko-content-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0c4a6e;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.iko-content-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.iko-header-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #0c4a6e;
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.iko-content-separator {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    margin: 0 auto 40px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.iko-content-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 25px 0;
}

.iko-content-text p {
    margin: 0 0 20px 0;
}

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

/* Profesyonel Kurs Listesi */
.iko-professional-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.iko-professional-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.iko-professional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.25);
}

.iko-professional-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.iko-professional-icon {
    font-size: 36px;
    color: #ffffff;
}

.iko-professional-content {
    flex: 1;
}

.iko-professional-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c4a6e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

/* Kurs Kartları Section - EN ALTA */
.iko-courses-cards-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        #0f172a 0%,
        #1e3a5f 25%,
        #1e40af 50%,
        #3b82f6 75%,
        #60a5fa 100%);
    z-index: 2;
}

.iko-courses-cards-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 60px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.iko-courses-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.iko-courses-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.iko-course-card {
    background: #ffffff;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.iko-course-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
    z-index: 1;
}

.iko-course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

/* Header - Açık Mavi */
.iko-course-card-header {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iko-course-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.iko-course-card-icon-container {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.iko-course-card-icon {
    font-size: 52px;
    color: #3b82f6;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* Body - Beyaz */
.iko-course-card-body {
    padding: 35px 30px;
    flex: 1;
    background: #ffffff;
}

.iko-course-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1e3a8a;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.iko-course-card-duration {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iko-course-card-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 25px 0;
}

.iko-course-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iko-course-card-location,
.iko-course-card-date {
    display: flex;
    align-items: center;
    gap: 12px;
        font-size: 15px;
    color: #475569;
    margin: 0;
}

.iko-course-card-location i,
.iko-course-card-date i {
    color: #3b82f6;
    width: 20px;
    font-size: 16px;
}

/* Footer - Koyu Mavi */
.iko-course-card-footer {
    padding: 25px 30px;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.iko-course-card-language {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.iko-course-card-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iko-course-card-price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.iko-course-card-price-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.iko-course-card-price-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Kart Butonu */
.iko-course-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    margin-top: 5px;
}

.iko-course-card-button:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    color: #ffffff;
}

.iko-course-card-button-text {
    position: relative;
    z-index: 1;
}

.iko-course-card-button-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.iko-course-card-button:hover .iko-course-card-button-icon {
    transform: translateX(4px);
}

.iko-courses-cta-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.iko-courses-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 60px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    position: relative;
    overflow: hidden;
}

.iko-courses-cta-button::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;
}

.iko-courses-cta-button:hover::before {
    left: 100%;
}

.iko-courses-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.7);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
}

.iko-courses-cta-text {
    position: relative;
    z-index: 1;
}

/* ===============================================
   RESPONSIVE - IKO SECTIONS
   =============================================== */

@media (max-width: 1199.98px) {
    .iko-content-container {
        padding: 0 30px;
    }

    .iko-content-title {
        font-size: 42px;
    }

    .iko-professional-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .iko-courses-cards-section-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .iko-courses-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991.98px) {
    .iko-content-section {
        padding: 60px 0;
    }

    .iko-content-container {
        padding: 0 25px;
    }

    .iko-content-title {
        font-size: 36px;
        letter-spacing: 1.5px;
    }

    .iko-content-subtitle {
        font-size: 20px;
    }

    .iko-content-text {
        font-size: 16px;
    }

    .iko-professional-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .iko-professional-item {
        padding: 25px 20px;
    }

    .iko-professional-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .iko-professional-icon {
        font-size: 32px;
    }

    .iko-professional-name {
        font-size: 18px;
    }

    .iko-courses-cards-section {
        padding: 80px 0;
    }

    .iko-courses-cards-section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .iko-courses-cards-container {
        padding: 0 30px;
    }

    .iko-courses-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .iko-course-card-header {
        height: 160px;
    }

    .iko-course-card-icon-container {
        width: 90px;
        height: 90px;
    }
    
    .iko-course-card-icon {
        font-size: 42px;
    }

    .iko-course-card-title {
        font-size: 24px;
    }

    .iko-course-card-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .iko-content-section {
        padding: 50px 0;
    }

    .iko-content-container {
        padding: 0 20px;
    }

    .iko-content-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .iko-content-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .iko-header-text {
        font-size: 16px;
    }

    .iko-content-separator {
        width: 80px;
        height: 3px;
        margin-bottom: 30px;
    }

    .iko-content-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .iko-professional-list {
        gap: 15px;
    }

    .iko-professional-item {
        padding: 20px 18px;
    }

    .iko-professional-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .iko-professional-icon {
        font-size: 28px;
    }

    .iko-professional-name {
        font-size: 16px;
    }

    .iko-courses-cards-section {
        padding: 60px 0;
    }

    .iko-courses-cards-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .iko-courses-cards-container {
        padding: 0 20px;
    }

    .iko-courses-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .iko-course-card-header {
        height: 150px;
    }

    .iko-course-card-icon-container {
        width: 85px;
        height: 85px;
    }

    .iko-course-card-icon {
        font-size: 40px;
    }

    .iko-course-card-body {
        padding: 30px 25px;
    }

    .iko-course-card-title {
        font-size: 22px;
    }

    .iko-course-card-footer {
        padding: 22px 25px;
    }

    .iko-course-card-price-text {
        font-size: 26px;
    }

    .iko-course-card-button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .iko-courses-cta-wrapper {
        padding: 0 20px;
    }

    .iko-courses-cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .iko-content-title {
        font-size: 24px;
    }

    .iko-content-subtitle {
        font-size: 16px;
    }

    .iko-header-text {
        font-size: 14px;
    }

    .iko-content-text {
        font-size: 14px;
    }

    .iko-professional-name {
        font-size: 14px;
    }

    .iko-courses-cards-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .iko-course-card-header {
        height: 120px;
    }

    .iko-course-card-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .iko-course-card-icon {
        font-size: 32px;
    }

    .iko-course-card-body {
        padding: 25px 20px;
    }

    .iko-course-card-title {
        font-size: 20px;
    }

    .iko-course-card-price-text {
        font-size: 22px;
    }

    .iko-course-card-button {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .iko-courses-cta-button {
        padding: 16px 35px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* ===============================================
   MALZEME SİPARİŞİ SAYFASI
   =============================================== */

/* Hero Section - Sadece Başlık */
.equipment-hero-section {
    position: relative;
    width: 100%;
    padding: 50px 0 30px 0;
    background: #ffffff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.equipment-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}

.equipment-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: #1e3a8a;
    line-height: 1.2;
}

/* Brand Banner Section */
.equipment-brand-banner {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(135deg, 
        #0f172a 0%,
        #1e3a8a 50%,
        #1e40af 100%);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.equipment-brand-banner::before {
    content: '';
        position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: bannerShine 3s ease-in-out infinite;
}

@keyframes bannerShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.equipment-brand-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.equipment-brand-banner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.equipment-brand-banner-logo:hover {
    transform: scale(1.1);
}

.equipment-brand-duotone-logo {
    max-height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.equipment-brand-banner-logo:hover .equipment-brand-duotone-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.equipment-brand-xtremspor-logo {
    max-height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.equipment-brand-banner-logo:hover .equipment-brand-xtremspor-logo {
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.6));
}

.equipment-brand-banner-separator {
    width: 2px;
    height: 45px;
    background: linear-gradient(180deg, transparent, #f97316, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    animation: separatorGlow 2s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
    }
}

/* Referanslar Section */
.equipment-references-section {
    position: relative;
    width: 100%;
    padding: 50px 0 50px 0; /* Üst ve alt eşit padding - ortada durması için */
    background: linear-gradient(135deg, 
        #0f172a 0%,
        #1e3a5f 30%,
        #1e40af 70%,
        #3b82f6 100%);
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center; /* Dikey ortalama */
    min-height: 200px; /* Minimum yükseklik */
}

.equipment-references-section::before {
    content: '';
    position: absolute;
    top: 0;
        left: 0;
        right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.equipment-references-container {
    max-width: 1200px;
        width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center; /* Dikey ortalama */
    justify-content: center; /* Yatay ortalama */
}

.equipment-references-wrapper {
    display: flex;
        justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap; /* Sabit kalması için */
}

.equipment-reference-item {
    flex: 0 0 auto;
    width: 250px; /* Sabit genişlik */
    height: 120px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

.equipment-reference-item:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.08);
    filter: drop-shadow(0 8px 25px rgba(59, 130, 246, 0.4));
}

.equipment-reference-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Oranları koruyarak sığdır */
    filter: brightness(1.15) contrast(1.1);
    image-rendering: crisp-edges;
    transition: filter 0.4s ease;
}

.equipment-reference-item:hover .equipment-reference-image {
    filter: brightness(1.3) contrast(1.2);
}

/* Categories Navigation */
.equipment-categories-nav {
    position: sticky;
    top: 90px; /* Top-bar altından boşluk için artırıldı */
    width: 100%;
    padding: 20px 0 15px 0; /* Üstten boşluk eklendi */
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 99;
    margin-bottom: 0; /* Alt boşluk kaldırıldı */
    margin-top: 0; /* Üst boşluk kaldırıldı */
}

.equipment-categories-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
        justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.equipment-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e3a8a;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipment-category-btn i {
    font-size: 16px;
}

.equipment-category-btn:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #1e3a8a;
    transform: translateY(-1px);
}

.equipment-category-btn.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    border-color: #1e3a8a;
    box-shadow: 0 3px 12px rgba(30, 58, 138, 0.3);
}

/* Products Section */
.equipment-products-section {
    position: relative;
        width: 100%;
    padding: 60px 0;
    background: linear-gradient(180deg, 
        #ffffff 0%,
        #f8fafc 50%,
        #ffffff 100%);
    z-index: 2;
}

.equipment-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.equipment-category {
    display: none;
}

.equipment-category.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.equipment-product-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.equipment-product-item:nth-child(1) {
    animation-delay: 0.1s;
}

.equipment-product-item:nth-child(2) {
    animation-delay: 0.2s;
}

.equipment-product-item:nth-child(3) {
    animation-delay: 0.3s;
}

.equipment-product-item:nth-child(4) {
    animation-delay: 0.4s;
}

.equipment-product-item:nth-child(5) {
    animation-delay: 0.5s;
}

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

.equipment-category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
}

.equipment-product-item {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.equipment-product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.equipment-product-item:hover::before {
    left: 100%;
}

.equipment-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
}

.equipment-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
        justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.equipment-product-item:hover .equipment-product-image-wrapper {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.equipment-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.equipment-product-item:hover .equipment-product-image {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 8px 25px rgba(59, 130, 246, 0.3));
}

.equipment-product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.equipment-product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1e3a8a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

.equipment-product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
}

.equipment-product-item:hover .equipment-product-title::after {
    width: 100px;
}

.equipment-product-item:hover .equipment-product-title {
    color: #3b82f6;
}

.equipment-product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 20px 0;
    flex: 1;
    transition: color 0.3s ease;
}

.equipment-product-item:hover .equipment-product-description {
    color: #334155;
}

.equipment-product-stock {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 20px 0;
    padding: 8px 15px;
    background: #f1f5f9;
    border-radius: 8px;
    display: inline-block;
    border-left: 3px solid #3b82f6;
}

.equipment-product-availability {
    font-size: 18px;
    font-weight: 700;
    color: #f97316;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 10px;
    display: inline-block;
    border: 2px solid rgba(249, 115, 22, 0.3);
    animation: availabilityPulse 2s ease-in-out infinite;
}

@keyframes availabilityPulse {
    0%, 100% {
        border-color: rgba(249, 115, 22, 0.3);
    }
    50% {
        border-color: rgba(249, 115, 22, 0.6);
    }
}

.equipment-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.equipment-product-button::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;
}

.equipment-product-button:hover::before {
    left: 100%;
}

.equipment-product-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
    color: #ffffff;
}

.equipment-product-button-icon {
    transition: transform 0.3s ease;
}

.equipment-product-button:hover .equipment-product-button-icon {
    transform: scale(1.2) rotate(5deg);
}

.equipment-product-button-icon {
    font-size: 20px;
}

.equipment-product-button-text {
    position: relative;
    z-index: 1;
}

/* ===============================================
   RESPONSIVE - EQUIPMENT PAGE
   =============================================== */

@media (max-width: 1199.98px) {
    .equipment-hero-section {
        padding: 40px 0 25px 0;
    }

    .equipment-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .equipment-brand-banner {
        padding: 25px 0;
    }

    .equipment-brand-duotone-logo {
        max-height: 50px;
    }

    .equipment-brand-xtremspor-logo {
        max-height: 45px;
    }

    .equipment-brand-banner-separator {
        height: 40px;
    }

    .equipment-product-item {
        grid-template-columns: 320px 1fr;
        gap: 30px;
    }

    .equipment-product-image-wrapper {
        height: 350px;
    }

    .equipment-product-title {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    .equipment-hero-section {
        padding: 35px 0 20px 0;
    }

    .equipment-hero-title {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .equipment-brand-banner {
        padding: 20px 0;
    }

    .equipment-brand-banner-container {
        padding: 0 30px;
        gap: 25px;
    }

    .equipment-brand-duotone-logo {
        max-height: 45px;
    }

    .equipment-brand-xtremspor-logo {
        max-height: 40px;
    }

    .equipment-brand-banner-separator {
        height: 38px;
    }

    .equipment-references-section {
        padding: 40px 0 40px 0; /* Üst ve alt eşit padding - ortada durması için */
        min-height: 180px;
    }

    .equipment-categories-nav {
        top: 90px; /* Top-bar altından boşluk için artırıldı */
        padding: 12px 0;
    }

    .equipment-categories-nav-container {
        padding: 0 30px;
        gap: 10px;
    }

    .equipment-category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .equipment-category-btn i {
        font-size: 14px;
    }

    .equipment-product-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .equipment-product-image-wrapper {
        height: 300px;
    }

    .equipment-category-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .equipment-product-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .equipment-hero-section {
        padding: 30px 0 15px 0;
    }

    .equipment-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .equipment-brand-banner {
        padding: 15px 0;
    }

    .equipment-brand-banner-container {
        padding: 0 20px;
        gap: 20px;
    }

    .equipment-brand-duotone-logo {
        max-height: 35px;
    }

    .equipment-brand-xtremspor-logo {
        max-height: 30px;
    }

    .equipment-brand-banner-separator {
        height: 30px;
        width: 1.5px;
    }

    .equipment-references-section {
        padding: 35px 0 35px 0; /* Üst ve alt eşit padding - ortada durması için */
        min-height: 160px;
    }

    .equipment-references-container {
        padding: 0 20px;
    }

    .equipment-references-wrapper {
        gap: 30px;
        flex-wrap: nowrap; /* Sabit kalması için */
    }

    .equipment-reference-item {
        width: 200px; /* Sabit genişlik */
        height: 100px; /* Sabit yükseklik */
    }

    .equipment-categories-nav {
        padding: 10px 0;
    }

    .equipment-categories-nav-container {
        padding: 0 20px;
        gap: 8px;
    }

    .equipment-category-btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .equipment-category-btn i {
        font-size: 12px;
    }

    .equipment-products-section {
        padding: 35px 0;
    }

    .equipment-products-container {
        padding: 0 20px;
    }

    .equipment-category-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }

    .equipment-product-item {
        padding: 20px 18px;
        margin-bottom: 35px;
    }

    .equipment-product-image-wrapper {
        height: 220px;
    }

    .equipment-product-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .equipment-product-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .equipment-product-button {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .equipment-hero-section {
        padding: 25px 0 12px 0;
    }

    .equipment-hero-title {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .equipment-brand-banner-container {
        gap: 15px;
    }

    .equipment-brand-duotone-logo {
        max-height: 30px;
    }

    .equipment-brand-xtremspor-logo {
        max-height: 25px;
    }

    .equipment-brand-banner-separator {
        height: 25px;
    }

    .equipment-references-wrapper {
        gap: 20px;
        flex-wrap: nowrap; /* Sabit kalması için */
    }

    .equipment-reference-item {
        width: 150px; /* Sabit genişlik */
        height: 80px; /* Sabit yükseklik */
    }

    .equipment-category-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .equipment-product-item {
        padding: 18px 15px;
        margin-bottom: 30px;
    }

    .equipment-product-image-wrapper {
        height: 200px;
    }

    .equipment-product-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .equipment-product-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .equipment-product-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ===============================================
   İKİNCİ EL MALZEME SAYFASI
   =============================================== */

.secondhand-hero-section {
    position: relative;
    width: 100%;
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 45%, #2563eb 80%, #38bdf8 100%);
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

.secondhand-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.secondhand-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.secondhand-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.secondhand-hero-separator {
    width: 120px;
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #facc15, #f97316, transparent);
    box-shadow: 0 0 15px rgba(248, 250, 252, 0.6);
}

.secondhand-product-section {
    position: relative;
    width: 100%;
    padding: 60px 0 90px 0;
    background: #f1f5f9;
}

.secondhand-product-container {
    max-width: 1280px;
    margin: 0 auto 60px auto; /* Alt boşluk eklendi */
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.secondhand-product-container:last-child {
    margin-bottom: 0; /* Son ürünün altında boşluk olmasın */
}

.secondhand-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secondhand-main-image-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    background: radial-gradient(circle at 10% 20%, #0f172a 0%, #1e40af 40%, #38bdf8 100%);
    cursor: zoom-in;
}

.secondhand-main-image {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.secondhand-main-image-wrapper:hover .secondhand-main-image {
    transform: scale(1.03);
    filter: brightness(1.03);
}

.secondhand-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.secondhand-thumbnail {
    border: none;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, outline 0.2s ease;
}

.secondhand-thumbnail img {
    display: block;
    width: 90px;
    height: 70px;
    object-fit: cover;
}

.secondhand-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

.secondhand-thumbnail.active {
    outline: 3px solid #0ea5e9;
    outline-offset: 2px;
}

.secondhand-product-info {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 30px 30px 30px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    position: relative;
}

.secondhand-product-category {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0ea5e9;
    margin: 0 0 8px 0;
}

.secondhand-product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.secondhand-product-status-wrapper {
    margin-bottom: 18px;
}

.secondhand-product-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.secondhand-product-status.sold {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.6);
}

.secondhand-product-description {
        font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 20px 0;
}

.secondhand-product-price-wrapper {
    margin-bottom: 20px;
}

.secondhand-product-price {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
}

.secondhand-product-price-note {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.secondhand-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    margin-bottom: 22px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 45%, #22c55e 100%);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.secondhand-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.7);
    color: #ffffff;
}

.secondhand-contact-icon {
    font-size: 18px;
}

.secondhand-product-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

.secondhand-product-meta li i {
    color: #0ea5e9;
    margin-right: 8px;
}

/* Lightbox */
.secondhand-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.secondhand-lightbox.open {
    display: block;
}

.secondhand-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
}

.secondhand-lightbox-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.secondhand-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.secondhand-lightbox-close,
.secondhand-lightbox-prev,
.secondhand-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
}

.secondhand-lightbox-close {
    top: 105px;             /* Top-barın biraz daha altında */
    right: 40px;
    transform: none;        /* Ortalamayı iptal et */
    width: 48px;            /* Daha büyük buton */
    height: 48px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.secondhand-lightbox-prev {
    left: 24px;
}

.secondhand-lightbox-next {
    right: 24px;
}

.secondhand-lightbox-close i,
.secondhand-lightbox-prev i,
.secondhand-lightbox-next i {
    font-size: 20px;
}

body.secondhand-lightbox-open {
    overflow: hidden;
}

/* RESPONSIVE - İKİNCİ EL */
@media (max-width: 1199.98px) {
    .secondhand-product-container {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        padding: 0 30px;
    }

    .secondhand-main-image {
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .secondhand-product-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        margin-bottom: 50px; /* Alt boşluk eklendi */
    }

    .secondhand-main-image {
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .secondhand-hero-section {
        padding: 70px 0 35px 0;
    }

    .secondhand-hero-container {
        padding: 0 20px;
    }

    .secondhand-hero-title {
        font-size: 32px;
    }

    .secondhand-product-section {
        padding: 50px 0 70px 0;
    }

    .secondhand-product-container {
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 40px; /* Alt boşluk eklendi */
    }

    .secondhand-main-image {
        height: 260px;
    }

    .secondhand-thumbnail img {
        width: 80px;
        height: 60px;
    }

    .secondhand-product-info {
        padding: 24px 20px 22px 20px;
    }
}

@media (max-width: 575.98px) {
    .secondhand-product-container {
        padding: 0 15px;
        margin-bottom: 35px; /* Alt boşluk eklendi */
    }

    .secondhand-main-image {
        height: 230px;
    }

    .secondhand-lightbox-inner {
        padding: 20px;
    }

    .secondhand-lightbox-prev,
    .secondhand-lightbox-next {
        display: none;
    }
}

/* ===============================================
   FİYAT LİSTELERİ SAYFASI
   =============================================== */

.pricing-hero-section {
    position: relative;
    width: 100%;
    padding: 90px 0 80px 0;
    background: radial-gradient(circle at 0% 0%, #e0f2fe 0%, #f9fafb 40%, #e5f2ff 100%);
}

.pricing-hero-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.pricing-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
}

.pricing-hero-separator {
    width: 180px;
    height: 3px;
    margin: 0 auto 22px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #0ea5e9, #38bdf8, transparent);
    box-shadow: 0 0 18px rgba(14, 165, 233, 0.5);
}

.pricing-hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 26px 0;
}

.pricing-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.pricing-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.pricing-hero-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #0ea5e9 100%);
    color: #ffffff;
}

.pricing-hero-button.secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.pricing-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.24);
}

.pricing-hero-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #0284c7 100%);
}

.pricing-hero-button.secondary:hover {
    background: #f9fafb;
}

.pricing-hero-button-icon {
    font-size: 18px;
}

.pricing-hero-button-external {
    font-size: 12px;
    opacity: 0.9;
}

.pricing-hero-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 767.98px) {
    .pricing-hero-section {
        padding: 80px 0 60px 0;
    }

    .pricing-hero-container {
        padding: 0 20px;
    }

    .pricing-hero-title {
        font-size: 32px;
    }

    .pricing-hero-text {
        font-size: 15px;
    }

    .pricing-hero-actions {
        flex-direction: column;
    }
}

/* ===============================================
   İLETİŞİM SAYFASI
   =============================================== */

.contact-hero-section {
    position: relative;
    width: 100%;
    padding: 90px 0 50px 0;
    background: #ffffff;
    color: #0f172a;
}

.contact-hero-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #0f172a;
}


.contact-main-section {
    position: relative;
    width: 100%;
    padding: 70px 0 90px 0;
    background: #f1f5f9;
}

.contact-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: flex-start;
}

.contact-info-column,
.contact-map-column {
    display: flex;
}

.contact-info-card,
.contact-map-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
    padding: 30px 28px 26px 28px;
    width: 100%;
}

.contact-info-title,
.contact-map-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.contact-info-text,
.contact-map-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 20px 0;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.contact-info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info-list li i {
    color: #0ea5e9;
    margin-top: 3px;
}

.contact-info-list a {
    color: #0f172a;
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-start;
    align-items: center;
}

.contact-social-link {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

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

.contact-social-link:hover::before {
    left: 100%;
}

.contact-social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.contact-social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
}

.contact-social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
}

.contact-social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.contact-map-wrapper {
    margin-top: 10px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.25);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

@media (max-width: 991.98px) {
    .contact-main-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .contact-main-section {
        padding: 60px 0 80px 0;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-section {
        padding: 80px 0 40px 0;
    }

    .contact-hero-container {
        padding: 0 20px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-main-container {
        padding: 0 20px;
    }

    .contact-map-wrapper iframe {
        height: 260px;
    }

    .contact-social {
        gap: 12px;
        margin-top: 20px;
    }

    .contact-social-link {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
    }
}
