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

body {
    font-family: "Poppins", sans-serif;
    background: #f0f0f0;
    color: #111;
    overflow-x: hidden;
}

/* Menü açıkken scroll kilit */
body.no-scroll {
    overflow: hidden;
}

/* ========== HERO + HEADER (index ile uyumlu) ========== */

.hero {
    position: relative;
    height: 60vh;
    background: url("image.png") center center / cover no-repeat;
}

.hero-services {
    /* istersen farklı görsel için burayı kullan */
    background: url("image.png") center center / cover no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* HEADER */
.hero-header {
    position: relative;
    z-index: 3;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 12px;
    font-size: 14px;
    text-transform: uppercase;
}

.lang {
    color: #ccc;
    text-decoration: none;
}

.lang.active {
    color: #ffd54a;
}

/* HAMBURGER */
.menu-btn {
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
}

/* HERO CONTENT (bu sayfada kullanmıyoruz ama index ile uyum için dursun) */
.hero-content {
    position: relative;
    z-index: 2;
    height: calc(60vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 0.22em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 14px;
}

/* FULLSCREEN SLIDE MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.90);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 99;
}

.menu-overlay.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 35px;
    font-size: 45px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    text-align: center;
}

.menu-list li {
    font-size: 32px;
    margin: 16px 0;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.menu-list li:first-child {
    color: #d2b47c;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Mobil */
@media (max-width: 768px) {
    .hero-header {
        padding: 16px 20px;
    }

    .menu-list li {
        font-size: 26px;
    }

    .close-btn {
        right: 20px;
        top: 20px;
    }

    .hero {
        height: 45vh;
    }
}

/* ========== SERVICES FULL WIDTH GRID ========== */

.services-section {
    width: 100%;
    padding: 60px 60px 100px;
    background: #ffffff;
}

.services-header {
    margin-bottom: 40px;
}

.lang-mini {
    font-size: 14px;
    font-weight: 600;
    color: #ffd500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.services-title {
    margin-top: 8px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* GRID */
.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.service-card {
    border: 1.5px solid #e1b96e;
    padding: 30px 24px 28px;
    background: #ffffff;
    text-align: center;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* ICON BLACK BOX */
.service-icon-box {
    width: 140px;
    height: 140px;
    background: #171717;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box i {
    color: #fff;
    font-size: 52px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #d39b40;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

.service-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .services-section {
        padding: 40px 30px 60px;
    }
}

@media (max-width: 600px) {
    .service-card {
        padding: 22px 16px;
    }
    .service-icon-box {
        width: 120px;
        height: 120px;
    }
}






/* ====== ABOUT SECTION ====== */

.about-section {
    background: #050505;
    color: #ffffff;
    padding: 110px 40px;
}

.about-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Sol metin */
.about-text h2 {
    font-size: 30px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* Sağ görsel */
.about-image {
    flex: 0 0 40%;
    max-width: 460px;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-inner {
        flex-direction: column-reverse; /* mobilde önce görsel, sonra yazı istersen 'column' yap */
        text-align: center;
    }

    .about-image {
        flex: none;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 24px;
    }
}



/* ====== STATS SECTION ====== */

.stats-section {
    background: #ffd500;
    padding: 90px 40px;      /* biraz küçüldü */
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

/* Box Style */
.stat-box {
    border: 1.5px solid #222;
    padding: 28px 18px;      /* eskisinden daha kompakt */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: #000;
}

/* Icon */
.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: #111;
}

.stat-icon i {
    display: inline-block;
}

/* Number */
.stat-number {
    font-size: 34px;
    font-weight: 700;
    margin: 4px 0;
    color: #000;
}

/* Label */
.stat-label {
    font-size: 14px;
    letter-spacing: 0.10em;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 70px 20px;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }
}





/* ====== FOOTER ====== */

.footer {
    background: #0a0a0a;
    padding: 80px 40px 40px;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

/* Logo */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffd500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 260px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd500;
    letter-spacing: 0.1em;
}

/* Quick links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffd500;
    padding-left: 6px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffd500;
    font-size: 16px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-inner {
        gap: 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}
.menu-list a {
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    transition: 0.25s ease;
    letter-spacing: 0.12em;
}

.menu-list a:hover {
    color: #ffd500;
}

/* Aktif (bulunulan sayfa) */
.menu-list a.active {
    color: #ffd500;
    font-weight: 600;
}

/* Daha güzel görünmesi için LI'ları düzenledim */
.menu-list li {
    margin: 8px 0;
    list-style: none;
}
