/* Global Styles */
:root {
    --primary-color: #1a237e;
    --secondary-color: #0288d1;
    --accent-color: #00bcd4;
    --background-color: #f5f7fa;
    --text-color: #2c3e50;
    --card-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1a237e, #0288d1);
    --gradient-accent: linear-gradient(135deg, #00bcd4, #0288d1);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Banking Info Specific Styles */
.banking-info-container {
    padding-top: 80px;
}

.hero-section {
    position: relative;
    min-height: 700px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    color: white;
    text-align: center;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #fff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
    margin: 0 auto;
    max-width: 800px;
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card p {
    color: #546e7a;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* AI Assistant Section */
.ai-assistant-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px;
    margin-top: 60px;
    box-shadow: var(--card-shadow);
}

/* Selection Cards */
.selection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.selection-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.selection-card.selected {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-8px);
    border-color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Ortak Stiller */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 242, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 1.6em;
    font-weight: 700;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: none;
    filter: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(0);
    opacity: 0.8;
    z-index: -1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: #1a1a2e;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    font-weight: 600;
}

/* Ortak Kart Stili */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 100px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Form Elemanları */
.form-group {
    margin: 20px 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #00fff2;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
}

button {
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 242, 0.4);
}

/* Dil Seçici */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 8px;
    margin-left: 20px;
}

.lang-btn {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
    opacity: 1;
    border: 1px solid rgba(0, 255, 242, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 255, 242, 0.2);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RTL dil desteği için */
[dir="rtl"] .language-selector {
    margin-left: 0;
    margin-right: 20px;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 3px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        margin: 5px 0;
    }
    
    .language-selector {
        margin: 5px 0;
    }
}

/* RTL desteği */
[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .form-group label {
    text-align: right;
}

[dir="rtl"] .btn-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .summary-item {
    flex-direction: row-reverse;
}

/* Ana Sayfa Stilleri */
.home-hero {
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: none;
    filter: none;
    position: relative;
}

.home-hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(0);
    opacity: 0.8;
    z-index: -1;
}

.home-hero p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.feature:hover::before {
    opacity: 0.1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature * {
    position: relative;
    z-index: 1;
}

.feature i {
    font-size: 3em;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.feature h3 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 20px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #00fff2, #00b8ff);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 242, 0.4);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 242, 0.2),
                     0 0 20px rgba(0, 255, 242, 0.2),
                     0 0 30px rgba(0, 255, 242, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 242, 0.4),
                     0 0 30px rgba(0, 255, 242, 0.4),
                     0 0 40px rgba(0, 255, 242, 0.4);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .home-hero h1 {
        font-size: 2.5em;
    }
}

/* Ticker Styles */
.ticker-wrapper {
    background: rgba(44, 48, 66, 0.9);
    padding: 15px 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.ticker {
    white-space: nowrap;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    animation: ticker 60s linear infinite;
    padding-left: 100%;
}

.ticker-title {
    color: #00fff2;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 20px;
}

.country {
    color: #4ecdc4;
    font-weight: 500;
}

.company {
    color: #00b8ff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 184, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.company:hover {
    color: #00fff2;
    text-shadow: 0 0 15px rgba(0, 255, 242, 0.5);
    transform: translateY(-1px);
}

.license {
    color: #00d4ff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.license:hover {
    color: #00fff2;
    text-shadow: 0 0 15px rgba(0, 255, 242, 0.5);
    transform: translateY(-1px);
}

.ticker-item {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    transform: translateY(-1px);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hover durumunda animasyonu yavaşlat */
.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .ticker-wrapper {
        padding: 10px 0;
    }
    
    .ticker-content {
        animation-duration: 45s;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 30px 20px;
    }

    .card {
        padding: 25px;
        margin-top: 80px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 25px 15px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 20px;
        margin-top: 70px;
    }

    input, select, textarea {
        padding: 10px;
        font-size: 0.95em;
    }

    button {
        padding: 10px 20px;
    }

    .home-hero {
        padding: 30px 0;
    }

    .home-hero h1 {
        font-size: 2.5em;
    }

    .home-hero p {
        font-size: 1.1em;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 20px 15px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card {
        padding: 15px;
        margin-top: 60px;
        border-radius: 15px;
    }

    .form-group {
        margin: 15px 0;
    }

    input, select, textarea {
        padding: 8px;
        font-size: 0.9em;
    }

    button {
        width: 100%;
        padding: 12px;
        font-size: 1em;
    }

    .home-hero {
        padding: 20px 0;
    }

    .home-hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .home-hero p {
        font-size: 1em;
        max-width: 100%;
        padding: 0 15px;
    }

    .ticker-wrapper {
        padding: 10px;
    }

    .ticker-content {
        gap: 20px;
    }

    .ticker-item {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    .card {
        padding: 12px;
        margin-top: 50px;
        border-radius: 12px;
    }

    .home-hero h1 {
        font-size: 1.8em;
    }

    .home-hero p {
        font-size: 0.9em;
    }

    .feature {
        padding: 15px;
    }

    .feature i {
        font-size: 2em;
    }

    .feature h3 {
        font-size: 1.2em;
    }

    .feature p {
        font-size: 0.9em;
    }

    .ticker-item {
        min-width: 180px;
        padding: 8px;
    }
}

.tooltip {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 255, 242, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 242, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    max-width: 300px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.tooltip.show {
    opacity: 1;
}

.tooltip.hide {
    opacity: 0;
} 