/* Fox Teknoloji CSS - Optimized Beam Style */

/* Critical CSS - Load First */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-color: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --gray: #374151;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --blue: #3b82f6;
    --green: #10b981;
    --yellow: #f59e0b;
    --red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;

}
a {
  text-decoration: none;
}

/* Header - Critical */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}

/* Logo link'i için ek stil - User Agent Override */
a.logo-text,
a:hover.logo-text,
a:focus.logo-text,
a:active.logo-text,
a:-webkit-any-link.logo-text,
a:visited.logo-text,
a:link.logo-text,
a:any-link.logo-text,
.logo-text,
.logo-text:link,
.logo-text:visited,
.logo-text:hover,
.logo-text:focus,
.logo-text:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
}

/* Logo container - mor daire */
.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    outline: none !important;
    background: #7c3aed;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-text {
    color: var(--white);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    outline: none !important;
    background: #7c3aed;
}

.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover {
    color: #7c3aed;
}

.header.scrolled .nav-link:hover {
    color: #7c3aed;
}

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

.btn-contact {
    background: var(--white);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Hero Section - Critical */
.hero-section {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none; /* Initially hidden */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    z-index: 3;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    height: 4.5rem; /* Sabit yükseklik */
    display: flex;
    align-items: center;
}

/* Typewriter animation styles */
.typewriter-container {
    display: inline-block;
    position: relative;
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #7c3aed;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    min-width: 1px;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: var(--white);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: baseline;
}

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

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--white); }
}

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

/* Typewriter container animation */
.typewriter-wrapper {
    display: inline-block;
    height: 4.2rem; /* Sabit yükseklik */
    vertical-align: top;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* App Store Buttons - Direct Images */
.app-button {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 42px; /* Fixed height for consistency */
}

.app-button:hover {
    transform: translateY(-2px);
}

.app-button img {
    width: 140px;
    height: 42px; /* Fixed height to match button */
    object-fit: contain; /* Maintain aspect ratio */
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 3;
}

/* Video Placeholder */
.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: opacity 0.3s ease;
}

.video-placeholder .play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-placeholder .play-button:hover {
    opacity: 1;
    transform: scale(1.1);
    animation: none;
}

.video-placeholder .video-text {
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
}

/* Video loading animation */
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.video-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1001;
    margin-top: 0.5rem;
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--black);
}

/* Dropdown arrow animation */
.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

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

/* Priorities Section */
.priorities-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.priorities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

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

.priority-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.priority-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.priority-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.priority-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* Global Footprint Section */
.global-section {
    padding: 8rem 0;
    background: var(--white);
}

.global-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.global-header {
    text-align: center;
    margin-bottom: 5rem;
}

.global-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.global-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Turkey Map Container */
.turkey-map-container {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    margin-top: 2rem;
}

/* jQuery Vector Map Container */
.turkey-map-containers {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    margin-top: 2rem;
}

#world-map {
    width: 100%;
    height: 500px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

/* Vector Map Tooltip Styling */
.jvectormap-tip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.jvectormap-zoomin,
.jvectormap-zoomout {
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.jvectormap-zoomin:hover,
.jvectormap-zoomout:hover {
    background: #5b21b6;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.map-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

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

.turkey-map-svg {
    width: 100%;
    height: 500px;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turkey-map-svg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(124, 58, 237, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.turkey-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-legend {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.legend-color.active {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.legend-color.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
}

.legend-color.inactive {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Reimagine Section */
.reimagine-section {
    padding: 8rem 0;
    background: var(--black);
    color: var(--white);
}

.reimagine-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.reimagine-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.reimagine-subtitle {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.reimagine-card {
    text-align: center;
    padding: 2rem 1rem;
}

.reimagine-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
    font-size: 2rem;
}

.reimagine-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reimagine-card p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Newsroom Section */
.newsroom-section {
    padding: 8rem 0;
    background: var(--white);
}

.newsroom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsroom-header {
    text-align: center;
    margin-bottom: 5rem;
}

.newsroom-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

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

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.news-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.news-content {
    padding: 2rem;
}

.news-category {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-date {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.footer-app-button {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 36px; /* Fixed height for footer buttons */
}

.footer-app-button:hover {
    transform: translateY(-2px);
}

.footer-app-button img {
    width: 120px;
    height: 36px; /* Fixed height to match footer button */
    object-fit: contain; /* Maintain aspect ratio */
    display: block;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .priorities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reimagine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        height: 3rem; /* Sabit yükseklik */
    }
    
    .typewriter-wrapper {
        height: 2.8rem; /* Sabit yükseklik */
    }
    
    .typewriter-text {
        font-size: 2.5rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .priorities-grid {
        grid-template-columns: 1fr;
    }
    
    .reimagine-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Turkey Map Mobile Styles */
    .turkey-map-container {
        padding: 1.5rem;
    }
    
    .turkey-map-containers {
        padding: 1rem;
    }
    
    #world-map {
        height: 300px;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-subtitle {
        font-size: 1rem;
    }
    
    .map-legend {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        height: 2.5rem; /* Sabit yükseklik */
    }
    
    .typewriter-wrapper {
        height: 2.3rem; /* Sabit yükseklik */
    }
    
    .typewriter-text {
        font-size: 2rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-button {
        height: 36px; /* Smaller height for mobile */
    }
    
    .app-button img {
        width: 120px;
        height: 36px; /* Smaller height for mobile */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reimagine-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .btn-contact {
        text-align: center;
        width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-right: 1rem;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.current-flag {
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.current-code {
    font-weight: 600;
}

.header.scrolled .current-language {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-700);
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .current-language:hover {
    background: rgba(0, 0, 0, 0.1);
}

.current-language i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-switcher:hover .current-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 1001;
    list-style: none;
    margin-top: 0.5rem;
}

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

.language-dropdown li {
    margin: 0;
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-dropdown li a:hover {
    background: var(--gray-50);
    color: var(--black);
}

.language-dropdown li.active a {
    background: var(--gray-100);
    color: var(--black);
    font-weight: 600;
}

.language-dropdown .flag {
    font-size: 1.2rem;
}

.language-dropdown .name {
    flex: 1;
}

/* Responsive Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .current-language {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .language-dropdown {
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--purple) 0%, #5b21b6 50%, #7c3aed 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.contact-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.contact-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f3f4f6, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.contact-hero .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
    line-height: 1.6;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.05), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-method:hover {
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    color: white;
    flex-shrink: 0;
}

.contact-method:hover .contact-icon {
    background: white;
    color: var(--purple);
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), #5b21b6, #7c3aed);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    font-family: inherit;
}

.form-group input:hover,
.form-group textarea:hover {
    background: white;
    border-color: #d1d5db;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.file-upload {
    position: relative;
    border: 2px dashed var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--purple);
    background: rgba(124, 58, 237, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.file-upload-label svg {
    width: 48px;
    height: 48px;
    color: var(--purple);
}

.file-upload-label.has-file {
    color: var(--purple);
}

.form-help {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.btn-primary {
    background: var(--purple);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-container {
    text-align: center;
}

.map-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.map-container p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    background: var(--white);
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--gray);
}

.map-content svg {
    color: var(--purple);
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.map-content p {
    font-size: 1rem;
    margin: 0;
    max-width: 400px;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-info h2,
    .map-container h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-info h2,
    .map-container h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
} 