/* Temel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

a {
    color: #FF6600;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #333;
}

/* Header ve Navigasyon */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin-left: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.nav-menu ul li a:hover {
    color: #fff;
    background-color: #FF6600;
}

/* Hamburger Menü */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Slider Bölümü */
.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 10px;
}

.slider-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-content p {
    font-size: 1.5em;
    font-weight: 300;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #FF6600;
}

/* Hizmetler Bölümü */
.services, .why-us, .contact {
    padding: 80px 40px;
    text-align: center;
}

.services {
    background-color: #fff;
}

.services h2, .why-us h2, .contact h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.service-container, .why-us-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item, .reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-item:hover, .reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3em;
    color: #FF6600;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.service-item h3, .reason-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Neden Biz Bölümü */
.why-us {
    background-color: #FF6600;
    color: #fff;
    position: relative;
}

.why-us h2 {
    color: #fff;
}

.why-us .reason-item {
    background-color: #ff8c4a;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.why-us .reason-item i {
    font-size: 3em;
    color: #fff;
    margin-bottom: 15px;
}

/* İletişim Bölümü ve Google Harita */
.contact {
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    text-align: left;
    color: #FF6600;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #333;
}

.contact-info a:hover {
    color: #FF6600;
}

.google-map {
    flex: 2;
    min-width: 300px;
    height: 450px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Randevu Kutusu */
.appointment-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FF6600;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    animation: popUp 0.5s ease-in-out;
}

.appointment-btn {
    background-color: #fff;
    color: #FF6600;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    animation: pulsate 1.5s infinite;
}

.appointment-btn:hover {
    background-color: #eee;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.appointment-box.hidden {
    display: none;
}

/* Footer Bölümü */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 40px;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #FF6600;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FF6600;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF6600;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Mobil Uyumlu Tasarım (Responsive) */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 20px 0;
        animation: slideDown 0.3s ease-in-out;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .slider {
        height: 400px;
    }

    .slider-content {
        padding: 20px 30px;
    }

    .slider-content h1 {
        font-size: 2.5em;
        margin-bottom: 5px;
    }

    .slider-content p {
        font-size: 1.2em;
    }

    .slider-dots {
        bottom: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .service-container, .why-us-container, .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item, .reason-item, .contact-info, .google-map {
        width: 100%;
        max-width: 450px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        min-width: auto;
    }

    .footer-col h3 {
        text-align: center;
    }
}

/* Ek Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulsate {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Animasyonların görünür olduğunda tetiklenmesi */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pop-up {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pop-up.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-text-1.active {
    animation: slideInFromLeft 1s ease-out;
}
.animate-text-2.active {
    animation: slideInFromRight 1s ease-out;
}