@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Light.woff2') format('woff2'), url('/fonts/Gilroy-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.woff2') format('woff2'), url('/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.woff2') format('woff2'), url('/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2'), url('/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2'), url('/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2'), url('/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2'), url('/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


/* Reset ve font ayar? */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif; /* Gilroy ekleyince de?i?tirece?iz */
}

body,
html {
    overflow-x: hidden;
}


.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    padding-top: 3.5rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    border-bottom: 1px solid #ff6436;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-toggle::after {
    content: none;
}

.dropdown-item {
    color: floralwhite !important;
    font-size:0.9rem !important;
}

.dropdown-item {
    color: floralwhite !important;
    font-size: 0.9rem !important;
    transition: all 0.4s ease;
    border-left: 2px solid #0B0B0B;
}

    .dropdown-item:hover {
        background:none;
        border-left: 2px solid #ff6436;
    }




@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
}

.text-muted{
    color:#ccc !important;
}

body {
    background-color: #0B0B0B; /* Daha koyu premium siyah */
    color: #FFFFFF;
}

.text-primary-gradient {
    background: linear-gradient(45deg, #FF5C33, #FF8040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    background: linear-gradient(90deg, #FF5C33, #FF8040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: transparent !important;
    border: 1px solid #FF5C33;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

    .btn-gradient:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(255, 92, 51, 0.5);
    }

.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: inherit;
}



 /* LOADER */  /* LOADER */  /* LOADER */ /* LOADER */  /* LOADER */  /* LOADER */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeIn 1s ease forwards;
}

.loader-bar {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5c33, #ff2d55);
    animation: loadingBar 1.5s infinite ease-in-out;
    border-radius: 5px;
    margin: 0 auto;
}

@keyframes loadingBar {
    0% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Container */
.navbar .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #0B0B0B;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    border-bottom: 2px solid #383838;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .nav-links a {
        color: #FFFFFF;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #FF5C33; /* Logodaki turuncu tonu (#FF5C33 yakla??k ton) */
        }

/* Whatsapp Button */
.whatsapp a {
    background: linear-gradient(135deg, #FF5C33, #FF8040);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .whatsapp a:hover {
        opacity: 0.9;
    }

.whatsapp-desktop {
    margin-left: 20px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222222;
}

    .footer p {
        color: #999999;
        font-size: 0.9rem;
    }

/* Responsive Navbar */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column !important;
        gap: 20px;
        margin-top: 15px;
    }


}

/* WhatsApp Buton */
.whatsapp a {
    background: linear-gradient(135deg, #FF5C33, #FF8040);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .whatsapp a:hover {
        opacity: 0.9;
    }


.whatsapp-desktop a {
    background: linear-gradient(135deg, #FF5C33, #FF8040);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .whatsapp-desktop a:hover {
        opacity: 0.9;
    }

/*Mobil css alan?*/

.hamburger {
    display: none;
    flex-direction: column column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

    .hamburger span {
        background: #FF5C33;
        height: 3px;
        width: 100%;
        border-radius: 5px;
    }

/* Mobil Breakpoint */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
    }

    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 48px;
    }

    .whatsapp {
        margin-left: 10px;
    }

    .whatsapp-desktop {
        display: none;
    }
}


/* Mobile Nav Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #111;
    box-shadow: -2px 0 6px rgba(0,0,0,0.5);
    transition: right 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-links {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    padding: 0 30px;
}

    .mobile-links a {
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }



.mobile-menu .mobile-links .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 1rem;
    font-size: 1rem;
}

.mobile-menu .mobile-links h6 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mobile-menu .mobile-links h6 i {
        transition: transform 0.3s ease;
    }

    .mobile-menu .mobile-links h6.active i {
        transform: rotate(180deg);
    }

    .mobile-menu .mobile-links h6.active + .submenu {
        max-height: 1000px;
    }

.mobile-menu .mobile-links .submenu a {
    display: block;
    padding: 0.5rem 0;
    color: #fff;
    border-bottom: 1px solid #333;
    text-decoration: none;
    font-size:1.1rem;
}





/* Mobile Whatsapp */
.mobile-whatsapp {
    padding: 20px 30px;
}
    .mobile-whatsapp a {
        display: block;
        background: linear-gradient(135deg, #FF5C33, #FF8040);
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
    }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.close-btn {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}


.bg-dark {
    background-color:#0B0B0B !important;
}



/*Top To Scroll*/

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF5C33, #ac3a00);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
    }



@media (min-width: 1025px) {
    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
    }

    .cursor-dot {
        width: 10px;
        height: 10px;
        background: #ff5c33;
        border-radius: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
    }

    .cursor-trail {
        width: 40px;
        height: 40px;
        top: -20px;
        left: -20px;
        position: absolute;
        pointer-events: none;
        border: 2px solid rgba(255, 92, 51, 0.4);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.15s ease-out;
    }

    .cursor-hover .cursor-dot {
        width: 15px;
        height: 15px;
    }

    .cursor-hover .cursor-trail {
        border-color: rgba(255, 92, 51, 0.8);
        transform: translate(-50%, -50%) scale(1.2);
        width: 60px;
        height: 60px;
    }
}


/* FOOTER */

.main-footer {
    background: linear-gradient(180deg, #0B0B0B 0%, #000000 100%);
    padding: 80px 0 40px 0;
    position: relative;
}

.footer-logo img {
    filter: brightness(150%);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 20px;
    color: #ccc;
}

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

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

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #FF5C33;
        }

.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #FF5C33;
    }

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #777;
}

.small-text {
    font-size: 0.9rem;
}


@media (max-width: 1024px) {

    .main-footer {
        padding: 60px 30px;
    }
}
