:root {
    --gold: #d4af37; /* Hollywood Altını */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b8860b 100%);
    --black: #050505;
    --dark-panel: #111111;
    --text-grey: #a0a0a0;
    --white: #ffffff;
    --whatsapp: #25D366;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--text-grey);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Tipografi */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    line-height: 1.3;
}

.gold-text {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
header {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.03) 10px,
        rgba(212, 175, 55, 0.03) 20px
    );
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    max-width: 900px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 40px;
    color: #ccc;
}

/* Butonlar */
.btn {
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Bölümler Genel */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #888;
}

/* Kart Yapıları */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--dark-panel);
    padding: 40px;
    border: 1px solid #222;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

/* Hizmet Bölgeleri Listesi */
.regions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.region-col {
    flex: 1;
    min-width: 300px;
    background: #0f0f0f;
    padding: 40px;
    border-left: 3px solid var(--gold);
}

.region-col h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.region-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.region-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #bbb;
}

.region-list li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.region-list li a:hover {
    color: var(--gold);
}

.region-list li::before {
    content: '★';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 5% 30px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-info {
    font-size: 1.5rem;
    margin: 30px 0;
    color: var(--white);
}

.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 2000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Adjust based on header height */
        gap: 0;
        flex-direction: column;
        background-color: rgba(5, 5, 5, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 20px 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero { padding-top: 150px; }
    section { padding: 60px 5%; }
    .btn-outline { margin-left: 0; margin-top: 15px; display: block; text-align: center;}
    .region-list { grid-template-columns: 1fr; }
}
