* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    position: relative;
    z-index: 100;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #666;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #007bff;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    color: #666;
}

.contact-info .contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-info .contact-link:hover {
    color: #007bff;
}

.contact-info i {
    margin-right: 5px;
    color: #007bff;
}

/* Navigation */
.navbar {
    background: #faf9f5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1001;
}

.logo i {
    margin-right: 10px;
    color: #ff6b35;
}

.logo .logo-text {
    color: #ff6b35;
}

.logo .logo-text span {
    color: #2c5282;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,123,255,0.9), rgba(0,212,255,0.9));
    color: white;
    padding: 40px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}
.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Navigation Dropdown Fix */
.nav-menu li {
    position: relative;
}

.dropdown-toggle::before {
    content: '▼';
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    display: block;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #ff6b35;
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 8px;
    width: 16px;
    color: #ff6b35;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Content Section */
.content {
    padding: 60px 0;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section ul li a i {
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin: 0 -20px -20px -20px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Blog List Styling */
.blog-post {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-2px);
}

.blog-post h3 {
    margin-bottom: 15px;
}

.blog-post h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post h3 a:hover {
    color: #ff6b35;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-post small {
    color: #999;
    font-size: 14px;
}
/* Content Section Styling */
.content {
    padding: 60px 0;
    background: white;
}

.content h2 {
    font-size: 2rem;
    color: #333;
    margin: 40px 0 20px 0;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
    display: inline-block;
}

.content h3 {
    font-size: 1.5rem;
    color: #2c5282;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content ul, .content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
}

.content ul li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: -25px;
    top: 0;
}

/* FAQ Section */
.content strong {
    color: #2c5282;
    font-weight: 600;
    display: block;
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

/* Info Boxes */
.content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 5px;
}
/* Card-style content sections */
.content-card {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b35;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Section dividers */
.content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ff6b35, #2c5282, #ff6b35);
    margin: 40px 0;
    border-radius: 2px;
}

/* Icon styling for lists */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.features-list .feature-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: all 0.3s;
}

.features-list .feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left-color: #ff6b35;
}

