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

:root {
    --primary-red: #dc2626;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

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

/* Top Red Line */
.top-red-line {
    width: 100%;
    max-width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0;
    padding: 0;
}

/* Top Bar with Phone Number */
.top-bar {
    width: 100%;
    max-width: 100%;
    background-color: var(--primary-red);
    padding: 12px 0;
    margin: 0;
    box-sizing: border-box;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: white;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number span:not(.sube-label) {
    font-size: 18px;
}

.phone-number a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.phone-number a:hover {
    opacity: 0.8;
}

.sube-label {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

/* Header & Navigation */
header {
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

/* Bursluluk butonu nav-menu stillerinden etkilenmemeli */
.nav-menu .bursluluk-menu-item a.bursluluk-nav-btn {
    color: white !important;
}

.nav-menu .bursluluk-menu-item a.bursluluk-nav-btn:hover {
    color: white !important;
}

/* Bursluluk Nav Button */
.bursluluk-menu-item {
    margin-left: 10px !important;
    list-style: none !important;
}

.bursluluk-menu-item a {
    display: flex !important;
    align-items: center !important;
}

.bursluluk-nav-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #dc2626 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
    transition: all 0.3s ease !important;
    animation: pulse-glow 2s ease-in-out infinite, rotate-icon 3s linear infinite !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.bursluluk-nav-btn::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transform: rotate(45deg) !important;
    animation: shine 3s infinite !important;
}

.bursluluk-nav-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6) !important;
    animation: pulse-glow 1s ease-in-out infinite, rotate-icon 2s linear infinite !important;
    color: white !important;
}

.bursluluk-nav-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.bursluluk-nav-btn.active:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-icon {
    font-size: 18px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.btn-text {
    position: relative !important;
    z-index: 1 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 2px 8px !important;
    border-radius: 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(4px) !important;
    animation: blink 1.5s ease-in-out infinite !important;
    position: relative !important;
    z-index: 1 !important;
    display: inline-block !important;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(239, 68, 68, 0.7), 0 0 30px rgba(239, 68, 68, 0.3);
    }
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Container */
.directions-container {
    position: relative;
    display: flex;
    align-items: center;
}

.directions-btn {
    background: var(--primary-red) !important;
    color: white !important;
    border: none !important;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.directions-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.directions-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.directions-btn span {
    white-space: nowrap;
}

/* Directions Modal */
.directions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.directions-modal.closing {
    animation: fadeOut 0.2s ease;
}

.directions-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.directions-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    animation: slideUp 0.3s ease;
}

.directions-modal-content h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 24px;
}

.directions-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.directions-modal-close:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.directions-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
}

.direction-option:hover {
    border-color: var(--primary-red);
    background: #fef2f2;
    transform: translateX(5px);
}

.direction-option svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.direction-option div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.direction-option strong {
    color: var(--text-dark);
    font-size: 16px;
}

.direction-option span {
    color: var(--text-gray);
    font-size: 14px;
}

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 10001;
    position: relative;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger.active span {
    background-color: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

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

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

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

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Bursluluk Banner Section */
.bursluluk-banner-section {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
}

.bursluluk-banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.bursluluk-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.bursluluk-image-overlay {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.bursluluk-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bursluluk-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s;
}

.bursluluk-overlay-text span {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.bursluluk-link:hover .bursluluk-banner-image {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bursluluk-link:hover .bursluluk-overlay-text {
    background: linear-gradient(to top, rgba(220, 38, 38, 0.9) 0%, rgba(220, 38, 38, 0.6) 50%, transparent 100%);
    padding-bottom: 25px;
}

.popup-bursluluk-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.popup-image-overlay {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.popup-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
}

.popup-overlay-text span {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.popup-bursluluk-link:hover .popup-overlay-text {
    background: linear-gradient(to top, rgba(220, 38, 38, 0.9) 0%, rgba(220, 38, 38, 0.6) 50%, transparent 100%);
    padding-bottom: 25px;
}

/* Bursluluk Page */
.bursluluk-page-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.bursluluk-page-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bursluluk-page-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 40px;
}

.bursluluk-page-image {
    margin-bottom: 30px;
}

.bursluluk-page-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.bursluluk-page-info {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bursluluk-page-info p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bursluluk-contact-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #e02020 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.bursluluk-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Bursluluk Form Section */
.bursluluk-form-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.bursluluk-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.bursluluk-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 35px;
}

.bursluluk-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row-bursluluk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 22px;
}

.input-wrapper select {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background-color: white;
    color: var(--text-dark);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    cursor: pointer;
}

.input-wrapper select:focus {
    border-color: #000000;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.input-wrapper select:hover {
    border-color: #000000;
}

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.hero-image-container img {
    max-width: 85%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 7px;
    box-shadow: 0 0 25px 8px rgba(15, 15, 15, 0.85);
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.feature-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 6px 12px rgba(0, 0, 0, 0.12);
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #e02020 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.feature-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: #ffeb3b;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s;
}

/* Success Section */
.success-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}


.success-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.success-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}

