/* --- 1. TEMEL AYARLAR --- */
:root {
    --bg-color: #121212;
    --text-color: #EAEAEA;
    --gold-color: #D4AF37;
    --dark-grey: #1F1F1F;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-color);
    font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 20px; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }

p {
    font-weight: 300;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #FFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

section {
    overflow: hidden;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-color);
    border-bottom: 2px solid var(--gold-color);
}

/* --- 3. BÖLÜMLER --- */
#hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    background-color: var(--bg-color);
    color: #FFF;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    color: #FFF;
    font-size: 3rem;
}

.hero-content h1 span {
    color: var(--gold-color);
    display: block;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 30px;
    font-weight: 300;
    line-height: 1.7;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0 10px;
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--bg-color);
}

.btn-gold:hover {
    background-color: #FFF;
    color: var(--bg-color);
}

.btn-outline {
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
}

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

#ekibimiz {
    background-color: var(--dark-grey);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.team-icon {
    font-size: 4rem;
    color: var(--gold-color);
    margin-bottom: 25px;
}

.team-card p {
    font-style: italic;
    color: #AAA;
    font-size: 1rem;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--dark-grey);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-bottom: 4px solid var(--gold-color);
    transform: translateY(-5px);
}

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

.service-card h3 {
    color: var(--text-color);
}

.service-card p {
    font-size: 0.9rem;
}

#cta {
    background-color: var(--dark-grey);
    text-align: center;
}

#cta h2 {
    text-align: center;
}

#cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* --- 4. FOOTER --- */
footer {
    background-color: #0A0A0A;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.footer-contact .phone {
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFF;
}

.social-icons {
    margin: 30px 0;
}

.social-icons a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0 15px;
}

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    color: #888;
}

/* --- 5. MOBİL UYUMLULUK (Responsive) --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-content h1 span { font-size: 3rem; }

    .team-grid, .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-links {
        display: none; /* Initially hidden */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Below header */
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        display: flex; /* Shown when active */
    }

    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }

    h1 { font-size: 2.2rem; }
    .hero-content h1 span { font-size: 2.5rem; }

    .team-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    #hero {
        min-height: 70vh;
        padding: 150px 0 100px;
    }

    .btn {
        display: block;
        margin: 10px 0;
    }
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--gold-color);
}

/* --- Sayfa İçi Stiller --- */
.page-header {
    text-align: center;
    padding-bottom: 40px;
}
.content-section {
    margin-bottom: 50px;
}
.service-item, .faq-item, .article-card, .why-us-list li {
    background-color: var(--dark-grey);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold-color);
}
.why-us-list {
    list-style-type: none;
    padding: 0;
}
.why-us-list i {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-right: 20px;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.article-card p {
    color: #AAA;
}
.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}
.article-meta {
    margin-bottom: 30px;
    color: #AAA;
    font-size: 0.9rem;
}
.article-meta span {
    margin-right: 20px;
}
.article-content ul {
    list-style-position: inside;
    padding-left: 10px;
    margin-bottom: 20px;
}
.article-content li {
    margin-bottom: 10px;
}
.closing-section {
    background-color: var(--dark-grey);
    padding: 40px;
    border-radius: 5px;
    margin-top: 50px;
    text-align: center;
    border-top: 3px solid var(--gold-color);
}
.profile-header {
    text-align: center;
    margin-bottom: 50px;
}
.profile-icon {
    font-size: 6rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}
.expertise-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.expertise-list li {
    background-color: var(--dark-grey);
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.expertise-list i {
    margin-right: 15px;
    color: var(--gold-color);
}
.contact-section {
    background-color: var(--dark-grey);
    padding: 40px;
    border-radius: 5px;
    margin-top: 50px;
    text-align: center;
}
.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.contact-section a {
    font-size: 1.5rem;
    font-weight: 500;
}
