:root {
    --gold: #d4af37;
    --dark-bg: #0c0c0c;
    --light-black: #1a1a1a;
    --text-white: #ffffff;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.text-gold { color: var(--gold) !important; }
.bg-dark-section { background-color: var(--light-black); }

/* --- Navbar & Modern Hover --- */
.navbar {
    background-color: rgba(12, 12, 12, 0.95);
    border-bottom: 1px solid var(--gold);
}
.navbar-brand { color: var(--gold) !important; font-weight: bold; font-size: 1.6rem; }
.navbar-brand span { color: #fff; }
.nav-link { color: #fff !important; font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: var(--gold) !important; }

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu { 
        display: block; opacity: 1; visibility: visible; transform: translateY(0); 
    }
    .dropdown-menu { 
        display: block; opacity: 0; visibility: hidden; transform: translateY(10px); 
        transition: all 0.3s ease; background: var(--light-black); border: 1px solid var(--gold); 
    }
}
.dropdown-item { color: #fff; transition: 0.3s; }
.dropdown-item:hover { background: var(--gold); color: #000; }

/* --- Bulletproof Slider --- */
#mainSlider { position: relative; width: 100%; height: 85vh; min-height: 500px; }
.carousel-inner, .carousel-item { height: 100%; }
.slider-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 1;
}
.carousel-item::before {
    content: ""; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.6); z-index: 2;
}
.carousel-caption { z-index: 3; bottom: 0; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(72%) sepia(50%) saturate(500%) hue-rotate(5deg);
    width: 3rem; height: 3rem;
}

/* --- Hizmet Kartları --- */
.service-img-card { 
    position: relative; overflow: hidden; border-radius: 15px; height: 350px; border: 1px solid #333; 
}
.service-img-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.service-img-card:hover img { transform: scale(1.1); }
.service-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); text-align: center;
}
.service-overlay h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.5rem; }

/* --- Ürünler & Blog --- */
.product-card { 
    background: var(--light-black); border: 1px solid #222; border-radius: 10px; 
    overflow: hidden; transition: 0.3s; 
}
.product-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.blog-card { border: 1px solid var(--gold); border-radius: 15px; background: rgba(212, 175, 55, 0.05); }

/* --- Galeri --- */
.gallery-item img { border-radius: 10px; transition: 0.4s; cursor: pointer; height: 250px; object-fit: cover; width: 100%; }
.gallery-item img:hover { filter: brightness(1.2); border: 1px solid var(--gold); }

/* --- Footer --- */
footer { background: #050505; border-top: 1px solid var(--gold); }
.footer-head { color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 10px; margin-bottom: 20px; display: inline-block; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.wp-button { 
    background: #25d366; color: #fff; padding: 10px 20px; border-radius: 50px; 
    display: inline-block; text-decoration: none; font-weight: 600; margin-top: 15px;
}

/* --- Genel --- */
.section-title { 
    text-align: center; font-family: 'Playfair Display', serif; color: var(--gold); 
    font-size: 2.5rem; position: relative; padding-bottom: 15px; 
}
.section-title::after { 
    content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); 
    width: 60px; height: 3px; background: var(--gold); 
}
.btn-gold { background: var(--gold); color: #000; font-weight: 600; border-radius: 0; padding: 12px 30px; border: none; }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); border-radius: 0; }
.btn-outline-gold:hover { background: var(--gold); color: #000; }
.border-gold { border: 2px solid var(--gold) !important; }