:root {
    --bg-dark: #000000;
    --card-bg: #111111;
    --red: #ff4b42;
    --green: #72bf44;
    --blue: #3498db;
    --yellowlow: #977b40;
    --yellow: #faaf40;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    scrollbar-width: none !important;
}

/*scrollbar gizleme*/
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    /* Taşmayı önleyen en kritik komut */
}

html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.stack {
    display: grid;
    width: 100%;
}

.stack>* {
    grid-area: 1 / 1;
}

.ustkatman {
    z-index: 10;
    pointer-events: none;
    width: 100%;
    overflow-x: hidden;
}

.altkatman {
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.ustkatman>* {
    pointer-events: auto;
}

/*arama ve konum gönder üstkatman*/
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: min(2vw, 10px);
    position: fixed;
    bottom: min(20vw, 100px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.custom-btn {
    position: relative;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 0px 20px 20px 0px;
    display: inline-flex;
    width: auto;
    gap: 15px;
    align-items: center;
    padding: 0 0 0 min(4vw, 20px);
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        transform 0.2s ease,
        background 0.3s ease;
}

.custom-btn:active .icon-box img,
.scroll-top-btn:active img {
    transform: scale(0.85);
    transition: transform 0.1s;
}

.btn-text {
    color: white;
    font-size: min(2.4vw, 12px);
    font-weight: 700;
    z-index: 2;
}

.icon-box {
    width: min(10vw, 50px);
    height: min(10vw, 50px);
    border-radius: min(3vw, 15px) min(3vw, 15px) min(3vw, 15px) min(2vw, 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.icon-circle {
    background-color: #1f1f1f;
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: min(3vw, 15px);
}

.action-row .btn-green .icon-box {
    border-radius: min(3vw, 15px) min(3vw, 15px) min(2vw, 10px) min(3vw, 15px) !important;
}

.callimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.chatbubbleoutlineimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.locationonimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.menuimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.keyboarddoublearrowupimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.blur-bg {
    position: absolute;
    right: -10px;
    width: 150px;
    height: 100%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
}

.btn-red .icon-box {
    background-color: #ff4b42;
}

.btn-red .blur-bg {
    background-color: #ff4b42;
}


.btn-green .icon-box {
    background-color: #72bf44;
}

.btn-green .blur-bg {
    background-color: #72bf44;
}

/*yukarı git butonu*/
.scroll-top-btn {
    position: fixed;
    bottom: min(10vw, 50px);
    right: 0;
    padding: min(2.4vw, 12px) min(3.6vw, 18px) min(2.4vw, 12px) min(3.6vw, 18px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: min(3vw, 15px) 0px 0px min(3vw, 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 30px;
    height: 100%;
    background-color: #4caf4fa2;
    filter: blur(20px);
    opacity: 0.8;
    pointer-events: none;
}

h1,
h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.action-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.action-row .btn-green {
    border-radius: 20px 0px 0px 20px;
    flex-direction: row;
    padding: 0 20px 0 0px;
}

.main-content-card {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px;
    border-radius: 0 0 30px 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}

.lcp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.main-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/*title*/
.wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background-color: #d492361e;
    border: 1px solid #d49336;
    color: #d49336;
    padding: 3px 12px;
    border-radius: min(1.6vw, 8px);
    font-size: min(2vw, 10px);
    font-weight: 400;
    margin-bottom: min(3vw, 15px);
    margin-top: min(8vw, 40px);
    letter-spacing: 1px;
}

.wrappernormal {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
}

.wrappernormalcenter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badgenormal {
    background-color: #0000001e;
    border: 1px solid #444444;
    color: #979797;
    padding: 3px 12px;
    border-radius: min(1.6vw, 8px);
    font-size: min(2vw, 10px);
    font-weight: 400;
    margin-bottom: min(3vw, 15px);
    letter-spacing: 1px;
}

.title-container {
    margin: 0;
    line-height: 0.95;
}

.text-white {
    font-size: min(6vw, 30px);
    font-weight: 800;
    display: block;
    letter-spacing: -2px;
}

.text-orange {
    font-size: min(7.6vw, 38px);
    font-weight: 800;
    font-style: italic;
    color: #d49336;
    display: block;
    letter-spacing: -2px;
}

/*ödeme yöntemleri*/
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(3vw, 15px);
    margin-top: min(4vw, 20px);
    margin-bottom: min(8vw, 40px);
}

.pay-item {
    background: #181818;
    display: flex;
    align-items: center;
    padding: 0px min(3vw, 15px) 0px 0px;
    border-radius: min(6vw, 30px);
    gap: 10px;
    font-size: min(2.6vw, 13px);
    font-weight: bold;
    line-height: 0;
}

.pay-icon {
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border-radius: min(3vw, 15px) min(3vw, 15px) min(3vw, 15px) min(2vw, 10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.paymentsimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.havaleeftimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.creditcardimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.metin-kutusu {
    width: 90%;
    margin: 0 auto;
    font-size: min(3.2vw, 16px);
    margin-bottom: min(8vw, 40px);
    text-align: center;
    font-weight: 600;
    color: white;
}

.yellow-bg {
    background-color: var(--yellow);
}

.green-bg {
    background-color: var(--green);
}

.blue-bg {
    background-color: var(--blue);
}

.site-footer {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text {
    color: #a0a0a0;
    font-size: min(2.8vw, 14px);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-text span {
    font-weight: 400;
    font-size: min(2.8vw, 14px);
    margin-left: 5px;
}

.footer-link-badge {
    cursor: pointer !important;
    position: relative;
    z-index: 999;
    display: inline-block;
    background-color: #ffb443;
    color: #000;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: min(2.4vw, 12px);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link-badge:hover {
    opacity: 0.9;
}

/*ana sayfa*/
.topbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: min(13vw, 65px);
    background: rgba(2, 2, 2, 0.514);
    border-radius: min(4vw, 20px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px 0px 10px;
    z-index: 9999;
    overflow: hidden;
}

.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
            rgba(255, 255, 255, 0.05),
            transparent 60%);
    pointer-events: none;
}

.left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-wrap {
    width: min(12vw, 60px);
    height: min(12vw, 60px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-wrap img {
    filter: invert(65%) sepia(21%) saturate(1637%) hue-rotate(352deg) brightness(91%) contrast(80%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    color: #ffffff;
    font-size: min(3vw, 15px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 6px;
}

.subtitle {
    color: #a3a3a3;
    font-size: min(2.6vw, 13px);
    font-weight: 500;
    line-height: 1;
}

.menu-btn {
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border-radius: min(3vw, 15px);
    background:
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.048);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 2px 10px rgba(255, 255, 255, 0.103);
    cursor: pointer;
}

/*25dk 7/24 100%*/
.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: min(8vw, 40px);
}

.stat-item {
    text-align: center;
    padding: 0 6%;
    border-right: 1px solid #333;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    color: #d49336;
    font-size: min(6vw, 28px);
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-labels {
    color: #a0a0a0;
    font-size: min(2vw, 10px);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/*hizmetlerimiz*/
.services-container {
    padding: 20px 20px min(8vw, 40px) 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.service-card {
    background-color: #111;
    width: 100%;
    max-width: 600px;
    border-radius: min(6vw, 30px);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.icon-box-hizmetlerimiz {
    width: min(20vw, 100px);
    height: min(20vw, 100px);
    background: linear-gradient(135deg, #a67c37 0%, #d49336 50%, #7a5520 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: min(4vw, 20px);
}

.icon-box-hizmetlerimiz img {
    width: min(12vw, 60px);
    height: auto;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.5));
}

.text-content {
    padding: 0 min(4vw, 20px);
    color: #fff;
    font-family: sans-serif;
    line-height: 1.5;
}

.text-content p {
    font-size: min(2.8vw, 14px);
    font-weight: 500;
    margin: 0;
}

.text-content span {
    margin-left: 0px;
}

/*hizmet bölgelerimiz*/
.tags-section {
    padding: min(4vw, 20px) 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(2.4vw, 12px);
    margin-bottom: min(-4vw, -20px);
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(2.4vw, 12px);
    max-width: 100%;
}

.tag-group a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: min(2.4vw, 12px);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.districts a {
    background-color: #1a150e;
    color: #d49336;
    border: 1px solid #2a2010;
}

.districts a:hover {
    background-color: #d49336;
    color: #000;
}

.services a {
    background-color: #222;
    color: #fff;
}

.services a:hover {
    background-color: #eee;
    color: #000;
}

/*tooltip tasarımı*/
.tag-group a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 150px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    background-color: #242424;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: min(2.2vw, 11px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.tag-group a:hover::after,
.tag-group a:hover::before,
.tag-group a:active::after,
.tag-group a:active::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/*aracımızdaki ekipmanlar*/
.equipment-section {
    padding: min(8vw, 40px) 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: min(-2vw, -10px);
}

.equipment-container {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    color: #fff;
    font-size: min(3vw, 15px);
    margin-bottom: min(1.6vw, 8px);
    margin-top: min(2vw, 10px);
    opacity: 0.9;
}

.equipment-image-wrapper {
    display: none;
    flex: 0 0 35%;
    height: 250px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.equipment-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    display: block;
}

.equipment-image-wrapper:hover img {
    transform: scale(1.15);
}

/*galeri*/
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto min(6vw, 30px) auto;
    margin-top: min(2vw, 10px);
}

.header-left {
    width: 90%;
}

.header-left p {
    color: #a0a0a0;
    font-size: min(3.2vw, 16px);
    line-height: 1.4;
    margin: 0px 10px 0px 0px;
    word-wrap: break-word;
}


.header-right {
    display: none;
    flex-direction: column;
    text-align: right;
}

.stat-number {
    color: #d49336;
    font-size: 36px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    cursor: pointer;
    flex: 0 0 calc((100% - 36px) / 4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.zoom-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: min(6vw, 30px);
    height: min(6vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px min(2vw, 10px) 0px;
    font-size: min(4vw, 20px);
    transition: 0.3s;
}

.gallery-item:hover .zoom-icon {
    background: #d49336;
}

/*hakkimizda*/
.about-section {
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0px 0px -2px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-badge {
    background-color: #faaf40;
    color: #000000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: min(2.4vw, 12px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
}

.about-title {
    color: #ffffff;
    font-size: min(4.8vw, 24px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.about-content p {
    color: #e0e0e0;
    font-size: min(3vw, 15px);
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    font-weight: 400;
}

/*SSS*/
.faq-section {
    padding: 20px 0;
    width: 100%;
}

.faq-container {
    max-width: none;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #111111;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 10px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.faq-question span {
    font-size: min(3.4vw, 17px);
    font-weight: 700;
    color: #ffffff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    filter: invert(70%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #1d1d1d;
}

.faq-answer p {
    padding: 10px 25px 10px;
    color: #a0a0a0;
    font-size: min(3vw, 15px);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active {
    border-color: #d49336;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    filter: invert(65%) sepia(21%) saturate(1637%) hue-rotate(352deg) brightness(91%) contrast(80%);
}

/*resim büyütme*/
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.modal-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100000;
}

.close-modal-pill {
    position: absolute;
    z-index: 100000;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 0;
    padding-right: 15px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
    height: 30px;
    overflow: hidden;
}

.close-modal-pill:hover {
    transform: scale(1.05);
}

.icon-side {
    background: linear-gradient(135deg, #d49336 0%, #faaf40 100%);
    width: 42px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 10px;
}

.text-side {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.modal-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

body.modal-open {
    overflow: hidden;
}

/* yan menü */
.side-menu {
    position: fixed;
    top: 0;
    left: -360px;
    width: min(70vw, 350px);
    height: 100vh;
    background-color: #0f0f0f;
    color: white;
    padding: min(6vw, 30px) min(5vw, 25px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    z-index: 99999999;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.side-menu::-webkit-scrollbar {
    width: 5px;
}

.side-menu::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.side-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999998;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-header {
    display: flex;
    align-items: center;
    margin-bottom: min(6vw, 30px);
}

.logo-box {
    background-color: #f9a825;
    color: #000;
    padding: min(0.8vw, 4px) min(1.6vw, 8px);
    border-radius: 6px;
    font-weight: 600;
    font-size: min(2.2vw, 11px);
    margin-right: 10px;
}

.menu-title {
    font-size: min(4vw, 20px);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-right: auto;
}

.close-btn {
    background-color: #222;
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

.navs-buton {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navs-buton li {
    margin-bottom: min(4vw, 20px);
}

.navs-buton a {
    text-decoration: none;
    font-size: min(6vw, 30px);
    font-style: italic;
    font-weight: 600;
    display: block;
    line-height: 1.1;
}

.text-white {
    color: #ffffff;
}

.text-yellow {
    color: #f9a825;
}

.section-label {
    color: #666;
    font-size: min(2.6vw, 13px);
    font-weight: 700;
    margin: min(2vw, 10px) 0 min(3vw, 15px) 0;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: min(3vw, 15px);
    text-decoration: none;
    color: white;
}

.contact-item-topbar {
    display: none;
    align-items: center;
    margin-right: 20%;
    text-decoration: none;
    color: white;
}

@media (min-width: 1100px) {
    .contact-item-topbar {
        display: flex;
    }
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.contact-text .main-text {
    font-size: min(3.6vw, 18px);
    font-weight: 600;
    display: block;
    margin-bottom: min(0.8vw, 4px);
}

.contact-text .sub-text {
    font-size: min(2.2vw, 11px);
    color: #888;
    font-weight: 600;
}

.divider {
    height: 1px;
    background-color: #222;
    margin: min(2vw, 10px) 0 min(3vw, 15px) 0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: min(2vw, 10px);
    margin-bottom: min(3vw, 15px);
}

.tag {
    display: inline-block;
    text-decoration: none;
    background-color: #1a1a1a;
    color: #bbb;
    padding: min(1.2vw, 6px) min(2.4vw, 12px);
    border-radius: 6px;
    font-size: min(2.4vw, 12px);
    font-weight: 600;
}

.tag:hover {
    background-color: #333;
    color: #f9a825;
}

.more-link {
    color: #f9a825;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
    font-size: min(2.8vw, 14px);
}

/*konum izni
.location-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.location-box {
    background: #111;
    color: #fff;
    padding: 25px;
    border-radius: 30px;
    max-width: 80%;
    text-align: center;
}

.location-box p {
    margin-top: -10px;
    font-size: 14px;
    font-weight: 700;
}

.location-box h3 {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 800;
}*/

@media (min-width: 600px) {
    .topbar {
        width: 65%;
    }

    .altkatman {
        max-width: 80%;
    }

    .main-content-card {
        max-width: 90%;
    }

    .metin-kutusu {
        width: 50%;
    }

    .text-white {
        font-size: 60px;
    }

    .text-orange {
        font-size: 75px;
    }

    .badge {
        font-size: 14px;
    }

    .badgenormal {
        font-size: 14px;
    }

    .wrappernormal {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 87%;
        ;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
        height: 100%;
    }

    .tag-group {
        max-width: 70%;
    }

    .equipment-container {
        flex-direction: row;
        align-items: center;
        width: 87%;
    }

    .equipment-image-wrapper {
        display: inline;
    }

    .gallery-header {
        width: 100%;
    }

    .header-left {
        width: 48%;
    }

    .header-right {
        display: flex;
    }

    .gallery-item {
        flex: 0 0 calc((100% - 72px) / 7);
    }

    .about-section {
        margin: 40px -10px 10px -10px;
    }

    .equipment-section {
        margin-bottom: min(-1vw, -5px);
    }

    .tags-section {
        margin-bottom: min(-1vw, -5px);
    }
}