/* CTA Buttons in content */
.content .cta-section {
    background: white;
    border: 1px solid #e9ecef;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.content .cta-section:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.content .cta-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content .cta-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.content .cta-section .btn {
    background: #007bff;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.content .cta-section .btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}
/* Ana sayfa hero - daha büyük */
.hero-home {
    padding: 60px 0 !important;
}

.hero-home h1 {
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
}

/* Diğer sayfalar - minimal hero */
.hero {
    padding: 35px 0;
}

/* Mobile responsive için hero ayarları */
@media screen and (max-width: 768px) {
    .hero {
        padding: 25px 0;
    }
    
    .hero-home {
        padding: 40px 0 !important;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-home h1 {
        font-size: 2.2rem !important;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
.footer-bottom p:first-child {
    margin: 0 0 5px 0;
    opacity: 0.9;
    font-size: 14px;
}

.footer-bottom p:last-child {
    margin: 0;
    opacity: 0.7;
    font-size: 12px;
    font-weight: 300;
}
/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    background: #fff;
}

.slide {
    display: none;
    position: relative;
    background: linear-gradient(135deg, rgba(0,123,255,0.9), rgba(0,212,255,0.9));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.slide.active {
    display: block;
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.slide .btn {
    margin: 0 10px;
}

/* Navigation dots */
.dots-container {
    text-align: center;
    padding: 20px 0;
    background: white;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #ff6b35;
}

/* Auto fade animation */
.slide {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Content spacing improvements */
.content h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.content h2:first-of-type {
    margin-top: 30px;
}

.content .content-card + h2 {
    margin-top: 60px;
}

/* Reduce excessive spacing */
.content p {
    margin-bottom: 16px;
}

.content ul, .content ol {
    margin: 16px 0;
}

.content li {
    margin-bottom: 8px;
}

/* Improve card spacing */
.content-card {
    margin: 25px 0;
}

.features-list .content-card {
    margin: 0;
}

/* Better typography flow */
.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ul:last-child {
    margin-bottom: 0;
}

/* CTA section spacing */
.cta-section {
    margin-top: 50px;
}
/* H1 başlığı alt çizgi */
.content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
    display: inline-block;
}

/* Diğer başlıklar için mevcut stil korunuyor */
.content h2 {
    font-size: 2rem;
    color: #333;
    margin: 50px 0 25px 0;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
    display: inline-block;
}
/* Body font size */
body {
    font-size: 16px;
}

.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

/* Hakkımızda sayfası content H2 */
.content h2 {
    font-size: 30px;
    color: #333;
    margin: 30px 0 30px 0;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
    display: inline-block;
}

/* Hakkımızda sayfası hero H2 */
.hero-hakkimizda h2 {
    font-size: 2.5rem;
    margin: 30px auto 30px auto;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border-bottom: none;
}
/* Hero section H1 styling */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border-bottom: none;
}
/* Content card liste elemanları */
.content-card ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

/* Features list card içerikleri */
.features-list .content-card h3 {
    font-size: 30px;
}

.features-list .content-card p {
    font-size: 16px;
}
/* Global background color */
body {
    background-color: #faf9f5;
    font-size: 16px;
}

/* Content sections background */
.content {
    background-color: #faf9f5;
}
/* Hakkımızda sayfası özel hero */
.hero-hakkimizda {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-hakkimizda::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 1200 400"><circle fill="rgba(255,255,255,0.03)" cx="200" cy="100" r="80"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="200" r="120"/><circle fill="rgba(255,255,255,0.02)" cx="1000" cy="80" r="60"/></svg>');
    background-size: cover;
    z-index: 1;
}

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

.hero-hakkimizda h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    border-bottom: none;
}

.hero-hakkimizda .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-hakkimizda .hero-subtitle br {
    display: block;
    margin-bottom: 8px;
}

/* Animasyon efekti */
.hero-hakkimizda h1 {
    animation: slideInDown 0.8s ease-out;
}

.hero-hakkimizda .hero-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

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

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .hero-hakkimizda {
        padding: 60px 0;
    }
    
    .hero-hakkimizda h1 {
        font-size: 2.5rem;
    }
    
    .hero-hakkimizda .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}
/* Mobile Navigation - 768px ve altı */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #faf9f5;
        flex-direction: column;
        padding: 100px 0 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-menu > li > a {
        padding: 20px 25px;
        font-size: 16px;
        justify-content: space-between;
        color: #333;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Dropdown menu mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f0f0f0;
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.active {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 15px 40px;
        font-size: 14px;
        color: #555;
    }
    
    .dropdown-menu a:hover {
        background: #e9ecef;
        padding-left: 45px;
    }
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}
/* Mobile fixes */
@media screen and (max-width: 768px) {
    /* Top bar mobile */
    .top-bar {
        padding: 15px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }
    
    .social-icons {
        order: 1;
        margin-bottom: 8px;
    }
    
    .contact-info {
        order: 2;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info span {
        font-size: 14px;
        display: block;
    }
    
    .social-icons a {
        margin: 0 12px;
        font-size: 18px;
    }
    
    /* Navigation mobile fixes */
    .nav-container {
        padding: 15px;
    }
    
    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 1002;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #faf9f5;
        flex-direction: column;
        padding: 80px 0 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
}

/* Responsive font sizes */

/* Tablet - 768px ile 1024px arası */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 16px;
    }
    
    .content p {
        font-size: 16px;
    }
    
    .content-card ul li {
        font-size: 16px;
    }
}

/* Cep telefonu - 768px ve altı */
@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .content-card ul li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Hero text responsive */
    .hero-hakkimizda .hero-subtitle {
        font-size: 1.2rem;
    }
}
/* Hakkımızda sayfası özel margin ayarları */

/* Hero bölümündeki H2 (Hakkımızda başlığı) */
.hero-hakkimizda h2 {
    font-size: 2.5rem;
    margin: 30px auto 30px auto;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border-bottom: none;
}

/* Content bölümündeki H2'ler (Vizyon, Misyon, Değerler vs.) */
.content h2 {
    font-size: 30px;
    color: #333;
    margin: 30px 0 30px 0;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
    display: inline-block;
}

/* İlk H2 için özel ayar (üstteki boşluğu azalt) */
.content h2:first-of-type {
    margin-top: 20px;
}
/* H2 başlıkları için tutarlı margin */
.content h2 {
    font-size: 30px !important;
    color: #333 !important;
    margin: 20px 0 20px 0 !important;
    border-bottom: 3px solid #ff6b35 !important;
    padding-bottom: 10px !important;
    display: inline-block !important;
}

