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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #2e5e2e;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-icon 8s ease-in-out infinite;
}

@keyframes rotate-icon {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(15deg) scale(1.05); }
    100% { transform: rotate(0deg); }
}

.logo-icon i {
    font-size: 58px;
    color: #6fbf6f;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: absolute;
    z-index: 1;
}

.logo-icon .logo-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.1;
    margin-top: -2px;
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #f0d78c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 0;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f0d78c;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #f0d78c;
}

.btn-randevu {
    background-color: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-randevu:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-randevu i {
    font-size: 18px;
}

.btn-randevu::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* WhatsApp Sabit Buton */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1024&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

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

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1s ease-out;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.whatsapp-hero-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 25px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-hero-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    animation: none;
}

.whatsapp-hero-btn i {
    margin-right: 10px;
    font-size: 22px;
}

/* Bölümler */
section {
    padding: 60px 0;
}

.bolum-baslik {
    text-align: center;
    margin-bottom: 45px;
}

.bolum-baslik h2 {
    font-size: 28px;
    color: #2e5e2e;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.bolum-baslik h2::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c7a951, #2e5e2e);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.bolum-baslik p {
    color: #666;
    font-size: 16px;
}

/* Kartlar */
.kart-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.kart, .bilgi-kart {
    background-color: #fff;
    padding: 25px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.kart:hover, .bilgi-kart:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.kart i, .bilgi-kart i {
    font-size: 34px;
    color: #c7a951;
    margin-bottom: 15px;
}

.kart h3, .bilgi-kart h3 {
    color: #2e5e2e;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #2e5e2e;
    color: white;
    text-align: center;
    padding: 22px 0;
    margin-top: 20px;
    font-size: 14px;
}

.aciklama {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

.uyari-notu {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a3b1a;
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        gap: 12px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h2 {
        font-size: 28px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .logo-icon {
        width: 55px;
        height: 55px;
    }
    .logo-icon i {
        font-size: 45px;
    }
    .logo h1 {
        font-size: 24px;
    }
}