/**
 * Ana CSS Dosyası
 * Resul Korkmaz Dijital Pazarlama Ajansı
 */

/* Renk Değişkenleri */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #10b981;
    --color-secondary-dark: #059669;
    --color-secondary-light: #34d399;
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-accent-light: #fbbf24;
    --color-dark: #1e293b;
    --color-dark-light: #334155;
    --color-light: #f8fafc;
    --color-light-dark: #e2e8f0;
    --color-white: #ffffff;
    --color-black: #0f172a;
    --color-gray: #64748b;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Gölgeler */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-none: none;
    
    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-light);
    scroll-behavior: smooth;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header ve Navigasyon */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a:hover {
    color: var(--color-primary-light);
}

.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Menü Butonları Stilleri */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-link.active .nav-border {
    width: 100%;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: translateY(-1px);
}

.nav-text {
    position: relative;
    z-index: 1;
}

.nav-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* CTA Buton Stilleri */
.btn-nav-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light), var(--color-primary-dark));
    z-index: -2;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav-cta:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.btn-icon {
    transition: all 0.3s ease;
}

.group:hover .btn-icon {
    animation: pulse 1.5s infinite;
}

/* Hamburger Menü Stili */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover .hamburger-line:nth-child(1) {
    width: 70%;
}

.mobile-menu-btn:hover .hamburger-line:nth-child(2) {
    width: 100%;
}

.mobile-menu-btn:hover .hamburger-line:nth-child(3) {
    width: 60%;
}

/* Mobil Menü Stilleri */
.mobile-nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-link.active {
    color: var(--color-primary-light);
}

.mobile-nav-icon {
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.mobile-cta-btn {
    position: relative;
    overflow: hidden;
}

.mobile-cta-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.mobile-cta-btn:hover::after {
    animation: sweep 1.5s infinite;
}

@keyframes sweep {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

/* RK Logo Tasarımı */
.rk-logo {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.rk-logo .rk-bg {
    transition: all 0.3s ease;
}

.rk-logo .rk-r, 
.rk-logo .rk-k {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rk-logo .rk-line {
    transition: all 0.3s ease;
}

.rk-logo .rk-circle {
    transition: transform 5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    20%, 100% { transform: translateX(100%); }
}

.animate-shine {
    animation: shine 4s infinite;
}

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

.logo:hover .rk-logo .rk-r {
    transform: translateY(-2px) rotate(-8deg);
}

.logo:hover .rk-logo .rk-k {
    transform: translateY(-2px) rotate(8deg);
}

.logo:hover .rk-logo .rk-line {
    transform: scaleY(1.2) rotate(14deg);
    opacity: 1;
}

.logo:hover .rk-logo .rk-circle {
    transform: scale(1.2) translate(-10%, -10%);
}

.logo:hover .rk-logo .rk-bg {
    background-image: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.logo-text {
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    transform: translateX(5px);
}

.mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529;
}

.btn-outline-dark:hover {
    background-color: #212529;
    color: #fff;
    transform: translateY(-2px);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #172554; /* bg-blue-950 rengi: #172554, bg-blue-900'dan bir ton daha koyu */
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: transparent; /* Canvas arka planını şeffaf bırakıyoruz */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.hero-section .lead {
    color: #495057;
}

.text-primary {
    color: #0d6efd !important;
}

/* Stats Section */
.stats-section {
    background-color: #f8fafc;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-box {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    color: #3b82f6;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Campaign Analysis Card */
.campaign-analysis-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    margin-top: 3rem;
    color: var(--color-white);
}

.campaign-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-align: center;
}

.campaign-card-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-gray-300);
}

.campaign-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-form .form-group {
    position: relative;
}

.campaign-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    z-index: 2;
}

.campaign-form .form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.campaign-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.campaign-form .form-control::placeholder {
    color: var(--color-gray-400);
}

.campaign-form .btn {
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(219, 234, 254, 0.7) 0%, rgba(219, 234, 254, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 253, 245, 0.7) 0%, rgba(236, 253, 245, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 4px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    border: 2px solid var(--color-gray-200);
}

.service-card:hover .service-icon {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.service-card:hover .service-title {
    color: var(--color-white);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.service-card:hover .service-description {
    color: var(--color-gray-100);
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-card:hover .service-link {
    color: var(--color-white);
}

/* Why Us Section */
.why-us-section {
    padding: 8rem 0;
    background-color: var(--color-gray-900);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-us-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-300);
}

.why-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--color-gray-900);
    color: var(--color-gray-300);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-about {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--color-gray-400);
}

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

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

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Responsive Utilities */
@media (min-width: 480px) {
    .xs\:inline {
        display: inline !important;
    }
    .xs\:flex {
        display: flex !important;
    }
    .xs\:hidden {
        display: none !important;
    }
}

/* Telefon Linki Stilleri */
.header-phone {
    display: inline-flex;
    align-items: center;
    color: var(--color-gray-700);
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--color-primary);
}

.header-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.header-phone:hover i {
    transform: scale(1.15);
    color: var(--color-primary);
}

/* Telefon Hafif Yanıp Sönme Efekti */
.phone-blink {
    animation: phoneBlink 3s infinite;
}

@keyframes phoneBlink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Düşünce Animasyonu Keyframes */
@keyframes floating {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(0) translateX(10px); }
    75% { transform: translateY(15px) translateX(5px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes floating-rotate {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-10px) translateX(5px) rotate(5deg); }
    50% { transform: translateY(0) translateX(10px) rotate(0deg); }
    75% { transform: translateY(10px) translateX(5px) rotate(-5deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

@keyframes wave {
    0% { transform: translateY(0) scaleX(1); opacity: 0.3; }
    25% { transform: translateY(-15px) scaleX(1.05); opacity: 0.7; }
    50% { transform: translateY(-25px) scaleX(1.1); opacity: 1; }
    75% { transform: translateY(-15px) scaleX(1.05); opacity: 0.7; }
    100% { transform: translateY(0) scaleX(1); opacity: 0.3; }
}

@keyframes gradient-xy {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeIn {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes counting {
    0% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes cursor {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
    75% { opacity: 0.5; transform: translate(30px, 20px) scale(0.9); }
}

@keyframes rotate-y {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Animasyon Sınıfları */
.animate-floating {
    animation: floating 10s ease-in-out infinite;
}

.animate-floating-rotate {
    animation: floating-rotate 12s ease-in-out infinite;
}

.animate-wave {
    animation: wave 8s ease-in-out infinite;
    opacity: 0.6 !important;
    height: 2px !important;
    filter: blur(0.5px);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.animate-gradient-xy {
    background-size: 200% 200%;
    animation: gradient-xy 15s ease infinite;
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-counting {
    animation: counting 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

.animate-cursor {
    animation: cursor 3s ease-in-out infinite;
}

.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-12 {
    transform: rotateY(12deg);
}

/* SEO Animasyon Stilleri */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-bounce {
    animation: bounce 0.5s ease infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

#seo-animation .serp-result {
    transition: transform 0.3s ease-out;
}

#ranking-indicator {
    transition: background-color 0.5s ease, transform 0.3s ease;
} 