* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #111;
}

/* ---------- NAVİGASYYON BAR ---------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    transition: .35s;
}

.navbar.scrolled {
    background: rgba(16, 16, 16, .9);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.logo-bottom {
    font-size: 18px;
    letter-spacing: 4px;
    color: #f2b705;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f2b705;
    transition: .3s;
}

.nav-links a:hover {
    color: #f2b705;
}

.nav-links a:hover::after {
    width: 100%;
}
.nav-btn{
    padding:14px 30px;
    font-size:16px;
}

/* ---------- MERKEZ(HERO) ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../assest/images/manitou (1).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .85) 10%,
        rgba(0, 0, 0, .55) 45%,
        rgba(0, 0, 0, .15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.hero h1 {
    font-family: "Oswald", sans-serif;
}

.hero p {
    font-size: 22px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-tag {
    display: inline-block;
    background: #f2b705;
    color: black;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-features span {
    color: #ddd;
    font-size: 15px;
    border-left: 3px solid #f2b705;
    padding-left: 12px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-primary {
    background: #f2b705;
    color: #111;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(242, 183, 5, .35);
    transition: .3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 8px;
    transition: .3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* ---------- SERVİSLER ---------- */

.services {
    background: #f8f8f8;
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #f2b705;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #222;
}

.section-title p {
    color: #666;
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 18px;
    cursor: pointer;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 18px 35px rgba(0, 0, 0, .18),
        0 0 28px rgba(242, 183, 5, .28);
}

.service-icon {
    width:74px;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(242,183,5,.12);
    color:#f2b705;
    margin-bottom: 25px;
    transition: transform .35s ease, background .35s ease;
}

.service-icon svg{
    width:34px;
    height:34px;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    background:rgba(242,183,5,.22);
}

.service-card h3 {
    margin-bottom: 18px;
    color: #222;
    font-size: 24px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ===========================
        İLETİŞİM
=========================== */

.contact{
    background:#111;
    color:white;
    padding:120px 8%;
}

.contact .section-title h2{
    color:white;
}

.contact .section-title p{
    color:#bdbdbd;
}

/* GRID */

.contact-container{
    margin-top:70px;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:start;
}

/* SOL TARAF */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#1d1d1d;
    padding:24px;
    border-radius:16px;
    border-left:4px solid #f2b705;
    transition:.35s;
}

.contact-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.30);
}

.contact-item-icon{
    flex-shrink:0;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(242,183,5,.12);
    color:#f2b705;
}

.contact-item-icon svg{
    width:22px;
    height:22px;
}

.contact-item-text h4{
    margin-bottom:6px;
    color:white;
    font-size:17px;
}

.contact-item-text p,
.contact-item-text a{
    color:#d4d4d4;
    text-decoration:none;
}

/* TIKLANABİLİR AKSİYON BUTONLARI (Telefon / WhatsApp) */

.contact-action{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 24px;
    border-radius:16px;
    text-decoration:none;
    transition:.3s ease;
    cursor:pointer;
}

.contact-action-icon{
    flex-shrink:0;
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.18);
    transition:.3s ease;
}

.contact-action-icon svg{
    width:26px;
    height:26px;
}

.contact-action-text{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.contact-action-text strong{
    font-size:18px;
    line-height:1.2;
}

.contact-action-text small{
    font-size:13px;
    opacity:.85;
    font-weight:500;
}

/* Telefon: altın (marka rengi), birincil aksiyon */

.contact-call{
    background:#f2b705;
    color:#111;
    box-shadow:0 10px 30px rgba(242,183,5,.30);
}

.contact-call .contact-action-icon{
    background:rgba(17,17,17,.12);
    color:#111;
}

.contact-call:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 38px rgba(242,183,5,.45);
}

/* WhatsApp: marka yeşili, tanınırlık için */

.contact-whatsapp{
    background:#25d366;
    color:#0b2b18;
    box-shadow:0 10px 30px rgba(37,211,102,.28);
}

.contact-whatsapp .contact-action-icon{
    background:rgba(11,43,24,.14);
    color:#0b2b18;
}

.contact-whatsapp:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 38px rgba(37,211,102,.45);
}

/* SAĞ TARAF (harita çerçevesi; SVG'nin kendi görünümü css/map.css içinde) */

.contact-map{
    display:flex;
    justify-content:center;
}

.map-wrapper{
    position:relative;
    display:inline-block;
    overflow:hidden;
    border-radius:18px;
}

.map-title{
    text-align:center;
    margin-bottom:20px;
    font-size:28px;
    color:white;
}

.map-info{
    text-align:center;
    margin-top:18px;
    color:#bdbdbd;
    line-height:1.7;
}

/* ==========================
        GALERİ
========================== */

.gallery{
    background:#f8f8f8;
    padding:120px 8%;
}

.gallery-placeholder{
    margin:auto;
    max-width:700px;
    background:white;
    border:2px dashed #f2b705;
    border-radius:20px;
    padding:80px;
    text-align:center;
}

.gallery-placeholder h3{
    font-size:34px;
    color:#222;
    margin-bottom:20px;
}

.gallery-placeholder p{
    color:#666;
    line-height:1.8;
}
/* ===========================
    UÇAN AKSİYON BUTONLARI (WhatsApp / Ara)
=========================== */

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 998;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.06);
}

/* Telefon: sitendeki .contact-call ile aynı renk/gölge mantığı */
.floating-call {
    background: #f2b705;
    color: #111;
    box-shadow: 0 8px 24px rgba(242, 183, 5, .45);
}

/* WhatsApp: sitendeki .contact-whatsapp ile aynı renk/gölge mantığı */
.floating-whatsapp {
    background: #25d366;
    color: #0b2b18;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .40);
}

@media (max-width: 480px) {
    .floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}