/* Teknoloji Web - Ana Stil Dosyası */

/* Genel Stiller */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Modern Navbar Stilleri */
#mainNavbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.brand-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.brand-icon i {
    color: white;
    font-size: 1.4rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Disabled to prevent conflicts with navbar brand */
.brand-name {
    display: none !important;
}

/* Disabled to prevent conflicts with navbar brand */
.brand-highlight {
    display: none !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 35px;
    height: 35px;
    position: relative;
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: #667eea;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px !important;
    border-radius: 25px;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}






.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
    transform: translateY(-1px);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

.btn-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
}

.btn-contact:before {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

.btn-contact:hover {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px) !important;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        justify-content: flex-start;
        margin: 5px 0;
        padding: 12px 20px !important;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-container {
        gap: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="400" r="150" fill="url(%23a)"/><circle cx="400" cy="800" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: #ffd93d;
}

.tech-text {
    color: #6c5ce7;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-gradient {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #059669 0%, #2563EB 100%);
}

.btn-outline-glow {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-glow:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button Content Styles for Service Cards */
.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

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

.btn-arrow {
    transition: all 0.3s ease;
    transform: translateX(0);
}

.btn-gradient:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-gradient .btn-content {
    justify-content: center;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5, .footer h6 {
    color: white;
    font-weight: 700;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: 45vh;
        padding: 50px 0 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 35vh;
        padding: 40px 0 30px;
    }
    
    .stats-section,
    .services-section {
        padding: 60px 0;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .hero-section {
        min-height: 50vh;
        padding: 60px 0 45px;
    }
}

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

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

/* Scroll Effects */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Hero Section - Modern Layout Styles */
.pt-12 {
    padding-top: 5rem !important;
}

.pt-lg-8 {
    padding-top: 4rem !important;
}

.pb-8 {
    padding-bottom: 4rem !important;
}

.imgmedw {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mutluimg {
    float: right;
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.indextxtalan {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    text-align: justify;
}

.btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: white;
    text-decoration: none;
}

.btn-basinc {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-basinc:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    text-decoration: none;
}

.btnyanli {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.indexbtnalan {
    margin-bottom: 10px;
}

.txtana1400 {
    font-weight: 600;
}

.ri-sparkling-fill,
.ri-arrow-right-up-line {
    font-size: 1.1rem;
}

.hero-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .pt-12 {
        padding-top: 3rem !important;
    }
    
    .pt-lg-8 {
        padding-top: 2rem !important;
    }
    
    .pb-8 {
        padding-bottom: 3rem !important;
    }
    
    .mutluimg {
        float: none;
        display: block;
        margin: 0 auto 15px;
        max-width: 100px;
    }
    
    .indextxtalan {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .btn-orange,
    .btn-basinc {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .imgmedw {
        margin-bottom: 2rem;
    }
    
    .indextxtalan {
        font-size: 0.95rem;
    }
    
    .btn-orange,
    .btn-basinc {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .hero-main-title {
        font-size: 1.5rem;
    }
}

/* Hero Sphere Container Styles */
.hero-sphere-container {
    /*padding: 4rem 2rem; */
    text-align: center;
    position: relative;
    min-height: 600px;
}

.sphere-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4rem;
    text-align: center;
}

.sphere-layout {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    max-width: 1000px;
}

.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-container {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.logo-text {
    font-size: 4rem;
    font-weight: 900;
    color: #1e40af;
    text-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-subtext {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

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

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.feature-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    opacity: 0;
    animation: fadeInFeature 0.8s ease forwards;
}

.feature-point.top-left {
    top: 0;
    left: 0;
    animation-delay: 0.2s;
}

.feature-point.top-right {
    top: 0;
    right: 0;
    animation-delay: 0.4s;
}

.feature-point.middle-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0.6s;
}

.feature-point.middle-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.feature-point.bottom-left {
    bottom: 0;
    left: 0;
    animation-delay: 1.0s;
}

.feature-point.bottom-right {
    bottom: 0;
    right: 0;
    animation-delay: 1.2s;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.hero-services-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-services-list {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero-service-item:nth-child(1) { animation-delay: 0.1s; }
.hero-service-item:nth-child(2) { animation-delay: 0.2s; }
.hero-service-item:nth-child(3) { animation-delay: 0.3s; }
.hero-service-item:nth-child(4) { animation-delay: 0.4s; }

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

.hero-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
    z-index: -1;
}

.hero-service-item:hover::before {
    opacity: 1;
}

.hero-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #e2e8f0;
}



.service-icon {
    color: #667eea;
    font-size: 1.5rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.hero-service-item:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    transform: scale(1.1);
}

.hero-service-item:hover .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.hero-service-item:hover .service-text {
    color: white;
}

.hero-service-item:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-text {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    position: relative;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-cta-text:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-message {
    font-size: 1.2rem;
    color: white;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.cta-message strong {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.cta-link {
    display: inline-block;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.cta-link:hover {
    color: #f59e0b;
    text-decoration: none;
    border-bottom-color: #f59e0b;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-cta-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10b981, #3b82f6, #8b5cf6, #f59e0b);
    background-size: 400% 400%;
    animation: borderGlow 3s ease-in-out infinite;
    border-radius: 22px;
    z-index: -1;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-message {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.cta-message strong {
    font-weight: 900;
    font-size: 1.7rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(16, 185, 129, 0.5); }
}

/* Responsive adjustments for sphere design */
@media (max-width: 768px) {
    .hero-sphere-container {
        padding: 2rem 1rem;
    }
    
    .sphere-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .sphere-layout {
        height: 400px;
        position: static;
    }
    
    .central-logo {
        position: static;
        transform: none;
        margin: 2rem auto;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .logo-subtext {
        font-size: 1rem;
    }
    
    .feature-point {
        position: static;
        transform: none !important;
        margin: 1rem auto;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .sphere-main-title {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-subtext {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.85rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
}

/* Simple Clean Button */
.modern-service-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.15s ease;
    width: 100%;
    text-align: center;
}

.modern-service-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1d4ed8;
    text-decoration: none;
}

.modern-service-btn .btn-text {
    margin-right: 0.25rem;
}

.modern-service-btn .btn-icon {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Google Reviews Section */
.google-reviews-section {
    background: #ffffff;
    position: relative;
    padding: 4rem 0;
}

.google-reviews-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.google-reviews-section .section-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.google-reviews-section .reviews-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.google-reviews-section .google-rating {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.google-reviews-section .rating-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 1rem;
}

.google-reviews-section .stars {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.google-reviews-section .rating-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.google-reviews-section .review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4285f4;
}

.google-reviews-section .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.google-reviews-section .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 0.75rem;
    overflow: hidden;
}

.google-reviews-section .reviewer-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.google-reviews-section .reviewer-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.google-reviews-section .reviewer-info .review-date {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.google-reviews-section .review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-left: auto;
}

.google-reviews-section .review-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.google-reviews-section .view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.google-reviews-section .view-all-btn:hover {
    background: #3367d6;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Other Platform Reviews Section */
.other-reviews-section {
    background-color: #f8f9fa;
}

.professional-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.professional-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-platform {
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge.website {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.platform-badge.app {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.platform-badge.corporate {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.platform-badge.agency {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.platform-badge i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.reviewer-profile {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-avatar-pro {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.reviewer-details h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.reviewer-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.review-stars-pro {
    color: #fbbf24;
    font-size: 1rem;
}

.review-stars-pro small {
    color: #6b7280;
    font-weight: 600;
}

.review-text-pro {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    position: relative;
}

.review-text-pro::before {
    content: '"';
    font-size: 3rem;
    color: #e5e7eb;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.review-date-pro {
    text-align: right;
}

/* Compact Blog Section */
.compact-blog-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.blog-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.blog-section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

.compact-blog-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.compact-blog-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
    text-decoration: none;
}

.compact-blog-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
}

.compact-blog-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.compact-blog-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

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

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
}

.compact-blog-content {
    padding: 1rem;
}

.blog-date-compact {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.compact-blog-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.compact-blog-title a {
    color: #1f2937;
    text-decoration: none;
}

.compact-blog-title a:hover {
    color: #3b82f6;
}

.compact-blog-excerpt {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.compact-read-more {
    font-size: 0.8rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.compact-read-more:hover {
    color: #2563eb;
    text-decoration: none;
}

.compact-read-more i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.compact-read-more:hover i {
    transform: translateX(2px);
}

/* Compact Testimonials Slider */
.testimonials-slider {
    background: #f8f9fa;
}

.testimonials-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.testimonials-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.slider-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.mini-testimonial {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    transition: all 0.2s ease;
}

.mini-testimonial:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.client-info small {
    color: #6b7280;
    font-size: 0.75rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.platform-icon.website {
    background: linear-gradient(135deg, #10b981, #059669);
}

.platform-icon.app {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.platform-icon.corporate {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.platform-icon.agency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.testimonial-text {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Business Location Map Section */
.map-section {
    background: #ffffff;
}

.map-info-panel {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #3b1414;
    height: 400px;
    display: flex;
    align-items: center;
}

.map-info-content {
    padding: 2rem;
    width: 100%;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #546483;
}

.map-title i {
    color: #7e98bd;
}

.location-details {
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-item i {
    color: #1d2432;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    flex-shrink: 0;
}

.location-item strong {
    color: #182e5b;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.location-item p {
    color: #263c5f;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-directions {
    background: #3b82f6;
    border: 1px solid #3b82f6;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-directions:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    text-decoration: none;
}

.btn-call {
    background: transparent;
    border: 1px solid #4b5871;
    color: #506081;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-call:hover {
    background: #374151;
    border-color: #9ca3af;
    color: white;
    text-decoration: none;
}

.map-container {
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .map-info-panel {
        height: auto;
        min-height: 300px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: row;
    }
    
    .map-actions .btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .map-info-content {
        padding: 1.5rem;
    }
    
    .map-title {
        font-size: 1.25rem;
    }
    
    .map-actions {
        flex-direction: column;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.faq-section .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: #ffffff;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #3b82f6;
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    color: #495057;
    line-height: 1.6;
}

.faq-section .accordion-body p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.shadow-lg-custom {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.border-radius-lg {
    border-radius: 20px;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Blog Styles */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.blog-card img {
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
}

.blog-title {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* Footer Stilleri */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    width: 20px;
    flex-shrink: 0;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

/* ========== HAKKIMIZDA SAYFASI STİLLERİ ========== */

/* Hero Section - Spectacular Design */
.about-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

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

.about-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
}

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

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(45deg, #10B981, #3B82F6, #8B5CF6, #F59E0B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(16, 185, 129, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2) { left: 20%; animation-delay: -2s; background: rgba(59, 130, 246, 0.6); }
.particle:nth-child(3) { left: 40%; animation-delay: -4s; background: rgba(139, 92, 246, 0.6); }
.particle:nth-child(4) { left: 60%; animation-delay: -6s; background: rgba(245, 158, 11, 0.6); }
.particle:nth-child(5) { left: 80%; animation-delay: -8s; background: rgba(239, 68, 68, 0.6); }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); }
    10% { transform: translateY(90vh) scale(1); }
    90% { transform: translateY(-10vh) scale(1); }
    100% { transform: translateY(-10vh) scale(0); }
}

/* About Section - Stunning Cards */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2310B981' fill-opacity='0.02' d='M20 20h20v20H20zM60 60h20v20H60z'/%3E%3C/svg%3E");
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 10px 20px rgba(16, 185, 129, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(16, 185, 129, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1F2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: #4B5563;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Timeline Section - Epic Design */
.timeline-section {
    color: #1f2937;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
}

.timeline-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: timelineBackground 10s ease-in-out infinite alternate;
}

@keyframes timelineBackground {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.timeline-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2310B981' fill-opacity='0.05' d='M20 20h20v20H20zM60 60h20v20H60z'/%3E%3C/svg%3E");
    z-index: 1;
}

.timeline-section .gradient-text {
    background: linear-gradient(45deg, #10B981, #3B82F6, #8B5CF6, #F59E0B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

.timeline-title {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5) !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
}

.timeline-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.4rem !important;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0;
  z-index: 2;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(
    to bottom,
    #10B981 0%,
    #34D399 25%,
    #3B82F6 50%,
    #8B5CF6 75%,
    #F59E0B 100%
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: timelinePulse 3s ease-in-out infinite alternate;
}

@keyframes timelinePulse {
  0% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
  100% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); }
}

.timeline-item {
  padding: 30px 50px;
  position: relative;
  width: 50%;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

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

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10B981, #34D399);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: -12px;
  z-index: 3;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 0 0 4px rgba(16, 185, 129, 0.2),
    0 0 20px rgba(16, 185, 129, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  box-shadow: 
    0 0 0 8px rgba(245, 158, 11, 0.2),
    0 0 30px rgba(245, 158, 11, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.timeline-content {
  padding: 35px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 25px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(16, 185, 129, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(16, 185, 129, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.timeline-content:hover::before {
  left: 100%;
}

.timeline-content:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 40px rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.5);
}

.timeline-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #10B981, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.timeline-content h3 {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #F59E0B;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.timeline-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  text-shadow: none;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
    margin-left: -3px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 30px;
    text-align: left !important;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item .timeline-dot {
    left: 18px;
    right: auto;
  }
  .timeline-content {
    padding: 25px;
  }
  .timeline-content h2 {
    font-size: 20px;
  }
  .timeline-content h3 {
    font-size: 16px;
  }
  .timeline-content p {
    font-size: 14px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* ========== HAKKIMIZDA STİLLERİ BİTİŞ ========== */