.success-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.success-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.success-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.success-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    text-align: justify;
}

.success-text p:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.success-image {
    transition: transform 0.3s;
}

.success-image:hover {
    transform: scale(1.02);
}

/* Deneme Section */
.deneme-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}


.deneme-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.deneme-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.deneme-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.deneme-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deneme-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    text-align: justify;
}

.deneme-text p:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.deneme-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}

.deneme-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.deneme-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.3s;
}

.deneme-image:hover {
    transform: scale(1.02);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.success-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.success-icon {
    width: 50px;
    height: 50px;
    color: white;
    stroke-width: 3;
    animation: checkmark 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.success-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.success-message {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 30px;
    line-height: 1.6;
}

.success-close-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e02020 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.success-close-btn:hover::before {
    width: 300px;
    height: 300px;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.success-close-btn:active {
    transform: translateY(0);
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Error Modal */
.error-modal {
    display: none;
    position: fixed;
    z-index: 10004;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-modal.active {
    display: flex;
}

.error-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.error-modal-content {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.error-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.error-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.error-icon {
    width: 50px;
    height: 50px;
    color: white;
    stroke-width: 3;
}

.error-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.error-message {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 30px;
    line-height: 1.6;
}

.error-close-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    position: relative;
    overflow: hidden;
}

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

.error-close-btn:hover::before {
    width: 300px;
    height: 300px;
}

.error-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.error-close-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 2px;
}

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

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    flex-wrap: wrap;
}

.contact-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(3px);
}

.sube-label-footer {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    margin-left: auto;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-link svg {
    width: 24px;
    height: 24px;
    z-index: 1;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
    background: #166fe5;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.5);
    filter: brightness(1.1);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    background: #e60000;
}

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

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.powered-by {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.powered-by a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.powered-by a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.powered-by a:hover {
    color: #ff6b6b;
}

.powered-by a:hover::after {
    width: 100%;
}

/* Welcome Popup */
.welcome-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10003;
    animation: fadeIn 0.3s ease;
}

.welcome-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: visible;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0.5;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popup-close:not(:disabled) {
    opacity: 1;
    pointer-events: auto;
    background: var(--primary-red);
}

.popup-close:not(:disabled):hover {
    background: #e02020;
    transform: rotate(90deg) scale(1.1);
}

.popup-close:not(:disabled):active {
    transform: rotate(90deg) scale(0.95);
}

.popup-image-wrapper {
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #f0f0f0;
}

.popup-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    min-height: 260px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.popup-timer {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 24px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-count {
    color: #ffeb3b;
    font-weight: 700;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.popup-timer.hidden {
    display: none;
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Video Section */
.video-section {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    outline: none;
}

/* Kunduz Section */
.kunduz-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}


.kunduz-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kunduz-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}

.kunduz-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.kunduz-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.kunduz-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kunduz-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
}

.kunduz-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kunduz-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    border-radius: 10px;
    transition: all 0.3s;
}

.kunduz-features li:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.kunduz-features li svg {
    color: var(--primary-red);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.kunduz-features li span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}


.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Info Side */
.form-info-side {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.form-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.info-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    margin-top: 20px;
    padding-left: 0;
}

.info-highlight svg {
    color: var(--primary-red);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.info-highlight p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Form Side */
.form-input-side {
    background: white;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group-modern {
    position: relative;
    margin-bottom: 22px;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
}

.form-group-modern label span {
    color: var(--primary-red);
    margin-left: 3px;
}

.input-wrapper {
    position: relative;
}

.input-svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1;
}

.textarea-svg {
    top: 20px;
    transform: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background-color: white;
    color: var(--text-dark);
    box-sizing: border-box;
}

.input-wrapper textarea {
    padding-top: 16px;
    min-height: 120px;
    resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-wrapper:has(input:focus) .input-svg,
.input-wrapper:has(textarea:focus) .textarea-svg {
    color: var(--primary-red);
}

/* Karakter Sayacı */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    margin-bottom: 3px;
}

.char-counter .char-count {
    font-weight: 600;
}

.char-counter.limit-reached .char-count {
    color: #dc2626;
    font-weight: 700;
}

/* Karakter Limit Hatası */
.char-limit-error {
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    padding: 6px 10px;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.input-wrapper input.limit-exceeded,
.input-wrapper textarea.limit-exceeded {
    border-color: #dc2626;
    background-color: #fef2f2;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-submit-btn-modern {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e02020 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.form-submit-btn-modern:hover::before {
    left: 100%;
}

.form-submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.form-submit-btn-modern:active {
    transform: translateY(-1px);
}

.form-submit-btn-modern svg {
    transition: transform 0.3s;
}

.form-submit-btn-modern:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1237px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 50%, #1e3a5f 100%);
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu a {
        display: block;
        padding: 25px 40px;
        font-size: 24px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        position: relative;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

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

    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: rgba(255, 255, 255, 0.05);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .nav-menu a:hover {
        color: #ffeb3b;
        transform: translateX(10px);
        padding-left: 50px;
    }

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

    .nav-menu a:hover::after {
        width: 100%;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.5s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        margin-left: auto;
    }

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

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

    .success-title {
        font-size: 28px;
    }

    .success-text p {
        font-size: 15px;
    }

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

    .deneme-title {
        font-size: 28px;
    }

    .deneme-text p {
        font-size: 15px;
    }

    .video-section {
        padding: 60px 0;
    }

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

    .bursluluk-form-container {
        padding: 35px 25px;
    }

    .bursluluk-form-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .form-row-bursluluk {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kunduz-title {
        font-size: 28px;
    }

    .kunduz-features li span {
        font-size: 15px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-info-side {
        position: static;
        padding: 40px 30px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 15px;
    }

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

    .info-highlight {
        padding: 18px;
    }

    .info-highlight p {
        font-size: 16px;
    }

    .form-input-side {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .logo {
        height: 70px;
    }

    .top-bar {
        padding: 10px 0;
    }

    .phone-number {
        font-size: 14px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .phone-item {
        gap: 6px;
    }

    .phone-number span:not(.sube-label) {
        font-size: 16px;
    }

    .sube-label {
        font-size: 11px;
        padding: 3px 8px;
    }

    .nav-menu a {
        padding: 20px 30px;
        font-size: 20px;
    }

    .bursluluk-nav-btn {
        padding: 12px 20px;
        font-size: 16px;
        margin: 10px 0;
    }

    .btn-icon {
        font-size: 20px;
    }

    .btn-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .bursluluk-nav-btn {
        padding: 12px 20px;
        font-size: 16px;
        margin: 10px 0;
    }

    .btn-icon {
        font-size: 20px;
    }

    .btn-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        margin-left: auto;
    }

    .search-box.active {
        width: 200px;
    }

    .bursluluk-banner-section {
        padding: 20px 0;
    }

    .bursluluk-banner-wrapper {
        padding: 0 15px;
    }

    .bursluluk-banner-image {
        border-radius: 8px;
    }

    .hero-image-container img {
        max-width: 90%;
        max-height: 60vh;
        border-radius: 7px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .success-section {
        padding: 60px 0;
    }

    .success-content {
        gap: 35px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-text {
        gap: 18px;
    }

    .success-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .deneme-section {
        padding: 60px 0;
    }

    .deneme-content {
        gap: 35px;
    }

    .deneme-title {
        font-size: 24px;
    }

    .deneme-text {
        gap: 18px;
    }

    .deneme-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .video-section {
        padding: 50px 0;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .kunduz-section {
        padding: 60px 0;
    }

    .kunduz-content {
        gap: 35px;
    }

    .kunduz-title {
        font-size: 24px;
    }

    .kunduz-features {
        gap: 18px;
    }

    .kunduz-features li {
        padding: 14px 18px;
    }

    .kunduz-features li span {
        font-size: 14px;
    }

    .contact-form-section {
        padding: 50px 0;
    }

    .form-header {
        margin-bottom: 40px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 15px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.floating-label input,
    .form-group.floating-label textarea {
        padding: 16px 45px 16px 16px;
    }

    .form-group.floating-label label {
        font-size: 14px;
        top: 16px;
    }

    .form-submit-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .form-footer {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    .navbar {
        padding: 10px 0;
    }

    .phone-number {
        font-size: 13px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-item {
        gap: 5px;
    }

    .phone-number span:not(.sube-label) {
        font-size: 15px;
    }

    .sube-label {
        font-size: 10px;
        padding: 2px 6px;
    }

    .bursluluk-nav-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn-icon {
        font-size: 14px;
    }

    .btn-text {
        display: none;
    }

    .btn-badge {
        font-size: 9px;
        padding: 2px 5px;
    }


    .nav-menu a {
        padding: 18px 20px;
        font-size: 18px;
    }

    /* Footer Responsive */
    .footer {
        padding: 50px 0 20px;
        margin-top: 60px;
    }

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

    .footer-about {
        max-width: 100%;
    }

    .footer-logo img {
        height: 70px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .copyright,
    .powered-by {
        font-size: 13px;
    }

    .contact-item {
        font-size: 15px;
        padding: 10px 12px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .bursluluk-banner-section {
        padding: 15px 0;
    }

    .bursluluk-banner-wrapper {
        padding: 0 10px;
    }

    .bursluluk-banner-image {
        border-radius: 6px;
    }

    .bursluluk-form-container {
        padding: 30px 20px;
    }

    .bursluluk-form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-row-bursluluk {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .error-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

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

    .error-icon {
        width: 40px;
        height: 40px;
    }

    .error-title {
        font-size: 22px;
    }

    .error-message {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .error-close-btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .hero-image-container img {
        max-width: 90%;
        max-height: 50vh;
        border-radius: 7px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .features-section {
        padding: 40px 0;
    }

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

    .feature-card {
        padding: 22px 18px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .success-section {
        padding: 50px 0;
    }

    .success-content {
        gap: 30px;
    }

    .success-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .success-text {
        gap: 15px;
    }

    .success-text p {
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
    }

    .deneme-section {
        padding: 50px 0;
    }

    .deneme-content {
        gap: 30px;
    }

    .deneme-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .deneme-text {
        gap: 15px;
    }

    .deneme-text p {
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
    }

    .video-section {
        padding: 40px 0;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .main-video {
        border-radius: 8px;
    }

    .kunduz-section {
        padding: 50px 0;
    }

    .kunduz-content {
        gap: 30px;
    }

    .kunduz-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .kunduz-features {
        gap: 15px;
    }

    .kunduz-features li {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kunduz-features li svg {
        width: 20px;
        height: 20px;
    }

    .kunduz-features li span {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    /* Welcome Popup Responsive */
    .popup-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .popup-timer {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .timer-count {
        font-size: 14px;
    }

    .form-header {
        margin-bottom: 30px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .form-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .form-container {
        gap: 25px;
    }

    .form-info-side {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .form-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .info-highlight {
        padding: 15px;
    }

    .info-highlight svg {
        width: 24px;
        height: 24px;
    }

    .info-highlight p {
        font-size: 14px;
    }

    .form-input-side {
        padding: 25px 20px;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        padding: 12px 16px 12px 42px;
        font-size: 14px;
    }

    .input-svg {
        left: 14px;
        width: 18px;
        height: 18px;
    }

    .form-group-modern label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-submit-btn-modern {
        padding: 14px 25px;
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .form-footer {
        font-size: 16px;
        margin-top: 25px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }

    .modal-image {
        max-width: 95%;
        max-height: 85vh;
    }

    .success-modal-content {
        padding: 40px 30px;
        max-width: 90%;
        border-radius: 20px;
    }

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

    .success-icon {
        width: 40px;
        height: 40px;
    }

    .success-title {
        font-size: 22px;
    }

    .success-message {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .success-close-btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .nav-menu {
        top: 110px;
    }
}

