/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles with Dropdown */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-container {
    background-color: rgba(32, 54, 77, 0.7);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.header:hover .header-container {
    padding: 12px 40px;
    border-radius: 30px;
    background-color: rgba(32, 54, 77, 0.8);
    backdrop-filter: blur(30px);
}

/* Mobile'da header'ı tamamen devre dışı bırak */
@media (max-width: 768px) {
    .header {
        pointer-events: none !important;
        cursor: default !important;
    }
    
    .header * {
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Desktop'ta header'ı aktif tut */
@media (min-width: 769px) {
    .header {
        pointer-events: auto !important;
        cursor: default !important;
    }
    
    .header * {
        pointer-events: auto !important;
        cursor: default !important;
    }
    
    .header .nav-link,
    .header .dropdown-item,
    .header .logo a {
        cursor: pointer !important;
    }
}

.logo {
    margin-right: 40px;
    flex-shrink: 0;
}

.logo img {
    height: 24px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
    align-items: center;
    transform: translateY(-1px);
}

.nav-item {
    white-space: nowrap;
    position: relative;
}

.nav-item:not(:first-child) {
    display: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.header:hover .nav-item:not(:first-child) {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.header:hover .nav-item:nth-child(2) {
    transition-delay: 0.1s;
}

.header:hover .nav-item:nth-child(3) {
    transition-delay: 0.2s;
}

.header:hover .nav-item:nth-child(4) {
    transition-delay: 0.3s;
}

.header:hover .nav-item:nth-child(5) {
    transition-delay: 0.4s;
}

/* Dropdown Menu Styles */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(32, 54, 77, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: white;
    background: rgba(254, 93, 38, 0.2);
    border-left-color: #FE5D26;
    padding-left: 25px;
}

/* Dropdown Arrow */
.nav-item.has-dropdown .nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.7);
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
    border-top-color: white;
}

@keyframes slideInSlow {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-item.active .nav-link {
    color: white;
}

/* Force Hover Styles */
.force-hover .header-container {
    padding: 12px 40px !important;
    border-radius: 30px !important;
    background-color: rgba(32, 54, 77, 0.8) !important;
    backdrop-filter: blur(30px) !important;
}

.force-hover .nav-item:not(:first-child) {
    display: block !important;
    animation: slideInSlow 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* ===============================================
   INDEX PAGE SLIDER SECTION - FIXED BACKGROUND
   =============================================== */
/* Index sayfasında slider tamamen fixed ve arka planda kalır */
.index-page .slider-section {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1; /* En arkada kalması için düşük z-index */
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.index-page .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Index sayfasında tüm content section'lar beyaz overlay yapar */
.index-page .drone-services-section,
.index-page .products-section,
.index-page .company-section,
.index-page .partners-section,
.index-page .contact-section,
.index-page .footer {
    position: relative;
    z-index: 10; /* Slider'ın üstünde */
    background-color: white;
}

/* İlk section'ın özel konumlandırması */
.index-page .drone-services-section {
    margin-top: 100vh; /* Viewport height kadar boşluk - slider'ın tam altından başlar */
    border-radius: 25px 25px 0 0;
}

/* Footer da white background alsın */
.index-page .footer {
    background-color: #34455D !important;
}

/* Slider'ı belirli section'larda gizle */
.index-page .company-section.animate-in ~ .slider-section,
.index-page .partners-section.animate-in ~ .slider-section,
.index-page .contact-section.animate-in ~ .slider-section {
    opacity: 0;
    pointer-events: none;
}

/* JavaScript ile kontrol edilecek slider gizleme */
.index-page .slider-section.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===============================================
   NORMAL SLIDER SECTION (İÇ SAYFALAR)
   =============================================== */
/* İç sayfalarda normal slider davranışı */
.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(100%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1) translateX(-50px);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-image {
    transform: scale(1) translateX(0);
}

.slide-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    width: 90%;
}

.slide-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

.slide-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide.active .slide-text {
    transform: translateY(0);
    opacity: 1;
}

.slide-btn {
    background: none;
    border: none;
    color: white;
    font-family: 'Helvetica Neue 65 Medium', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.slide.active .slide-btn {
    transform: translateY(0);
    opacity: 1;
}

.slide-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FE5D26;
    transition: width 0.3s ease;
}

.slide-btn:hover::after {
    width: 100%;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: clamp(30px, 5vh, 50px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.slide-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(80px, 20vw, 120px), 1fr));
    gap: clamp(8px, 2vw, 20px);
    align-items: center;
    justify-content: center;
}

.slide-nav-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: clamp(10px, 2.5vw, 15px) clamp(12px, 3vw, 20px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 1vw, 8px);
    min-height: clamp(65px, 12vw, 85px);
    justify-content: center;
}

.slide-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.slide-nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.slide-nav-icon {
    width: clamp(20px, 5vw, 32px);
    height: clamp(20px, 5vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.slide-nav-icon img {
    width: clamp(16px, 4vw, 24px);
    height: clamp(16px, 4vw, 24px);
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.slide-nav-item.active .slide-nav-icon img {
    filter: brightness(0) invert(1);
}

.slide-nav-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: clamp(9px, 2.2vw, 12px);
    line-height: 1.1;
    text-align: center;
    z-index: 2;
    position: relative;
    font-weight: 500;
}

.slide-nav-progress {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #FE5D26;
    border-radius: 15px;
    transition: none;
}

.slide-nav-item.active .slide-nav-progress {
    width: 100%;
    transition: width 5s linear;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    bottom: clamp(30px, 5vh, 50px);
    left: clamp(20px, 5vw, 50px);
    right: clamp(20px, 5vw, 50px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: clamp(44px, 10vw, 50px);
    height: clamp(44px, 10vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow:hover {
    background-color: rgba(254, 93, 38, 0.8);
    border-color: #FE5D26;
    transform: scale(1.1);
}

.slider-arrow svg {
    transition: transform 0.3s ease;
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
}

.slider-arrow:hover svg {
    transform: translateX(2px);
}

.slider-arrow-prev:hover svg {
    transform: translateX(-2px);
}

/* Content Sections - Tümü animasyon olmadan hemen görünür */
.drone-services-section,
.products-section,
.company-section,
.partners-section,
.contact-section {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 5;
    background-color: white;
}

/* Services and Company Text Areas - Desktop vs Mobile */
.services-text-mobile,
.company-text-mobile {
    display: none;
}

.services-text-overlay,
.company-text-overlay {
    position: absolute;
    bottom: 50px;
    left: 60px;
    z-index: 10;
    color: white;
    max-width: 550px;
}

/* Drone Services Section */
.drone-services-section {
    padding: 80px 0;
    background-color: white;
}

.services-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-content {
    position: relative;
    display: block;
}

.services-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-text-overlay {
    position: absolute;
    bottom: 50px;
    left: 60px;
    z-index: 10;
    color: white;
    max-width: 550px;
}

.services-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 52px;
    font-weight: bold;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.services-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.products-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
}

.products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.products-slider:active {
    cursor: grabbing;
}

.products-slider.dragging {
    transition: none;
    cursor: grabbing;
}

.product-card {
    min-width: calc(65% - 15px);
    background: white;
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 570px;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0.7;
    transform: scale(0.95);
    user-select: none;
    pointer-events: auto;
    height: 540px;
}

.product-card.active {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
    margin-bottom: 18px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.product-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 36px;
    height: 36px;
    align-self: flex-start;
}

.product-btn:hover {
    transform: scale(1.1);
}

.product-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    height: 440px;
    width: 570px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product-btn'ı btn class'ına çevir - animasyonlu */
.product-card .btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    align-self: flex-start;
}

.product-card .btn:hover {
    background: #FE5D26;
    border-radius: 25px;
    width: 120px;
    padding: 0 15px;
    justify-content: space-between;
    transform: scale(1.05);
}

.product-card .btn:hover::before {
    content: 'DETAY';
    color: white;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.product-card .btn img {
    width: 40px;
    height: 40px;
}

/* Company Section */
.company-section {
    padding: 80px 0;
    background-color: white;
}

.company-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-content {
    position: relative;
    display: block;
}

.company-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
}

.company-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.company-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 10;
    color: white;
    max-width: 700px;
    right: 60px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 1);
}

.company-description {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    line-height: 1.6;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 1);
}

.company-description p {
    margin-bottom: 12px;
}

.company-description p:last-child {
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: white;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.partners-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.1;
    color: #333;
    margin-bottom: 60px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.partner-logo:hover .logo-default {
    opacity: 0;
}

.partner-logo:hover .logo-hover {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.contact-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-map {
    border-radius: 25px;
    overflow: hidden;
    height: 900px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-phone {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.contact-email {
    font-size: 16px;
    color: #666;
}

.contact-address {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    flex: 1;
}

.form-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.form-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 15px 0;
    background: transparent;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FE5D26;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    opacity: 1;
}

.form-group textarea {
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #FE5D26;
    border-color: #FE5D26;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.kvkk-link,
.marketing-link {
    color: #FE5D26;
    cursor: pointer;
    text-decoration: underline;
}

.kvkk-link:hover,
.marketing-link:hover {
    color: #e04a1f;
}

.submit-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #FE5D26;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.submit-btn:hover {
    background-color: #e04a1f;
    transform: scale(1.1);
}

/* Submit-btn'ı submit-btn-new'e çevir - hareketli */
.submit-btn-new {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 15px;
}

.submit-btn-new:hover {
    background: #FE5D26;
    border-radius: 25px;
    width: 120px;
    padding: 0 15px;
    justify-content: space-between;
    transform: scale(1.05);
}

.submit-btn-new:hover::before {
    content: 'GÖNDER';
    color: white;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.submit-btn-new img {
    width: 40px;
    height: 40px;
}

/* MESAJ ALANI VE BUTON YAN YANA DÜZENİ - BUTON SAĞDA */
.message-and-button {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row-reverse; /* Bu satır butonu sağa taşır */
}

.message-group {
    flex: 1;
}

.submit-btn-new {
    margin-left: auto; /* Bu satır butonu sağa dayar */
}

/* KVKK Modal */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.kvkk-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.kvkk-modal-header {
    padding: 30px;
    background-color: #34455D;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kvkk-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Helvetica Neue Bold', sans-serif;
}

.kvkk-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.kvkk-close:hover {
    opacity: 0.7;
}

.kvkk-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.6;
}

.kvkk-modal-body h3 {
    color: #333;
    margin: 25px 0 15px 0;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Helvetica Neue Bold', sans-serif;
}

.kvkk-modal-body p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.kvkk-modal-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid #ddd;
}

.kvkk-accept-btn,
.kvkk-close-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.kvkk-accept-btn {
    background-color: #FE5D26;
    color: white;
}

.kvkk-accept-btn:hover {
    background-color: #e04a1f;
}

.kvkk-close-btn {
    background-color: #6c757d;
    color: white;
}

.kvkk-close-btn:hover {
    background-color: #545b62;
}

/* Footer */
.footer {
    background-color: #34455D;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.45);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.social-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    margin-top: 0;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Header Navigation - Aktif sayfa görünümü için ek CSS */
.nav-item:first-child .nav-link {
    color: white !important;
    font-weight: 600;
    pointer-events: none;
}

.mobile-nav-menu .mobile-nav-item {
    display: block !important;
}

.mobile-nav-link {
    color: white;
    opacity: 0.8;
}

.mobile-nav-link.active {
    color: #FE5D26 !important;
    opacity: 1;
}

/* Form Focus Styles */
.form-group.focused input,
.form-group.focused textarea {
    border-color: #FE5D26;
}

/* Ripple Animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container,
    .company-container,
    .contact-container {
        padding: 0 30px;
    }
    
    .products-container,
    .partners-container {
        padding: 0 40px;
    }
    
    .services-text-overlay,
    .company-text-overlay {
        left: 50px;
        max-width: 500px;
    }
    
    .services-title,
    .company-title {
        font-size: 44px;
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .company-description {
        font-size: 15px;
    }
    
    .product-card {
        min-width: calc(75% - 15px);
        grid-template-columns: 1fr 450px;
        padding: 50px;
        gap: 50px;
        height: 500px;
    }
    
    .product-image {
        height: 380px;
        width: 450px;
    }
    
    .partners-logos {
        gap: 60px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Index sayfasında mobile değişiklikler */
    .index-page .slider-section {
        position: relative !important;
        height: 60vh !important;
    }
    
    .index-page .drone-services-section {
        margin-top: -3vh !important;
        padding-top: 80px;
    }
    
    .slide-title {
        font-size: clamp(26px, 6vw, 32px);
    }
    
    .slide-text {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 25px;
    }
    
    .header:hover .header-container {
        padding: 12px 25px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    /* Mobile'da parallax devre dışı */
    .slide-image {
        transform: none !important;
    }
    
    .drone-services-section,
    .company-section,
    .partners-section,
    .contact-section {
        padding: 60px 0;
    }
    
    /* Hide Desktop Overlay Text, Show Mobile Text */
    .services-text-overlay,
    .company-text-overlay {
        display: none !important;
    }
    
    .services-text-mobile,
    .company-text-mobile {
        display: block !important;
        background: white;
        padding: 30px 25px;
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }
    
    .services-content,
    .company-content {
        display: flex;
        flex-direction: column;
    }
    
    .services-image,
    .company-image {
        height: clamp(250px, 35vw, 300px);
        border-radius: 25px;
        overflow: hidden;
        position: relative;
    }
    
    .services-image img,
    .company-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Services Mobile Text Styles */
    .services-text-mobile .services-title {
        font-size: clamp(28px, 6vw, 32px) !important;
        color: #000 !important;
        text-shadow: none !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }
    
    .services-text-mobile .services-description {
        color: #333 !important;
        text-shadow: none !important;
        font-size: clamp(14px, 3.8vw, 16px) !important;
        line-height: 1.6 !important;
    }
    
    /* Company Mobile Text Styles */
    .company-text-mobile .company-title {
        font-size: clamp(28px, 6vw, 32px) !important;
        color: #333 !important;
        text-shadow: none !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }
    
    .company-text-mobile .company-description {
        color: #666 !important;
        text-shadow: none !important;
        font-size: clamp(14px, 3.5vw, 16px) !important;
        line-height: 1.6 !important;
    }
    
    .company-text-mobile .company-description p {
        margin-bottom: 15px !important;
        color: #666 !important;
    }
    
    .services-container,
    .products-container,
    .company-container,
    .partners-container,
    .contact-container {
        padding: 0 25px;
    }
    
    .product-card {
        min-width: calc(90% - 15px);
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 30px;
        height: auto;
    }
    
    .product-image {
        height: 250px;
        width: 100%;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo {
        height: clamp(80px, 15vw, 100px);
    }
    
    .partners-title,
    .contact-title {
        font-size: clamp(28px, 6vw, 32px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map {
        height: clamp(300px, 50vw, 400px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .message-and-button {
        flex-direction: column;
        gap: 15px;
        align-items: flex-end; 
    }

    .submit-btn-new {
        align-self: flex-end;
        margin-top: 0;
        margin-left: 0; 
    }
    
    .kvkk-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .kvkk-modal-header {
        padding: 20px;
    }
    
    .kvkk-modal-header h2 {
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .kvkk-modal-body {
        padding: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 25px;
    }
    
    .footer-right {
        align-items: flex-start;
    }
    
    .footer-nav {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    /* Mobile'da slider section daha da kısalt */
    .index-page .slider-section {
        height: 75vh !important; /* 480px altında biraz daha az */
    }
    
    /* Mobile'da drone services normal margin */
    .index-page .drone-services-section {
        margin-top: -3vh !important;
    }
    
    .drone-services-section,
    .products-section,
    .company-section,
    .partners-section,
    .contact-section {
        padding: 50px 0;
        padding-top: 70px;
    }
    
    /* Mobile Text Areas - Small Screens */
    .services-text-mobile,
    .company-text-mobile {
        padding: clamp(20px, 5vw, 25px) !important;
        margin-top: 15px;
    }
    
    .services-image,
    .company-image {
        height: clamp(220px, 45vw, 250px) !important;
    }
    
    .services-text-mobile .services-title {
        font-size: clamp(24px, 6.5vw, 28px) !important;
        margin-bottom: 15px !important;
        color: #000 !important;
    }
    
    .services-text-mobile .services-description {
        font-size: clamp(13px, 3.5vw, 14px) !important;
        line-height: 1.5 !important;
        color: #333 !important;
    }
    
    .company-text-mobile .company-title {
        font-size: clamp(24px, 6.5vw, 28px) !important;
        margin-bottom: 15px !important;
    }
    
    .company-text-mobile .company-description {
        font-size: clamp(13px, 3.5vw, 14px) !important;
        line-height: 1.5 !important;
    }
    
    .company-text-mobile .company-description p {
        margin-bottom: 12px !important;
    }
    
    .services-container,
    .products-container,
    .company-container,
    .partners-container,
    .contact-container {
        padding: 0 20px;
    }
    
    .product-card {
        min-width: calc(95% - 15px);
        padding: 25px;
    }
    
    .product-title {
        font-size: clamp(20px, 5vw, 22px);
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partner-logo {
        height: clamp(60px, 12vw, 80px);
    }
    
    .partners-title,
    .contact-title {
        font-size: clamp(24px, 6.5vw, 28px);
    }
    
    .form-title {
        font-size: clamp(18px, 4.5vw, 20px);
    }
    
    .kvkk-modal-content {
        margin: 5% auto;
        width: 98%;
        max-height: 90vh;
    }
    
    .kvkk-modal-header {
        padding: 15px;
    }
    
    .kvkk-modal-header h2 {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    .kvkk-modal-body {
        padding: 15px;
    }
    
    .kvkk-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .kvkk-accept-btn,
    .kvkk-close-btn {
        width: 100%;
    }
    
    .footer-social {
        flex-wrap: wrap;
        gap: 20px;
    }
}
/* PRODUCTS SECTION - MOBİLDE TEK KART GÖSTER (GERÇEK SLİDER) */
@media (max-width: 768px) {
    .products-container {
        overflow: hidden !important;
        position: relative !important;
        padding: 0 25px !important;
    }
    
    .products-slider {
        display: block !important;
        overflow: hidden !important;
        width: 100% !important;
        transform: none !important; /* JS transform'unu iptal et */
        transition: none !important;
        position: relative !important;
        height: auto !important;
    }
    
    .product-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        flex-shrink: 0 !important;
        display: none !important; /* Hepsini gizle */
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        margin: 0 !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 25px !important;
        padding: 30px !important;
        height: auto !important;
    }
    
    .product-card.active {
        display: grid !important; /* Sadece aktif olanı göster */
    }
    
    .product-image {
        height: 250px !important;
        width: 100% !important;
        order: -1 !important; /* Resmi üste taşı */
    }
}

@media (max-width: 480px) {
    .products-container {
        padding: 0 20px !important;
    }
    
    .product-card {
        padding: 20px !important;
    }
}

/* FOOTER TELEFON LİNK RENGİ DÜZELTMESİ */
.footer-contact a {
    color: rgba(255, 255, 255, 0.45) !important;
    text-decoration: none !important;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}