/**
 * Strategic Maritime - Suriye Gemi İnşaa Yatırımı
 * Ana Stil Dosyası
 */

/* Değişkenler ve Temel Ayarlar */
:root {
    /* Ana renkler */
    --primary: #0c3b6b;
    --primary-light: #1562af;
    --primary-dark: #0a2344;
    --secondary: #184786;
    
    /* Vurgu renkleri */
    --accent: #FF6B35;
    --accent-light: #FF8F65;
    --accent-dark: #E74E1B;
    
    /* Neon renkler (efektler için) */
    --neon-blue: #0984e3;
    --neon-turquoise: #00cec9;
    --neon-purple: #6c5ce7;
    --neon-green: #00b894;
    
    /* Metin renkleri */
    --text-dark: #0a1a2f;
    --text-muted: #506478;
    --text-light: #f0f5ff;
    
    /* Arkaplan renkleri */
    --bg-dark: #0a1523;
    --bg-light: #f5f8ff;
    --bg-white: #ffffff;
    
    /* Gradyanlar */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-dark));
    --gradient-neon: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    
    /* Gölgeler */
    --shadow-sm: 0 2px 10px rgba(10, 26, 47, 0.05);
    --shadow-md: 0 5px 20px rgba(10, 26, 47, 0.1);
    --shadow-lg: 0 10px 40px rgba(10, 26, 47, 0.15);
    --shadow-accent: 0 5px 25px rgba(255, 107, 53, 0.3);
    
    /* Border */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --border-radius-pill: 50px;
    --border-radius-circle: 50%;
    
    /* Animasyon */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Font ağırlıkları */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Boyutlar */
    --header-height: 80px;
    --container-width: 1200px;
}

/* Temel Sıfırlama */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    font-weight: var(--font-bold);
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    text-align: center;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn i {
    margin-left: 8px;
    transition: transform var(--transition-normal);
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.4);
    color: var(--text-light);
}

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

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

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

.loader-svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.loader-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 6;
}

@keyframes dash {
    0% { stroke-dashoffset: 290; }
    100% { stroke-dashoffset: 0; }
}

#loader-path {
    animation: dash 2s ease-in-out infinite forwards;
    stroke-dasharray: 290;
}

.loader-text {
    display: flex;
    gap: 2px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
}

.loader-text span {
    animation: wave 1.5s infinite;
    animation-delay: calc(0.1s * var(--i));
    opacity: 0;
}

.loader-text span:nth-child(1) { --i: 1; }
.loader-text span:nth-child(2) { --i: 2; }
.loader-text span:nth-child(3) { --i: 3; }
.loader-text span:nth-child(4) { --i: 4; }
.loader-text span:nth-child(5) { --i: 5; }
.loader-text span:nth-child(6) { --i: 6; }
.loader-text span:nth-child(7) { --i: 7; }
.loader-text span:nth-child(8) { --i: 8; }
.loader-text span:nth-child(9) { --i: 9; }
.loader-text span:nth-child(10) { --i: 10; }
.loader-text span:nth-child(11) { --i: 11; }
.loader-text span:nth-child(12) { --i: 12; }
.loader-text span:nth-child(13) { --i: 13; }
.loader-text span:nth-child(14) { --i: 14; }
.loader-text span:nth-child(15) { --i: 15; }
.loader-text span:nth-child(16) { --i: 16; }
.loader-text span:nth-child(17) { --i: 17; }
.loader-text span:nth-child(18) { --i: 18; }

