/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #666;
    overflow-x: auto;
    padding-top: 40px; /* Daha da küçültülmüş navbar yüksekliği */
    font-size: 1rem;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    background: #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header .nav-container {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}

/* Scroll durumunda navbar'ın görünür hale gelmesi - artık gerekli değil */
.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo ve menü linklerinin başlangıçta beyaz olması - artık gerekli değil */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    display: none; /* Artık yazı yerine logo kullanacağız */
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
}

/* Scroll durumunda logo ve linklerin renklerinin değişmesi - artık gerekli değil */
.header.scrolled .nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.scrolled .nav-link {
    color: #333;
}

.header.scrolled .nav-link:hover {
    color: #667eea;
}

/* Hamburger menü çizgilerinin rengi */
.nav-toggle .bar {
    background: #2d3748;
    transition: all 0.4s ease;
}

.header.scrolled .nav-toggle .bar {
    background: #333;
}

/* Main Navigation */
.navbar {
    padding: 0.25rem 0;
    border-bottom: none;
    background: #f1f5f9;
}

/* Separator Strip */
.nav-separator {
    height: 40px;
    background: linear-gradient(to right, #2c3e50, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.nav-separator-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.contact-info i {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Services Navigation */
.services-nav {
    background: #f8fafc;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.services-menu {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-category {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.service-category i {
    font-size: 1.1rem;
    color: #4a90e2;
    transition: all 0.3s ease;
}

.service-category:hover {
    background: #fff;
    color: #4a90e2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-category:hover i {
    transform: scale(1.1);
}

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

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-link::after {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a90e2;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333 !important;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Desktop'ta hero-mobile gizle */
.hero-mobile {
    display: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
    text-shadow: none;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: #4a90e2;
    color: white;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #ffffff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header .title-wrapper {
    margin-bottom: 0.5rem;
}

.section-header .description-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background: #ffffff;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.services-list i {
    color: #48bb78;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

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

.service-item h4 {
    color: #2d3748;
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: #ffffff;
    padding: 60px 0;
}

.stats-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.stats-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stat-box {
    flex: 1;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        max-width: 400px;
    }

    .stat-box {
        width: 100%;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #2d3748;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.6;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: #1a202c;
    color: #e2e8f0;
}

.footer-top {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 125px;
    width: auto;
    border: 2px solid #232942;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    border-color: #764ba2;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.footer-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-info p {
    color: #a0aec0;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

.footer h3 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1.3;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    color: #667eea;
    font-size: 1.25rem;
}

.footer-contact ul li span,
.footer-contact ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.3;
}

.footer-contact ul li a:hover {
    color: #667eea;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.phone-numbers a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.3;
}

.phone-numbers a:hover {
    color: #667eea;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a202c;
}

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

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
}

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

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.3;
    font-size: 0.875rem;
}

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

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

    .footer-info {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .footer-social {
    justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-services,
    .footer-contact {
    text-align: center;
    }

    .footer-contact ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-container {
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: transparent;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.3s ease;
}

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

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    color: #a0aec0;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.875rem;
    color: #667eea;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.contact-form .btn i {
    margin-right: 0.5rem;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .card-1 {
        top: 10%;
        left: 2%;
    }

    .card-2 {
        top: 10%;
        right: 2%;
    }

    .card-3 {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-visual {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        height: 300px;
    }

    .floating-card {
        padding: 1rem;
        transform: scale(0.8);
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .card-1 {
        top: 8%;
        left: -2%;
        transform: scale(0.8);
    }

    .card-2 {
        top: 8%;
        right: -2%;
        transform: scale(0.8);
    }

    .card-3 {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .floating-card {
        transform: scale(0.7);
        padding: 0.8rem;
    }

    .card-1 {
        top: 5%;
        left: -5%;
    }

    .card-2 {
        top: 30%;
        right: -5%;
    }

    .card-3 {
        bottom: 5%;
        left: 15%;
    }

    .hero-graphic {
        height: 250px;
    }
} 

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 2rem;
    }
    .info-card p {
        font-size: 1rem;
    }
} 

/* Contact Hero Section */
.contact-hero {
    padding: 100px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero .hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
}

/* Contact Info Section */
.contact-info-section {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px; /* Minimum yükseklik eklendi */
    justify-content: center; /* İçeriği dikey olarak ortala */
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-info-card p {
    color: #666;
    margin: 0.25rem 0; /* Paragraflar arası boşluğu azalttım */
    font-size: 1rem;
    line-height: 1.6;
    white-space: nowrap; /* Metinlerin alt satıra kaymasını engelle */
}

.contact-info-card a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-content {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    color: #1a202c;
    transition: all 0.3s ease;
}

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

.form-group label {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #718096;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    background: white;
    padding: 0 0.25rem;
    font-size: 0.75rem;
    color: #667eea;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

/* Social Media Section */
.social-section {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.social-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.social-card span {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .form-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* Active nav link */
.nav-link.active {
    color: #667eea;
}

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

/* About Hero Section */
.about-hero {
    padding: 100px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* About Page */
.about-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Our Story Section */
.about-story {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.story-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 1.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Our Team Section */
.our-team {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: #ffffff;
}

/* Team Section */
.our-team {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: space-between;
    align-items: center;
}

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

.member-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5aa0 0%, #1a365d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0.2rem 0;
}

/* Member content wrapper */
.member-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem; /* Icon ile text arasındaki boşluk */
}

.team-member .text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 120px; /* Text alanı için sabit yükseklik */
}

/* Projects List Section */
.projects-list {
    padding: 60px 0;
    background: #ffffff;
}

.projects-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-items {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2d5aa0;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d5aa0 0%, #1a365d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.project-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5aa0;
    margin: 0;
    line-height: 1.4;
}

.projects-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
    text-align: center;
}

.projects-note p {
    color: #1565c0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Projects List Responsive */
@media (max-width: 768px) {
    .projects-list {
        padding: 40px 0;
    }
    
    .project-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .project-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .project-item h3 {
        font-size: 1rem;
    }
    
    .projects-note {
        padding: 1rem;
    }
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }
} 

/* Services Hero Section */
.services-hero {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 10px;
}

.services-hero .hero-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: none;
    margin: 30px 0 0 0;
    padding: 0;
    gap: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.services-hero .hero-image {
    width: 90vw;
    max-width: 1600px;
    height: 250px;
    order: 1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px auto 15px auto;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    background: transparent;
}

.services-hero .hero-image img {
    width: 100%;
    height: auto;
    object-position: center;
}

.services-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 20px 30px;
    order: 2;
}

.services-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
}

@media (max-width: 768px) {
    .services-hero {
        padding-top: 10px;
        margin-top: 15px !important;
    }
    
    .services-hero .hero-container {
        margin-top: 5px;
    }
    
    .services-hero .hero-image {
        margin: 10px auto 5px auto;
        height: 300px;
        max-width: 98%;
    }
    
    .services-hero .hero-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: #667eea;
    font-size: 0.875rem;
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: #ffffff;
}

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

.consulting-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.consulting-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.consulting-icon i {
    font-size: 1.5rem;
    color: white;
}

.consulting-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.consulting-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Timeline Section */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.timeline-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .consulting-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2rem;
    }
} 

