/* Genel Sıfırlama ve Değişkenler */
:root {
    --gold-color: #c59d5f;
    --gold-hover: #a88248;
    --dark-bg: #111111;
    --light-bg: #f9f9f9;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buton Stilleri */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Header & Navigasyon */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 80px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li a {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: var(--gold-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: var(--gold-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}
.btn-whatsapp{
    background-color: #1e7e34;
    color: var(--white);
}
.btn-whatsapp:hover{
    background-color: #1c6a2e;
}
.btn-whatsapp i{
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Ortak Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
}
/* Hizmetlerimiz Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}
.card-img{
    position: relative;
    overflow: visible;
}
.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 35px 30px 30px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white);
    z-index: 10;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 0.9rem;
}
/* Hizmet Alt Liste Stilleri */
.service-sub-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px 0;
    text-align: left; /* Maddelerin düzgün okunması için sola hizaladık */
    flex-grow: 1;
}

.service-sub-list li {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-sub-list li i {
    color: var(--gold-color); /* Ok işaretleri gold renk olacak */
    font-size: 0.75rem;
}

/* Kartların yüksekliğini sabitlemek ve hizalı durmasını sağlamak için */
.services-grid {
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Ürün Galerisi (Sekmeli Filtre) */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 10px 25px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--gold-color);
    color: var(--white);
    border-color: var(--gold-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    height: 250px;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* Footer Alanı */
.main-footer {
    background-color: var(--dark-bg);
    color: #bbbbbb;
    padding: 70px 0 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-socials a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: #222;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    border-radius: 50%;
}

/* --- HOVER (ÜZERİNE GELİNCE) DURUMLARI --- */

/* Facebook Hover - Orijinal Mavi */
.footer-socials a:hover:has(.fa-facebook-f) {
    background-color: #1877F2;
    color: var(--white);
}

/* Instagram Hover - Orijinal Geçişli (Gradient) Renk */
.footer-socials a:hover:has(.fa-instagram) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--white);
}

/* WhatsApp Hover - Orijinal Canlı Yeşil */
.footer-socials a:hover:has(.fa-whatsapp) {
    background-color: #25D366;
    color: var(--white);
}
.footer-grid h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold-color);
    margin-top: 4px;
}

/* Harita Alanı */
.map-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.map-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.map-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.map-btn:hover {
    background: var(--gold-color);
    color: #ffffff;
}

/* Footer Alt Çizgi */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    font-size: 0.8rem;
    text-align: left;
}

.footer-bottom-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
}
.footer-policy{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}
.footer-policy a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-policy a:hover{
    color: var(--gold-color);
}

/* RESPONSIVE (Mobil Uyumluluk) */
@media (max-width: 768px) {
    .footer-grid{
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
    .footer-contact p{
        justify-content: center;
    }
    .footer-socials{
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    .footer-map{
        width: 100%;
    }
    .map-container{
        height: 250px;
        position: relative;
        width: 100%;
    }
    .map-container iframe{
        height: 100%;
        width: 100%;
    }
    .map-btn{
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom-wrapper{
        flex-direction: column !important;
        text-align: center;
        gap: 10px;
    }
    .footer-policy{
        justify-content: center;
    }
    .nav-menu {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 110px);
        background-color: #111111;
        transition: right 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.active{
        right: 0;
    }
    .nav-menu ul{
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
    }
    .nav-menu ul li{
        width: 100%;
        border-bottom: 1px solid #222;
        padding-bottom: 12px;
    }
    .nav-menu ul li a{
        font-size: 1rem !important;
        color: var(--white) !important;
        display: block;
        padding: 0 !important;
    }
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active{
        color: var(--gold-color) !important;
        padding-left: 5px !important;
    }
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .footer-logo{
        display: block;
        margin: 0 auto 20px auto;
    }
    .hero-section{
        background-image: url('marka.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        position: relative;
        z-index: 1;
        padding: 100px 0;
    }
    .hero-section::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55));
        z-index: 2;
    }
    .hero-content{
        position: relative;
        z-index: 3;
        text-align: center;
    }
    .hero-content span,
    .hero-section p.subtitle{
        color: #f1c40f !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        font-weight: 700;
    }
    .hero-section h1,
    .hero-section p{
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    .hero-buttons{
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}