@keyframes wave {
    0% { transform: translateY(0); opacity: 0; }
    25% { opacity: 1; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0; }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
nav {
    background-color: rgba(10, 21, 35, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    height: var(--header-height);
}

nav.scrolled {
    background-color: rgba(10, 21, 35, 0.95);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: var(--font-bold);
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    color: var(--accent);
}

.logo:hover {
    color: var(--accent);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--accent);
    font-size: 1.5rem;
}

.logo-text {
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    height: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

nav ul li {
    height: 100%;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0 0.4rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobil menü barları */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 100;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.bar, 
nav .bar, 
.nav-container .bar,
.mobile-menu-btn .bar {
    width: 24px !important;
    height: 2px !important;
    background-color: white !important;
    margin: 5px 0 !important;
    transition: 0.3s;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.bar:nth-child(1) {
    transform-origin: left center;
}

.bar:nth-child(2) {
    transform-origin: center;
    opacity: 1 !important;
}

.bar:nth-child(3) {
    transform-origin: left center;
}

.mobile-menu-btn.active .bar {
    background-color: white !important; /* Aktif durumda da beyaz kalsın */
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(-6px) rotate(45deg);
    width: 22px;
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(6px) rotate(-45deg);
    width: 22px;
}

/* Hero Section */
header {
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.ocean {
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
}

.wave {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230c3b6b" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,186.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 25s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    animation: wave 25s linear reverse infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--font-semibold);
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--text-light), var(--neon-turquoise));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.ships-silhouette {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 60%;
    height: auto;
    z-index: 1;
    opacity: 0.15;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    color: var(--accent);
}

.mouse {
    width: 30px;
    height: 45px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    background-color: var(--text-light);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.5s ease infinite;
}

@keyframes mouse-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    animation: arrow-down 1.5s ease infinite;
}

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

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

@keyframes arrow-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 20%;
    animation-delay: 7s;
}

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

/* Section Title */
.section-title-container {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: var(--font-semibold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--primary-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    left: -50px;
    top: 0;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    right: -50px;
    top: 0;
}

/* Background Elements */
.section-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(10, 35, 68, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
    z-index: 0;
}

.section-bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 68, 0.03) 25%, transparent 25%),
                linear-gradient(225deg, rgba(10, 35, 68, 0.03) 25%, transparent 25%),
                linear-gradient(315deg, rgba(10, 35, 68, 0.03) 25%, transparent 25%),
                linear-gradient(45deg, rgba(10, 35, 68, 0.03) 25%, transparent 25%);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    z-index: 1;
    border-top: 4px solid transparent;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), transparent);
    transition: height var(--transition-normal);
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: rgba(12, 59, 107, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    color: var(--primary-dark);
}

.feature-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

/* Counter Section */
.counter-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.counter-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.counter-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: skewY(-3deg);
    transform-origin: top right;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.counter-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
}

.counter-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    position: relative;
}

.counter-number::after {
    content: attr(data-count);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.counter-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: var(--font-medium);
}

/* Advantage Section */
.advantage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantage-text {
    padding-right: 2rem;
}

.advantage-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.advantage-quote {
    padding: 2rem;
    background: rgba(12, 59, 107, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-dark);
}

.advantage-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--bg-white);
    padding: 1.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.highlight-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: width var(--transition-normal);
    z-index: -1;
}

.highlight-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(12, 59, 107, 0.1);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition-normal);
}

.highlight-card:hover .highlight-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    transition: all var(--transition-normal);
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Opportunity Section */
.opportunity-section {
    background: linear-gradient(135deg, rgba(12, 59, 107, 0.03), rgba(12, 59, 107, 0.08));
    position: relative;
    overflow: hidden;
}

.opportunity-container {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.opportunity-title {
    background: var(--primary);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.opportunity-text {
    padding: 1rem;
}

.opportunity-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.opportunity-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.opportunity-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    color: var(--text-muted);
}

.opportunity-list li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0.4rem;
}

.opportunity-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 59, 107, 0.7), rgba(255, 107, 53, 0.2));
    z-index: 1;
}

.opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.benefits-section .section-title,
.benefits-section .section-subtitle,
.benefits-section .section-description {
    color: var(--text-light);
}

.benefits-section .section-subtitle {
    color: var(--accent);
}

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

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-weight: var(--font-semibold);
    transition: all var(--transition-normal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn.active {
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

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

.tab-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tab-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tab-description {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    border-left: 3px solid transparent;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-left-color: var(--accent);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--accent);
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: var(--font-semibold);
    color: var(--text-light);
}

.benefit-content p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 10%;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 2s ease;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: flex-start;
    padding-left: 10%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: 85%;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    margin-left: 2rem;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--accent);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: var(--font-semibold);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 10%;
    transform: translateX(-50%);
    background: var(--primary);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(12, 59, 107, 0.2);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--primary-light);
    z-index: 1;
    left: 100%;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-date {
    left: 20px;
}