/* Content-card üst margin düzeltmesi */
.content-card {
    margin-top: 15px !important;
}

/* Hero'dan content'e geçiş boşluğu azalt */
.content {
    padding-top: 30px;
}

/* İlk paragraf üst margin azalt */
.content p:first-of-type {
    margin-top: 0;
}


/* ========================================================== */
/* BeSmart Modern Geliştirmeler - Mevcut Tasarımı Koruyarak  */
/* ========================================================== */

/* Modern Hover Efektleri */
.navbar .nav-menu a {
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-menu a:hover::before {
    width: 100%;
}

/* Button Geliştirmeleri */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

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

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

/* Modern Card Animasyonları */
.content-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

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

/* Gelişmiş Top Bar */
.top-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    backdrop-filter: blur(10px);
}

/* Navigation Geliştirmeleri */
.navbar {
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* Scroll Animasyonları için Hazırlık */
.wow {
    visibility: hidden;
}

/* Fade In Animasyonları */
.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* Custom Animasyon - Pulse Effect */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Modern Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gelişmiş Focus States */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

/* Modern Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Geliştirmeler */
@media (max-width: 768px) {
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .content-card:hover {
        transform: none;
    }
}

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

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}
/* ========================================
   FOOTER İLETİŞİM & SOSYAL MEDYA
   ======================================== */

/* Footer Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0;
}

.footer-contact li::before {
    display: none;
}

.footer-contact i {
    color: #ff6b35; /* Turuncu ikon */
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: none;
}

/* Footer Social Media Icons - Sade Renkli */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px; /* Kare köşeli */
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a i {
    font-size: 16px;
    transition: opacity 0.3s ease;
}

/* Her sosyal medyanın kendi rengi - Sade */
.social-facebook {
    background: #3b5998;
}

.social-facebook i {
    color: #fff;
}

.social-twitter {
    background: #1da1f2;
}

.social-twitter i {
    color: #fff;
}

.social-linkedin {
    background: #0077b5;
}

.social-linkedin i {
    color: #fff;
}

.social-instagram {
    background: #e4405f;
}

.social-instagram i {
    color: #fff;
}

.social-youtube {
    background: #ff0000;
}

.social-youtube i {
    color: #fff;
}

/* Hover efekti - Hafif transparanlık */
.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-contact {
        text-align: left;
    }
    
    .footer-contact li {
        justify-content: flex-start;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .footer-social a {
        width: 44px; /* Touch-friendly */
        height: 44px;
    }
}
/* ========================================
   ÇEREZ BİLDİRİMİ (Cookie Notice)
   ======================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none; /* JavaScript ile gösterilir */
    animation: slideUp 0.4s ease;
}

.cookie-notice.show {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.cookie-notice-text {
    flex: 0 1 auto;
}

.cookie-notice-text i {
    color: #ff6b35;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    display: inline;
}

.cookie-notice-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}

.cookie-accept-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-text {
        min-width: 100%;
    }
    
    .cookie-notice-text p {
        font-size: 13px;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 14px 30px;
    }
}

/* ========================================
   DIL DEĞİŞTİRME (Language Switcher)
   ======================================== */

.language-switcher {
    position: relative;
    margin-left: 20px;
    z-index: 10001;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    transition: all 0.3s ease;
    height: 32px;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
}

.language-btn i:first-child {
    font-size: 14px;
    color: #007bff;
}

.language-btn i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-btn.active i:last-child {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
}

.language-option.active {
    background: #e3f2fd;
    color: #007bff;
    font-weight: 600;
}

.language-option .flag {
    font-size: 18px;
}

/* ========================================
   DROPDOWN OK İŞARETLERİ (Arrows)
   ======================================== */

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Desktop - Hover'da ok yukarı döner */
@media screen and (min-width: 769px) {
    .nav-menu > li:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobil - Açıkken ok yukarı döner */
.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobilde ok işareti gizlenmesin */
@media screen and (max-width: 768px) {
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .nav-menu > li > a.dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Top bar responsive */
@media screen and (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
    }
    
    .language-menu {
        right: auto;
        left: 0;
        width: 100%;
    }
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding: 0;
}

/* Google Maps */
.contact-map {
    width: 100%;
    margin-bottom: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

/* İletişim Formu */
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

/* İletişim Bilgileri */
.contact-info-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.info-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        gap: 40px;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}
