/* Genel Stil & Kurumsal Renkler */
:root {
    --primary: #1b365d;
    --primary-dark: #122540;
    --accent: #2196f3;
    --orange: #f59e0b;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.phone-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(27, 54, 93, 0.2);
    transition: var(--transition);
}

.phone-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Alanı */
.hero {
    background: linear-gradient(135deg, #122540 0%, #1b365d 100%);
    color: var(--white);
    padding: 100px 0 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stat-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Hero Görsel Kompozisyonu */
.hero-image-box {
    position: relative;
    height: 420px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 340px;
    background: url('assets/img/logo.png') center/cover no-repeat;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.15);
}

.hero-img-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 200px;
    background: url('assets/img/logo.png') center/cover no-repeat;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
    border: 4px solid var(--white);
}

/* Özellik İkon Şeridi */
.features-bar {
    background-color: var(--white);
    padding: 35px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-item i {
    font-size: 32px;
    color: var(--orange);
    background: rgba(245, 158, 11, 0.1);
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
}

.f-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.f-item p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.title-line {
    width: 50px;
    height: 4px;
    background-color: var(--orange);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

/* Ürünler & Hizmetler Grid */
.products-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.08);
    border-color: transparent;
}

.modern-card:hover::before {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 30px;
    background: #e0f2fe;
    color: #0369a1;
    letter-spacing: 0.5px;
}

.card-badge.premium { background: #fef3c7; color: #b45309; }
.card-badge.special { background: #dcfce7; color: #15803d; }

.card-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.2));
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.modern-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.modern-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.card-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.card-footer-info span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
}

.card-action-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.card-action-btn:hover {
    gap: 10px;
    color: var(--primary);
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.chk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.chk i {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.about-image-box {
    position: relative;
}

.about-img-bg {
    height: 380px;
    background: linear-gradient(rgba(27, 54, 93, 0.6), rgba(27, 54, 93, 0.6)), url('assets/img/logo.png') center/cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.experience-badge {
    background: var(--white);
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    width: 100%;
}

.experience-badge i {
    font-size: 36px;
    color: var(--orange);
    flex-shrink: 0;
}

.experience-badge h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.experience-badge p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

/* Fotoğraf Galerisi */
.gallery-section {
    padding: 90px 0;
    background-color: #f1f5f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 54, 93, 0.85), rgba(27, 54, 93, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-overlay i {
    font-size: 20px;
    color: var(--orange);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img-box {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Bölgeler Bölümü */
.regions-section-unique {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.light-title h2 { color: var(--white); }

.unique-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.u-region-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.u-region-card:hover {
    background: rgba(33, 150, 243, 0.12);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.u-region-card i {
    font-size: 22px;
    color: var(--orange);
    background: rgba(245, 158, 11, 0.1);
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.u-region-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.u-region-card span {
    font-size: 12px;
    color: #94a3b8;
}

/* İletişim Bölümü */
.contact-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.contact-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.c-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px auto;
}

.whatsapp-bg {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card-modern p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-action-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    word-break: break-all;
}

.contact-action-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.wa-text {
    color: #16a34a;
}

.hours-badge {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 800;
    font-size: 18px;
}

.footer-logo span {
    color: var(--accent);
}

/* Sol Alt Sabit Butonlar */
.floating-cta {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.whatsapp-float {
    background-color: #25d366;
}

.phone-float {
    background-color: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* MOBİL UYUMLULUK VE MEDYA SORGULARI (RESPONSIVE) */

@media (max-width: 992px) {
    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        padding: 60px 0 50px 0;
    }
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 75px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-image-box {
        height: 320px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .stat-box h3 {
        font-size: 18px;
    }
    .stat-box p {
        font-size: 11px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .product-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-checks {
        grid-template-columns: 1fr;
    }
    .footer-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item {
        height: 160px;
    }
    .unique-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .unique-regions-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}