.timeline-item:nth-child(even) .timeline-date {
    right: 20px;
}

.timeline-item:nth-child(odd) .timeline-dot::before {
    right: 100%;
}

.timeline-item:nth-child(even) .timeline-dot::before {
    left: 100%;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.timeline-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(12, 59, 107, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    flex: 1;
    min-width: 100px;
    text-align: center;
    transition: all var(--transition-normal);
}

.timeline-item:hover .metric {
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: var(--font-medium);
}

.timeline-text {
    color: var(--text-muted);
}

/* Chart Section */
.chart-section {
    background: linear-gradient(rgba(245, 248, 255, 0.8), rgba(245, 248, 255, 0.8)), url('/assets/images/chart-bg.jpg') center/cover no-repeat;
    padding: 7rem 0;
}

.chart-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(12, 59, 107, 0.01), rgba(12, 59, 107, 0.05));
    z-index: 0;
}

.chart-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.chart-tab {
    padding: 12px 18px;
    background: #f5f8fc;
    border: none;
    border-radius: 8px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 2;
}

.chart-tab:hover {
    background: #e9f0f9;
    color: #0c3b6b;
}

.chart-tab.active {
    background: #0c3b6b;
    color: white;
    box-shadow: 0 4px 12px rgba(12, 59, 107, 0.2);
}

.chart-tab i {
    margin-right: 6px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.chart-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-bottom: 60px;
}

.chart-content.active {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tekrar eden grafikler düzeltmesi */
#revenue-chart.active, #employment-chart.active {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

#revenue-chart, #employment-chart {
    display: none;
}

/* Grafikler arasındaki mesafeyi ayarlama */
.chart-section {
    padding-bottom: 30px;
}

/* Modern Bar Chart Styling - Yatay Çubuklar */
.bar-chart-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 20px auto 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.chart-grid {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    height: calc(100% - 40px);
    z-index: 1;
}

.grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
}

.grid-line span {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 0.75rem;
    color: #999;
}

.chart-bar {
    position: relative;
    width: 40px;
    background: linear-gradient(to top, #0c3b6b, #3498db);
    border-radius: 6px 6px 0 0;
    z-index: 2;
    transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    height: 0;
}

.chart-bar-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0c3b6b;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
    z-index: 3;
}

.chart-bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chart-bar:hover {
    background: linear-gradient(to top, #1a5ba0, #5dade2);
}

.chart-bar:hover .chart-bar-value {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 5px 15px rgba(12, 59, 107, 0.3);
}

/* Chart Title */
.chart-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0c3b6b;
    margin-bottom: 30px;
    padding-top: 20px;
}

/* Trend Graph */
.growth-trend {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 20px auto 0;
    background: white;
    border-radius: 12px;
    padding: 20px 30px 40px;
    box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 768px) {
    .bar-chart-container {
        height: 240px;
        padding: 20px 20px 40px 50px;
    }
    
    .chart-bar {
        width: 15%;
        margin: 0 5px;
    }
    
    .bar-value {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .bar-label {
        font-size: 0.75rem;
    }

    .chart-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .chart-wrapper {
        margin-bottom: 20px;
    }

    .chart-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .bar-chart-container {
        height: 200px;
        padding: 15px 15px 35px 40px;
    }
    
    .chart-bar {
        width: 14%;
        margin: 0 3px;
    }
    
    .bar-label, .chart-label {
        font-size: 0.7rem;
    }

    .chart-tab {
        padding: 6px 10px;
        font-size: 0.8rem;
        margin-right: 4px;
    }

    .chart-tabs {
        gap: 5px;
    }
}

/* Bar Chart Container ve Izgara Arka Planı */
.bar-chart-container {
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: 0;
}

.chart-grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

/* Bar chart styling - Geliştirilmiş Versiyon */
.bar-chart {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white; /* Rengi beyaz olarak değiştirdim */
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
    position: relative;
    transition: height 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 100%;
    height: 0%;
    box-shadow: 0 5px 15px rgba(12, 59, 107, 0.2);
    margin: 0 1%;
    z-index: 1;
    overflow: visible;
}

.bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 4px 4px;
}

.bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
}

.bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(12, 59, 107, 0.3);
}

.bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
    font-weight: 500;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.3s ease;
}

.bar:hover .bar-label {
    transform: translateX(-50%) translateY(-3px);
    color: var(--primary-dark);
}

.bar-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.35rem 0.8rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(12, 59, 107, 0.15);
    text-align: center;
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 2;
}

.bar:hover .bar-value {
    transform: translateX(-50%) translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px rgba(12, 59, 107, 0.25);
}

/* Active bar styles */
#revenue-chart.active .bar,
#employment-chart.active .bar {
    animation: bar-pulse 2s infinite alternate;
}

@keyframes bar-pulse {
    0% {
        box-shadow: 0 5px 15px rgba(12, 59, 107, 0.2);
    }
    100% {
        box-shadow: 0 8px 20px rgba(12, 59, 107, 0.3);
    }
}

/* Chart content transitions */
.chart-content {
    display: none;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chart-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive bar styles */
@media (max-width: 768px) {
    .bar {
        width: 18%;
    }
    
    .bar-value {
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
        top: -30px;
    }
    
    .bar-label {
        font-size: 0.8rem;
        bottom: -22px;
    }
}

/* Growth trend chart - İyileştirilmiş stiller */
.growth-trend {
    height: 100%;
    position: relative;
    padding: 30px 0;
}

.trend-line {
    position: absolute;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--neon-purple), var(--neon-blue));
    bottom: 50px;
    left: 10%;
    right: 10%;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.5s ease;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
    z-index: 1;
}

.trend-point {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--neon-purple);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    bottom: 50px;
    transform: translateY(-6px);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 6px 18px rgba(108, 92, 231, 0.4);
    z-index: 2;
    cursor: pointer;
}

