/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Why Us Section */
.why-us {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    margin-top: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 255, 0, 0.15);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    border: 2px solid var(--primary-color);
}

/* Koyu arka planlı section'larda farklı stil */
.process .section-tag,
.hero .section-tag {
    background: rgba(230, 255, 0, 0.9);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 255, 0, 0.3);
}

/* Açık arka planlı section'larda farklı stil */
.why-us .section-tag,
.services .section-tag {
    background: #000;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Hover efekti */
.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 255, 0, 0.2);
}

.why-us-content h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 20px;
}

.why-us-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.why-us-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #111;
    margin: 20px 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.service-card.animate {
    animation-delay: 0.2s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 15px;
}

.service-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.service-cta:hover {
    opacity: 0.9;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #000;
}

.process .section-header h2 {
    color: #fff;
}

.process .section-header p {
    color: rgba(255,255,255,0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-item p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* İletişim Bölümü Stilleri */
.contact {
    padding: 5px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-content h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 20px;
}

.contact-info-content p {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(230, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-social h4 {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: none;
}

.contact-social .social-links a i {
    font-size: 1.4rem;
}

.contact-social .social-links a:hover {
    transform: none;
    background: var(--primary-color);
    color: #000;
    box-shadow: none;
}

/* Form Stilleri */
.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-header h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 255, 0, 0.1);
    outline: none;
}

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

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

.form-note {
    color: #888;
    font-size: 0.85rem;
}

/* Footer Stilleri */
.footer {
    background: #000;
    padding: 80px 0 30px;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.footer-contact li i {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

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

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-bg-image {
        transform: scale(1.2);
    }
}

/* Contact section için özel section-tag stili */
.contact .section-tag {
    background: #000;
    color: var(--primary-color);
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 255, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact .section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(230, 255, 0, 0.1),
        transparent 60%
    );
    z-index: 1;
}

.contact .section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 255, 0, 0.2);
}

/* Section header için ek stil */
.contact .section-header {
    margin-bottom: 50px;
}

.contact .section-header h2 {
    font-size: 2.8rem;
    margin-top: 25px;
    background: linear-gradient(to right, #111, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.contact .section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Divider Styles */
.section-divider {
    display: none;
}

.section-divider .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

/* Modern Simple Slider */
.image-slider {
    position: relative;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.slide-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: relative;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.slide-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.slide-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.slide-tech {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Hover Effects */
.slide.active .slide-info {
    transform: translateY(0);
}

/* Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Animasyon */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 