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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.slide:first-child {
    opacity: 1;
    visibility: visible;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    width: 80%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.slide-content .btn {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Slider Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 2;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot:first-child {
    background-color: white;
}

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

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Responsive Updates */
@media screen and (max-width: 768px) {
    .slide-content {
        width: 90%;
        padding: 0 15px;
    }

    .slide::before {
        background: rgba(0,0,0,0.5);
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .prev, .next {
        padding: 8px;
        font-size: 1.5rem;
    }
}

/* Çok küçük ekranlar için */
@media screen and (max-width: 480px) {
    .slide-content {
        width: 95%;
    }
    
    .slide-content .btn {
        padding: 0.8rem 1.5rem;
        margin-top: 1rem;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
    text-align: center;
}

h2 {
    margin-bottom: 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    padding: 2rem;
    background: #f4f4f4;
    border-radius: 10px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(100px);
}

/* Animasyon için yeni class */
.service-card.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Her karta farklı gecikme ekleyelim */
.service-card:nth-child(1) {
    transition-delay: 0.2s;
}

.service-card:nth-child(2) {
    transition-delay: 0.4s;
}

.service-card:nth-child(3) {
    transition-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 150px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #333;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 60px;
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.nav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3, .project-card p {
    padding: 1rem;
}

/* Contact Section Updates */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    text-align: left;
}

.contact-info i {
    margin-right: 10px;
    color: #333;
}

.working-hours {
    margin-top: 2rem;
}

select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

/* Footer Updates */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #222;
}

.footer-section {
    color: #fff;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.social-links a {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    background: #111;
    padding: 1rem;
    text-align: center;
    color: #fff;
}

/* Responsive Updates */
@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 

/* Services Detail Section */
.services-detail {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.service-item.right-image {
    transform: translateX(100px);
}

.service-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.service-image img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.service-text h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.8rem;
}

.why-us {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-us h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.why-us ul {
    list-style: none;
    margin-bottom: 2rem;
}

.why-us li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.why-us li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

@media screen and (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        order: -1;
    }

    .service-text {
        padding: 1rem 0;
    }
} 

.service-area-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-area-notice i {
    font-size: 1.5rem;
    color: #856404;
}

.service-area-notice p {
    margin: 0;
    font-weight: bold;
}

/* About Section Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-content h3 {
    margin: 2rem 0;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.about-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.about-service {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-service h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .about-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-service h4 {
        font-size: 1.2rem;
    }
} 

/* Burger menü stili */
.burger {
    display: none; /* Varsayılan olarak gizli */
    cursor: pointer;
    z-index: 1000;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Burger menü animasyonu için */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-10px, 16px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobil görünüm için navbar düzenlemeleri */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .burger {
        display: block; /* Mobilde burger menüyü göster */
    }

    .nav-links.nav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }
}

/* Servis kartları için mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    section {
        padding: 3rem 1rem; /* Mobilde section padding'i azalt */
    }
}

/* Hizmetler bölümü için mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-image img {
        width: 100%; /* Mobilde görselleri tam genişlikte göster */
    }

    .service-text {
        padding: 0;
    }

    .service-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* İletişim bölümü için mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-info {
        text-align: center;
    }

    .service-area-notice {
        margin: 1rem 0;
    }
}

/* Footer için mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Genel mobil düzenlemeler */
@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .intro-text {
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .why-us {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }

    .why-us h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .why-us li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}

/* Hakkımızda bölümü için mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .about-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-service {
        padding: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.6rem;
        margin: 1.5rem 0;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Slider için ek mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .prev, .next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Genel düzeltmeler */
html, body {
    overflow-x: hidden; /* Yatay scroll'u engelle */
    width: 100%;
    position: relative;
}

/* Mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .navbar {
        width: 100vw; /* Viewport genişliğini kullan */
        left: 0;
        right: 0;
    }

    section {
        width: 100%;
        padding: 3rem 1rem;
        overflow: hidden; /* Taşmaları engelle */
    }

    .services-grid,
    .about-services,
    .service-item,
    .contact-container {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .service-image img {
        width: 100%;
        max-width: 100%;
    }

    /* Container genişliklerini düzelt */
    .container,
    .about-content,
    .services-detail,
    .contact-container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
}

/* Çok küçük ekranlar için ek düzeltmeler */
@media screen and (max-width: 360px) {
    .navbar {
        padding: 0 0.5rem;
    }

    section {
        padding: 2rem 0.5rem;
    }

    .logo img {
        height: 50px; /* Logo boyutunu küçült */
    }
} 