/* Ana Değişkenler */
:root {
    --altin: #D4AF37;
    --koyu-altin: #AA8C2C;
    --acik-altin: #F4CF5C;
    --siyah: #1A1A1A;
    --koyu-gri: #333333;
    --gri: #666666;
    --acik-gri: #F5F5F5;
    --beyaz: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, var(--koyu-altin) 0%, var(--altin) 50%, var(--acik-altin) 100%);
    --gradient-dark: linear-gradient(135deg, var(--siyah) 0%, var(--koyu-gri) 100%);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Header Stili */
#ust_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 50px;
    transition: var(--transition);
    background-color: var(--siyah);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ust_menu.scroll {
    background-color: var(--siyah);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
}

/* Logo Stili */
.logo a {
    display: flex;
    align-items: center;
    color: var(--beyaz);
}

.logo-icon-container {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    font-weight: 400;
    opacity: 0.8;
}

/* Navigasyon Stili */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--beyaz);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

nav ul li a i {
    margin-right: 8px;
}

nav ul li a:hover {
    color: var(--altin);
}

/* Mobil Menü */
.mobil-menu-btn {
    display: none;
    color: var(--beyaz);
    font-size: 24px;
    cursor: pointer;
}

/* Ana Sayfa Stili */
.hizmet-sayfasi {
    padding-top: 50px;
    background-color: var(--beyaz);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-serif);
}

.hero-section .hizmet-ikon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
}

.hero-section .hizmet-ikon i {
    font-size: 40px;
    color: var(--beyaz);
}

/* Hizmet Detay */
.hizmet-detay {
    padding: 60px 0;
    background: var(--acik-gri);
}

.hizmet-icerik {
    background: var(--beyaz);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 40px;
}

.ana-aciklama {
    font-size: 18px;
    line-height: 1.8;
    color: var(--koyu-gri);
    margin-bottom: 30px;
}

.hizmet-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmet-liste li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--acik-gri);
    border-radius: 8px;
    transition: var(--transition);
}

.hizmet-liste li:hover {
    transform: translateX(10px);
    background: var(--acik-altin);
    color: var(--beyaz);
}

.hizmet-liste li:hover i {
    color: var(--beyaz);
}

.hizmet-liste li i {
    color: var(--altin);
    margin-right: 15px;
    font-size: 20px;
}

/* Diğer Hizmetler */
.diger-hizmetler {
    padding: 80px 0;
    background: var(--beyaz);
}

.diger-hizmetler h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--siyah);
    font-size: 36px;
    font-family: var(--font-serif);
    position: relative;
}

.diger-hizmetler h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hizmet-kutu {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: var(--beyaz);
    height: 100%;
    min-height: 350px;
}

.hizmet-kutu:hover {
    transform: translateY(-10px);
}

.hizmet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: var(--transition);
}

.hizmet-kutu:hover .hizmet-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.hizmet-kutu .hizmet-icerik {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
}

.hizmet-kutu .hizmet-ikon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hizmet-kutu .hizmet-ikon i {
    font-size: 24px;
    color: var(--beyaz);
}

.hizmet-kutu h3 {
    color: var(--siyah);
    margin-bottom: 15px;
    font-size: 24px;
    font-family: var(--font-serif);
}

.hizmet-kutu p {
    color: var(--gri);
    margin-bottom: 20px;
    line-height: 1.6;
}

.buton {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient-gold);
    color: var(--beyaz);
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    margin-top: auto;
}

.buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    #ust_menu {
        padding: 15px 20px;
    }

    .mobil-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
    }

    .hero-section {
        height: 300px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hizmet-icerik {
        padding: 20px;
    }

    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hizmet-liste li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section .hizmet-ikon {
        width: 80px;
        height: 80px;
    }

    .hero-section .hizmet-ikon i {
        font-size: 32px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .ana-aciklama {
        font-size: 16px;
    }
}