/* VIP Dark Gold Design System */
:root {
    --color-bg: #0B0C10; /* Koyu antrasit / siyah */
    --color-bg-light: #1F2833;
    --color-gold: #C5A880; /* Şık VIP Gold */
    --color-gold-hover: #D8BD97;
    --color-text: #C5C6C7;
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
    
    --transition: 0.3s ease-in-out;
    --border-radius: 8px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.gold-text { color: var(--color-gold); }
.section { padding: 80px 0; }
.dark-bg { background-color: var(--color-bg-light); }

.grid {
    display: grid;
    gap: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg);
}
.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-bg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-bg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.85); /* Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

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

.logo img {
    height: 45px;
}
.logo .text-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active, .nav-menu a:hover {
    color: var(--color-gold);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--color-gold);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(11, 12, 16, 0.7), rgba(11, 12, 16, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subline {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--color-text);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: rgba(31, 40, 51, 0.5);
    border: 1px solid rgba(197, 168, 128, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Trust Section */
.trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 40px;
}

.trust-item h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
}

/* Generic Pages (About, Policies) */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.page-content {
    background: var(--color-bg);
    padding: 60px 0;
}

.content-box {
    background: rgba(31, 40, 51, 0.5);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.content-box h2, .content-box h3 {
    color: var(--color-gold);
    margin-top: 30px;
}
.content-box h2:first-child { margin-top: 0; }

.content-box p, .content-box ul {
    margin-bottom: 20px;
}

.content-box ul {
    list-style: disc;
    padding-left: 20px;
}

/* Floating Elements */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #050608;
    padding-top: 60px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--color-white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--color-text);
}
.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 12, 16, 0.95);
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-contact { display: none; }
    .mobile-toggle { display: block; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
}
