* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #1c2d42 0%, #2c3e50 100%);
    padding: 10px 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

header .logo a {
    display: inline-block;
    width: 110px;
    height: 110px;
    text-indent: -9999px;
    margin-top: 5px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    transition: transform 0.3s;
    background: url('images/kamanubyo2026-logo.jpg') no-repeat center center;
    background-size: cover;
}

header .logo a:hover {
    transform: scale(1.05);
}

nav.karma-menu {
    display: flex;
    align-items: center;
}

nav.karma-menu ul.acik-linkler {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav.karma-menu ul.acik-linkler li {
    margin-left: 20px;
}

nav.karma-menu ul.acik-linkler li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav.karma-menu ul.acik-linkler li a:hover {
    color: #f39c12;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.menu-butonu {
    background-color: #d35400;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.hamburger-menu ul.ana-liste {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #1c2d42;
    min-width: 220px;
    flex-direction: column;
    padding: 0;
    padding-top: 5px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 10;
    list-style: none;
}

.hamburger-menu:hover ul.ana-liste {
    display: flex;
}

.hamburger-menu ul.ana-liste li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    width: 100%;
}

.hamburger-menu ul.ana-liste li a {
    padding: 15px 20px;
    display: block;
    width: 100%;
    color: white;
    text-decoration: none;
}

.hamburger-menu ul.ana-liste li a:hover {
    background-color: #d35400;
}

.hamburger-menu ul.alt-liste {
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    background-color: #2c3e50;
    min-width: 220px;
    flex-direction: column;
    padding: 0;
    border-radius: 5px;
    box-shadow: -4px 4px 10px rgba(0,0,0,0.3);
    list-style: none;
}

.alt-menulu:hover ul.alt-liste {
    display: flex;
    margin-right: -5px;
}

.hamburger-menu ul.alt-liste li a {
    padding: 10px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ok {
    float: right;
    font-size: 1rem;
}

.karsilama-alani {
    background-color: #e8ecef;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.karsilama-alani h1 {
    font-size: 3rem;
    color: #14213d;
    margin-bottom: 20px;
}

.karsilama-alani p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #4a5568;
}

.urunler-alani {
    padding: 40px 5%;
    text-align: center;
}

.urunler-alani h2 {
    font-size: 2.2rem;
    color: #14213d;
    margin-bottom: 40px;
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.urun-karti {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

.urun-karti:hover {
    transform: translateY(-10px);
}

.urun-gorsel {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
    height: auto;
    display: block;
}

.urun-gorsel img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.urun-gorsel img:hover {
    transform: scale(1.03);
}

.urun-karti h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
}

.urun-karti .fiyat {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400;
    margin-bottom: 15px;
}

.buton {
    display: inline-block;
    background-color: #d35400;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s;
}

.buton:hover {
    background-color: #a04000;
}

.siparis-butonu {
    display: block;
    background-color: #1c2d42;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.siparis-butonu:hover {
    background-color: #14213d;
}

.whatsapp-buton {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.whatsapp-buton:hover {
    background-color: #128C7E;
}

.iletisim-alani {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-grup {
    margin-bottom: 20px;
}

.form-grup label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1c2d42;
}

.form-grup input, .form-grup textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1c2d42;
    color: white;
    margin-top: 50px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    header nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header nav ul li {
        margin: 5px 10px;
    }
    
    .karsilama-alani h1 {
        font-size: 2rem;
    }
}

.video-karsilama {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.arka-plan-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.video-karartma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 45, 66, 0.4);
    z-index: 2;
}

.video-icerik {
    position: relative;
    z-index: 3;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.video-icerik h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.6);
}

.video-icerik p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .video-karsilama {
        height: 50vh;
    }
    .video-icerik h1 {
        font-size: 2.5rem;
    }
    .video-icerik p {
        font-size: 1.1rem;
    }
}

.alt-sayfa-banner {
    position: relative;
    width: 100%;
    height: 30vh;
    background: url('images/kaman-cevizi.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.banner-karartma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 45, 66, 0.7);
    z-index: 1;
}

.banner-icerik {
    position: relative;
    z-index: 2;
    color: white;
}

.banner-icerik h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}

.yuzen-wp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
}

.yuzen-wp-buton {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: nabiz 2s infinite;
}

.yuzen-wp-buton:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

@keyframes nabiz {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .yuzen-wp-link {
        bottom: 20px;
        right: 20px;
    }
    .yuzen-wp-buton {
        width: 50px;
        height: 50px;
    }
    .yuzen-wp-buton svg {
        width: 30px;
        height: 30px;
    }
}

.guven-alani {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
}

.rozet {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.rozet-ikon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rozet h4 {
    color: #1c2d42;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.rozet p {
    color: #666;
    font-size: 0.9rem;
}

.animasyon-bekliyor {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animasyon-goster {
    opacity: 1;
    transform: translateY(0);
}

.hakkimizda-detay {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.hikaye-alani {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.hikaye-metin {
    flex: 1;
}

.hikaye-metin h2 {
    color: #1c2d42;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hikaye-metin p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hikaye-gorsel {
    flex: 1;
}

.hikaye-gorsel img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hikaye-gorsel img:hover {
    transform: scale(1.03);
}

.sayilarla-biz {
    display: flex;
    justify-content: space-between;
    background: #1c2d42;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(28, 45, 66, 0.3);
}

.sayi-kutu {
    flex: 1;
    min-width: 150px;
}

.sayi-kutu h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #25d366;
}

.sayi-kutu p {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hikaye-alani {
        flex-direction: column;
    }
}

.neden-biz-alani {
    padding: 40px 5%;
    max-width: 800px;
    margin: 0 auto 50px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.neden-biz-alani h2 {
    color: #1c2d42;
    margin-bottom: 20px;
}

.neden-biz-alani p {
    margin-bottom: 15px;
}

.neden-biz-alani h3 {
    color: #d35400;
    margin-bottom: 15px;
    margin-top: 30px;
}

.form-grup input, .form-grup textarea, .form-grup select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}
.yuzen-sosyal-link {
    position: fixed;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
}

.yuzen-wp-pozisyon {
    bottom: 30px;
}

.insta-pozisyon {
    bottom: 105px;
}

.yuzen-insta-buton {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.yuzen-insta-buton:hover {
    transform: scale(1.1);
    box-shadow: 2px 8px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .yuzen-sosyal-link { right: 20px; }
    .yuzen-wp-pozisyon { bottom: 20px; }
    .insta-pozisyon { bottom: 85px; }
    .yuzen-insta-buton { width: 50px; height: 50px; }
}