/* References Hero Section */
.references-hero {
    padding: 100px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.references-hero .hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.references-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
}

/* Projects Section */
.projects {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

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

.project-card {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-content {
    padding: 1.25rem;
}

.project-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.project-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.project-tags span {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Testimonials Section */
.testimonials {
    padding: 10px 0 80px 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image i {
    font-size: 1.5rem;
    color: #94a3b8;
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    line-height: 1.6;
}

.author-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 20px 0;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .references-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .references-hero h1 {
        font-size: 2rem;
    }

    .project-image {
        height: 200px;
    }
} 

/* Thank You Page */
.thank-you {
    padding: 120px 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.thank-you-icon i {
    animation: scaleUp 0.5s ease;
}

.thank-you h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@keyframes scaleUp {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-content {
        margin: 0 1rem;
    }
} 

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: auto;
    }

    .services-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 20px;
    }

    .service-category {
        padding: 0.75rem 1rem;
        justify-content: flex-start;
    }
} 

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Mobilde küçültülmüş navbar + küçük boşluk */
    }
    
    .hero,
    .contact-hero,
    .about-hero,
    .services-hero,
    .references-hero {
        margin-top: 0;
    }
    
    /* Anasayfa hero section'ı mobilde gizle */
    .hero {
        display: none;
    }
    
    /* Mobilde anasayfa için hero resim */
    .hero-mobile {
        display: block;
        padding: 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        margin-top: 60px !important;
    }
    
    .hero-mobile .hero-image {
        width: 100%;
        height: 180px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-mobile .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }
    
    /* Mobilde başlık boyutlarını tutarlı yap */
    .hero-title {
        font-size: 1.5rem !important;
    }
} 

@media (max-width: 768px) {
    .nav-separator {
        height: auto;
        padding: 0.5rem 20px;
    }

    .nav-separator-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.8rem;
    }

    .social-links {
        margin-top: 0.5rem;
    }
} 

/* Services Categories Section */
.services-categories {
    padding: 0 0 30px 0;
    background: #ffffff;
}

.services-categories .section-header {
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.services-categories h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.services-categories p {
    font-size: 1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-category-card {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 130px;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.service-category-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0; /* Icon boyutunun küçülmemesini sağlar */
}

.service-category-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.service-category-card p {
    color: #666;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    font-size: 0.8rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.85rem;
}

.service-features-list li i {
    color: #4a90e2;
    font-size: 0.8rem;
    width: 12px;
}

.service-category-card .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    background: transparent;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.service-category-card .btn-outline:hover {
    background: #4a90e2;
    color: white;
}

@media (max-width: 1200px) {
    .services-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-category-card {
        padding: 1rem;
        min-height: 120px;
    }
} 

/* About Page */
.about-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-hero h1,
.services-hero h1,
.references-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.contact-hero p,
.services-hero p,
.references-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
} 

.lang-toggle {
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background-color: #333;
    color: white;
}

/* Mobil görünüm için stil */
@media screen and (max-width: 768px) {
    .lang-toggle {
        margin: 10px 0;
    }
}

/* Dil değiştirme için gizli class'lar */
[data-lang="en"] {
    display: none;
}

.english-active [data-lang="tr"] {
    display: none;
}

.english-active [data-lang="en"] {
    display: inline-block;
}

.english-active .lang-toggle {
    background-color: #333;
    color: white;
}

/* Dil değiştirme için özel stiller */
[data-lang="en"].hero-title {
    margin-bottom: 0.5rem; /* İngilizce başlık için alt boşluk */
}

[data-lang="en"].section-header p {
    display: block; /* Paragrafın blok element olarak davranmasını sağlar */
    margin-top: 0.5rem; /* Üst boşluk */
}

/* Mobil görünüm için stil */
@media screen and (max-width: 768px) {
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .section-header .description-wrapper {
        padding: 0 1rem;
    }
}