.trend-point:hover {
    transform: translateY(-6px) scale(1.2);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.trend-value {
    position: absolute;
    bottom: 75px;
    transform: translateX(-50%);
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.trend-year {
    position: absolute;
    bottom: 25px;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, rgba(12, 59, 107, 0.03), rgba(12, 59, 107, 0.08));
    position: relative;
}

.support-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.support-column {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.support-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.support-header {
    background: var(--primary);
    color: var(--text-light);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.support-title {
    font-size: 1.3rem;
    font-weight: var(--font-semibold);
}

.support-list {
    list-style: none;
    padding: 2rem;
}

.support-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(12, 59, 107, 0.1);
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.support-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.support-list li i {
    color: var(--accent);
    margin-top: 0.3rem;
}

.support-list li:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.support-summary {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--primary);
}

.support-summary p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 35, 68, 0.9), rgba(10, 35, 68, 0.95)), url('/assets/images/cta-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
    padding: 8rem 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0) 70%);
    z-index: 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-btn {
    font-size: 1rem;
    padding: 1.2rem 3rem;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

/* Contact form */
.contact-form {
    max-width: 700px;
    margin: 5rem auto 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: center;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-medium);
    color: var(--text-light);
    opacity: 0.9;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

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

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

.form-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-contact-direct {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-contact-direct p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.direct-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.direct-link {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius-pill);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.direct-link i {
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.direct-link.whatsapp {
    background-color: #25D366;
}

.direct-link.phone {
    background-color: var(--neon-blue);
}

.direct-link.email {
    background-color: var(--accent);
}

.direct-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 1.5px;
}

.footer-text {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.7;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.8rem;
    color: var(--accent);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: var(--text-light);
}

/* Contact info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background: var(--accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.contact-details p, .contact-details a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-details a:hover {
    color: var(--accent);
}

.social-media-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-pill);
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.social-link span {
    font-weight: var(--font-medium);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all var(--transition-normal);
    box-shadow: 0 5px 15px rgba(12, 59, 107, 0.3);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: var(--text-light);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* AOS Animation Custom */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    :root {
        --container-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 6rem 0;
    }
}

@media (max-width: 992px) {
    /* Tablet ve mobil cihazlar için navigasyon düzenlemeleri */
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    nav ul {
        gap: 0.8rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .advantage-content,
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantage-text {
        padding-right: 0;
    }
    
    .feature-card,
    .highlight-card {
        padding: 2rem;
    }
    
    .timeline-content {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ships-silhouette {
        opacity: 0.1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    nav {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        z-index: 101;
    }
    
    .logo img {
        height: 30px;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 21, 35, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.3s ease-in-out;
        z-index: 99;
        gap: 0;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }
    
    nav ul.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    nav ul li {
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
        height: auto;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }
    
    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 24px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-btn .bar,
    .mobile-menu-btn.active .bar,
    .mobile-menu-btn.active .bar:nth-child(1),
    .mobile-menu-btn.active .bar:nth-child(2),
    .mobile-menu-btn.active .bar:nth-child(3) {
        background-color: white !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 24px !important;
        height: 2px !important;
        margin: 5px 0 !important;
    }
    
    .features-grid,
    .support-container {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        min-width: 100%;
    }
    
    .opportunity-container,
    .opportunity-content {
        display: block;
    }
    
    .opportunity-image {
        margin-top: 2rem;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefit-icon {
        margin-bottom: 1rem;
    }
    
    .chart-container {
        padding: 1.5rem;
    }
    
    .chart-wrapper {
        height: 300px;
        overflow-x: auto;
    }
    
    .chart-tabs {
        justify-content: space-between;
    }
    
    .chart-tab {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .metric {
        min-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-media-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .ocean {
        height: 60px;
    }
}

/* Overview Section Styles */
.overview-intro {
    border-left: 4px solid var(--accent);
    transition: all var(--transition-normal);
    margin-bottom: 2rem;
}

.overview-intro:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.overview-intro .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: var(--font-medium);
}

.overview-conclusion {
    border-right: 4px solid var(--primary);
    transition: all var(--transition-normal);
    margin-top: 0;
    margin-bottom: 2rem;
}

.overview-conclusion:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.overview-conclusion h4 {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
}

.overview-conclusion p {
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-stats {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(12, 59, 107, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(12, 59, 107, 0.05);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(12, 59, 107, 0.08);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: var(--font-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for overview section */
@media (max-width: 768px) {
    .overview-intro,
    .overview-conclusion {
        padding: 1.5rem !important;
    }
    
    .overview-intro .lead {
        font-size: 1rem;
    }
    
    .feature-stats {
        justify-content: center;
    }
}

/* Market Chart Styles */
.market-chart-container {
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--accent);
    margin-bottom: 0.25rem;
    padding: 0.5rem;
}

.market-chart-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.market-chart-container h4 {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.market-chart-wrapper {
    position: relative;
    height: 180px;
    max-height: 180px;
    margin-bottom: 0.25rem;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 2px;
}

.legend-text {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .market-chart-wrapper {
        height: 150px;
        max-height: 150px;
    }
    
    .chart-legend {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem;
    }
    
    .legend-item {
        margin-right: 3px;
    }
    
    .legend-text {
        font-size: 0.65rem;
    }
}

/* Kompakt Grid Stillleri */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.compact-grid .feature-card {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.compact-grid .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.compact-grid .feature-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.compact-grid .feature-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.compact-grid .feature-stats {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.compact-grid .stat-item {
    padding: 0.25rem 0.5rem;
}

.compact-grid .stat-value {
    font-size: 1.2rem;
}

.compact-grid .stat-label {
    font-size: 0.7rem;
}

/* Fırsat Penceresi Stili */
.overview-conclusion {
    background-color: var(--bg-white);
    padding: 0.75rem !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.overview-conclusion h4 {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    font-size: 1rem;
}

.overview-conclusion p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Market Overview Container - Yeni tasarım */
.market-overview-container {
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--accent);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.market-overview-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.market-overview-container h4 {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
}

.strategic-opportunity {
    padding: 0.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px dashed rgba(12, 59, 107, 0.2);
}

.strategic-opportunity h4 {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    position: relative;
    padding-bottom: 0.5rem;
}

.strategic-opportunity h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 3px;
}

.strategic-opportunity p {
    color: var(--text-muted);
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

.key-stats {
    margin-top: auto;
}

.key-stat-item {
    background: rgba(12, 59, 107, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    min-width: 90px;
    text-align: center;
    transition: all var(--transition-normal);
}

.key-stat-item:hover {
    background: rgba(12, 59, 107, 0.1);
    transform: translateY(-3px);
}

.key-stat-item .stat-icon {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.key-stat-item .stat-value {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.key-stat-item .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .strategic-opportunity {
        border-left: none;
        border-top: 1px dashed rgba(12, 59, 107, 0.2);
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .market-chart-wrapper {
        height: 180px;
        max-height: 180px;
    }
}

/* Kompakt Market Container - Daha verimli tasarım */
.compact-market-container {
    transition: all var(--transition-normal);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem !important;
    padding: 1.5rem;
}

.compact-market-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.compact-section-title {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.compact-section-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.compact-chart-wrapper {
    height: 280px;
    max-height: 280px;
    margin-bottom: 1rem;
}

.compact-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mini-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.mini-legend-item {
    display: inline-flex;
    align-items: center;
    margin: 0 5px 5px 0;
}

.mini-legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-right: 6px;
    display: inline-block;
}

.mini-legend-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.mini-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 59, 107, 0.1);
}

.mini-stat-item {
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
    flex: 1;
    min-width: 80px;
}

.mini-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(12, 59, 107, 0.1);
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.mini-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-opportunity {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Counter section top margin adjustment */
.counter-section {
    margin-top: 0;
    padding-top: 2rem;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .compact-chart-wrapper {
        height: 140px;
        max-height: 140px;
    }
    
    .mini-stats {
        justify-content: center !important;
    }
    
    .mini-stat-item:after {
        display: none;
    }
    
    .compact-opportunity {
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px dashed rgba(12, 59, 107, 0.1);
    }
}

/* Premium Card Styling - Pazar Analizi Bölümü için */
.market-analysis-section {
    padding: 1.5rem 0 3rem;
}

.premium-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.premium-card-header {
    padding: 1.5rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.premium-card-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.premium-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.premium-card-footer {
    background: rgba(0, 0, 0, 0.02);
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-card-footer.variant {
    background: linear-gradient(to right, rgba(12, 59, 107, 0.025), rgba(37, 117, 252, 0.05));
}

/* Market Share Card Specific */
.market-share-card {
    background: #ffffff;
}

.chart-container-3d {
    position: relative;
    height: 260px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-container-3d:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

.market-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.02);
    padding: 0.5rem 0.75rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.chart-description {
    text-align: center;
    margin: 1rem 0;
    padding: 0 0.5rem;
}

.chart-description p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Metrics Styling */
.stat-metrics {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-metric {
    flex: 1;
    position: relative;
    padding: 0 0.5rem;
}

.stat-metric:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.07);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Opportunity Card Specific */
.opportunity-card {
    background: #ffffff;
}

.lead-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.opportunity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.opportunity-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.opportunity-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c3b6b, #2980b9);
    color: white;
    border-radius: 8px;
    margin-right: 0.75rem;
    box-shadow: 0 4px 10px rgba(12, 59, 107, 0.2);
}

.opportunity-icon i {
    font-size: 1.25rem;
}

.opportunity-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.opportunity-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.95rem;
}

.outline-btn span {
    margin-right: 0.5rem;
}

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

.outline-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(12, 59, 107, 0.2);
}

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

/* Mobile Adjustments */
@media (max-width: 992px) {
    .premium-card {
        margin-bottom: 1.5rem;
    }
    
    .premium-card-title {
        font-size: 1.35rem;
    }
    
    .chart-container-3d {
        height: 220px;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .premium-card-header {
        padding: 1.25rem 1.25rem 0.5rem;
    }
    
    .premium-card-body,
    .premium-card-footer {
        padding: 1.25rem;
    }
    
    .chart-container-3d {
        height: 180px;
    }
    
    .opportunity-item {
        padding: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .legend-item {
        padding: 0.35rem 0.6rem;
    }
}

/* Hata ayıklama için ek stiller */
#revenue-chart, #employment-chart {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    height: auto !important;
    min-height: 350px;
}

.chart-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Modern Bar Chart Styling - Updated */
.bar-chart-container {
    position: relative;
    height: 240px;
    width: 100%;
    padding: 20px 10px 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 0;
}

.chart-grid-line {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.bar-chart {
    display: flex;
    height: 100%;
    justify-content: space-around;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 18%;
    max-width: 50px;
    background: linear-gradient(to top, #0c3b6b, #3498db);
    border-radius: 6px 6px 0 0;
    transition: height 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(12, 59, 107, 0.2);
    margin: 0 10px;
    min-height: 5px;
    height: 0%;
}

.chart-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 6px 6px;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 6px 6px 0 0;
    pointer-events: none;
}

.chart-bar:hover {
    transform: translateY(-5px);
    background: linear-gradient(to top, #1e5799, #48a0e0);
    box-shadow: 0 5px 15px rgba(12, 59, 107, 0.3);
}

.bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.chart-bar:hover .bar-label {
    color: #0c3b6b;
    font-weight: 600;
}

.bar-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
    color: #0c3b6b;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.chart-bar:hover .bar-value {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.chart-label {
    position: absolute;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.chart-y-label {
    left: -5px;
    bottom: 50%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: left bottom;
}

.chart-x-label {
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
}

/* Sekme tasarımını iyileştir */
.chart-tab {
    padding: 12px 18px;
    background: #f5f8fc;
    border: none;
    border-radius: 8px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 8px;
    cursor: pointer;
    outline: none;
}

.chart-tab:hover {
    background: #e9f0f9;
    color: #0c3b6b;
}

.chart-tab.active {
    background: #0c3b6b;
    color: white;
    box-shadow: 0 4px 12px rgba(12, 59, 107, 0.2);
}

.chart-tab i {
    margin-right: 6px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .bar-chart-container {
        height: 200px;
    }
    
    .chart-bar {
        width: 15%;
        margin: 0 5px;
    }
    
    .bar-value {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .bar-label {
        font-size: 0.75rem;
    }

    .chart-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .bar-chart-container {
        height: 180px;
        padding: 15px 5px 35px;
    }
    
    .chart-bar {
        width: 14%;
        margin: 0 3px;
    }
    
    .bar-label, .chart-label {
        font-size: 0.7rem;
    }

    .chart-tab {
        padding: 6px 10px;
        font-size: 0.8rem;
        margin-right: 4px;
    }
}

/* Ensure charts are visible */
#revenue-chart, #employment-chart {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure chart content is visible */
.chart-content {
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 40px;
}

/* Custom Icons for Chart Labels */
.chart-tab i {
    margin-right: 5px;
}

/* Karlılık Trend Grafiği */
.growth-trend {
    position: relative;
    width: 100%;
    height: 280px;
    background: white;
    border-radius: 12px;
    padding: 20px 30px 40px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.trend-line {
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, #0c3b6b, #3498db);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.trend-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.trend-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0c3b6b;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(12, 59, 107, 0.3);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.trend-point:hover {
    transform: scale(1.3);
    background: #1e88e5;
}

.trend-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #0c3b6b;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
    z-index: 2;
}

.trend-year {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .growth-trend {
        height: 240px;
        padding: 20px 20px 40px;
    }
    
    .trend-point {
        width: 10px;
        height: 10px;
    }
    
    .trend-value {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .trend-year {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .growth-trend {
        height: 200px;
        padding: 15px 15px 35px;
    }
    
    .trend-point {
        width: 8px;
        height: 8px;
    }
    
    .trend-value {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .trend-year {
        font-size: 0.7rem;
    }
}

/* Charts Section */
.charts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c3b6b;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Chart Tabs */
.chart-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-tab {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-tab:hover {
    background-color: #f0f7ff;
    transform: translateY(-2px);
}

.chart-tab.active {
    background-color: #0c3b6b;
    color: white;
    box-shadow: 0 4px 15px rgba(12, 59, 107, 0.3);
}

/* Chart Container */
.chart-container {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
}

.chart-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: none !important; /* !important ile kesin gizleme */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.chart-content.active {
    position: relative;
    display: block !important; /* !important ile kesin gösterme */
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.chart-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0c3b6b;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .charts-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chart-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .chart-tab {
        width: 100%;
        text-align: center;
    }
    
    .chart-container {
        padding: 20px 15px;
        min-height: 400px;
    }
}