@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Video Modal Özel Stilleri */
#modalvideo {
    display: none !important;
    visibility: hidden !important;
    z-index: 10000 !important;
    align-items: center !important;
    justify-content: center !important;
}

#modalvideo[style*="display: flex"] {
    display: flex !important;
    visibility: visible !important;
}

#modalvideo .modal-content.modal-video-content {
    max-width: 800px !important;
    width: 90% !important;
    max-height: 80vh !important;
    height: auto !important;
    padding: 0 !important;
    background: #000 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

#modalvideo .modal-content.modal-video-content > div {
    width: 100% !important;
    height: auto !important;
    padding-bottom: 56.25% !important;
}

#modalvideo #video-iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: #000 !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#modalvideo .close-video-modal {
    z-index: 10001 !important;
    cursor: pointer !important;
}

#modalvideo .close-video-modal:hover {
    background-color: rgba(139, 71, 137, 1) !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

/* Photo Modal Özel Stilleri */
#modalphoto {
    display: none !important;
    visibility: hidden !important;
    z-index: 10000 !important;
    align-items: center !important;
    justify-content: center !important;
}

#modalphoto[style*="display: flex"] {
    display: flex !important;
    visibility: visible !important;
}

#modalphoto .modal-content.modal-photo-content {
    max-width: 90% !important;
    width: auto !important;
    max-height: 90vh !important;
    height: auto !important;
    padding: 0 !important;
    background: #000 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

#modalphoto .close-photo-modal {
    z-index: 10001 !important;
    cursor: pointer !important;
}

#modalphoto .close-photo-modal:hover {
    background-color: rgba(139, 71, 137, 1) !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

a {
    z-index: 60;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    z-index: 10;
}

.shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(217, 217, 217);
    background: linear-gradient(
        180deg,
        rgba(217, 217, 217, 0) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.input-container {
    display: flex;
    flex-direction: column;
}

.input-container label {
    color: white;
}

.input-container input {
    height: 40px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    font-size: 18px;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
}

.input-container select {
    height: 40px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    font-size: 18px;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
}

.form-submit {
    color: white;
    font-size: 18px;
    height: 40px;
    width: 100%;
    font-weight: bold;
    background-color: #158f01;
    outline: none;
    border: none;
    border-radius: 6px;
}

.input-container textarea {
    min-height: 80px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    width: 100% !important;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    .container {
        width: 90%;
    }
}

/* NAVBAR */

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: translateY(0);
}

.nav-container.hidden {
    transform: translateY(-100%);
}

.nav-container.scrolled {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-container.scrolled .top-nav {
    display: none !important;
}

.top-nav {
    display: flex;
    justify-content: center;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-nav-left__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-size: 14px;
}

.top-nav-left__item,
.top-nav-left__item *,
.top-nav-left__item a,
a.top-nav-left__item {
    color: white !important;
}

.top-nav-left__item p {
    font-size: 14px !important;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav-right a {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.top-nav-right a:hover {
    transform: scale(1.15);
    color: #f8931f;
}

.nav {
    height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav.scrolled {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item .line {
    width: 0;
    position: absolute;
    bottom: -10px;
    background-color: white;
    height: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.nav-item:hover .line {
    width: 80%;
}

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

.nav-items a {
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    color: white;
    transform: scale(1.5);
}

.mobile-nav {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: fixed;
    top: 0;
    right: -2000px;
    transition: 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    right: 0px;
}

.mobile-nav-x {
    margin-top: 20px;
    display: flex;
    width: 100%;
    padding-right: 40px;
    justify-content: flex-end;
}

.mobile-nav-x svg {
    transform: scale(1.5);
}

.mobile-nav a {
    color: black;
    text-decoration: none;
    font-size: 24px;
}

@media screen and (max-width: 850px) {
    .nav-items {
        display: none;
    }

    .hamburger {
        display: block;
    }
    
    /* Mobil menü açıkken nav-container'ın z-index'ini düşür */
    .nav-container.menu-open {
        z-index: 99 !important;
    }
    
    /* Mobil menü açıkken nav-container içindeki logo için */
    .nav-container.menu-open img {
        z-index: 99 !important;
        position: relative;
    }
}

/* HEADER */

.fake-header {
    width: 100%;
    height: 100vh;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    margin-top: 0;
}

/* Header::before kaldırıldı - gradient artık slide::after içinde */

/* Gradient overlay'i slide içine taşıyoruz - Üstte Mürdüm, Altta Turuncu */
.header .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #51223a 0%, rgba(81, 34, 58, 0.9) 15%, rgba(192, 94, 46, 0.6) 40%, rgba(188, 84, 27, 0.3) 70%, #bc541b 100%);
    z-index: 1;
    pointer-events: none;
}

.ataturk-corner {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    pointer-events: none;
}

.ataturk-corner > div {
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .fake-header {
        height: 100vh !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .ataturk-corner {
        position: absolute !important;
        bottom: 20px !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px;
    }
    
    .ataturk-corner > div {
        padding: 15px !important;
        margin: 0 auto !important;
        max-width: 90% !important;
        width: 100%;
    }
    
    .ataturk-corner img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .ataturk-corner p {
        font-size: 12px !important;
    }
    
    .mouse {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .fake-header + .mouse {
        margin-top: 0 !important;
    }
    
    .header {
        margin-bottom: 0 !important;
    }
}

.header .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.header .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Gradient overlay her slide'ın içinde - görselin üstünde ama içeriğin altında - Üstte Mürdüm, Altta Turuncu */
.header .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #51223a 0%, rgba(81, 34, 58, 0.9) 15%, rgba(192, 94, 46, 0.6) 40%, rgba(188, 84, 27, 0.3) 70%, #bc541b 100%);
    z-index: 1;
    pointer-events: none;
}

.header .swiper-slide * {
    position: relative;
    z-index: 2;
}

.header .swiper-pagination-bullets {
    margin-bottom: 30px;
    z-index: 100;
}

.header .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-color: #d9d9d9;
    opacity: 1;
}

.header .swiper-pagination-bullet-active {
    background-color: #fd7a31;
}

.header .swiper-slide {
    display: flex;
    justify-content: center;
}

.header .swiper-slide .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    margin-bottom: 200px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.header.malatya .swiper-slide .container {
    margin-bottom: 100px;
}

.header .swiper-slide * {
    color: white;
}

.header .swiper-slide h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.header .swiper-slide p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.header .swiper-slide a {
    font-size: 20px;
    font-weight: bold;
    padding: 16px;
    padding-right: 60px;
    padding-left: 60px;
    text-decoration: none;
    border-radius: 45px;
    background-color: #fd7a31;
    margin-top: 30px;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(253, 122, 49, 0.3);
}

.header .swiper-slide a:hover {
    background-color: #fd7024;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.header.malatya a {
    width: 500px;
}

.header.malatya a.secondary {
    background-color: white;
    color: #8B4789;
}

.header.malatya .container {
    gap: 0px;
}

@media screen and (max-width: 600px) {
    .header.malatya a {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header .swiper-slide h2 {
        font-size: 40px;
    }

    .header .swiper-slide p {
        font-size: 16px;
    }

    .header .swiper-slide a {
        font-size: 16px;
    }

    .top-nav-left__item p {
        display: none;
    }
    
    /* Mobilde tüm item tıklanabilir olsun */
    .top-nav-left__item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    }
}

@media screen and (max-width: 400px) {
    .header .swiper-slide h2 {
        font-size: 36px;
    }

    .header .swiper-slide p {
        font-size: 14px;
    }

    .header .swiper-slide a {
        font-size: 14px;
    }
}

/* MOUSE */

.mouse {
    width: 100%;
    height: 40vh;
    background-color: #bd5923;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mouse .shadow {
    display: none;
}

.mouse * {
    color: white;
}

.mouse-bold {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}

.mouse-thin {
    font-size: 22px;
    font-weight: 300;
}

/* ABOUT US */

.about-us {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #51223a;
    position: relative;
}

.about-us h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.about-us .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.swiper-container {
    width: 100%;
}

.about-us .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.about-us .swiper-slide * {
    text-align: center;
    color: white;
}

.about-us .swiper-slide h4 {
    font-size: 22px;
    font-weight: bold;
}

.about-us .swiper-slide p {
    font-weight: 300;
}

@media screen and (max-width: 600px) {
    .about-us h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .about-us h2 {
        font-size: 36px;
    }
}

/* EXPLORE */

.explore {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #bc541b 0%, #c05e2e 100%);
    position: relative;
}

.explore h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.explore .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
}

.swiper-container {
    width: 100%;
}

.explore .swiper-slide {
    border-radius: 12px;
    transform: scale(0.8);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Yatay format */
    border: 2px solid #f59e0b;
    transition: border-color 0.2s ease-in-out;
}

.explore .swiper-slide-active {
    transform: scale(1);
    border-color: #f59e0b;
}

.explore .swiper-slide img,
.explore .swiper-slide .bg,
.explore .swiper-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Yatay format görselleri düzgün gösterir */
}

/* Video thumbnail stilleri */
.explore .video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.explore .video-thumbnail .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 2;
}

.explore .video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.explore .video-thumbnail .play-overlay img {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.explore .video-thumbnail:hover .play-overlay img {
    transform: scale(1.1);
}

/* Keşfet bölümü pagination - Hero ile aynı stil */
.explore .swiper-pagination-explore {
    margin-bottom: 30px;
    z-index: 100;
}

.explore .swiper-pagination-explore .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-color: #d9d9d9;
    opacity: 1;
}

.explore .swiper-pagination-explore .swiper-pagination-bullet-active {
    background-color: #f8931f;
}

.swiper-about .swiper-slide img {
    width: 64px;
    height: 64px;
}

@media screen and (max-width: 600px) {
    .explore h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .explore h2 {
        font-size: 36px;
    }
}

/* CLASSES */

.classes {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #bc541b 0%, #c05e2e 100%);
    position: relative;
    overflow: visible;
}

.classes .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0 20px;
}

.classes h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.class-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    overflow: visible;
    padding: 10px;
}

.class-item {
    padding: 20px;
    border-radius: 25px;
    background: rgba(81, 34, 58, 0.8);
    border: none;
    transition: all 0.3s ease;
}

.class-item:hover {
    border: 3px solid #f8931f;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .classes .class-items {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 30px auto 0 !important;
        padding: 0 15px 40px 15px !important;
    }
    
    .classes .class-item {
        min-height: 200px !important;
    }
    
    .classes h2 {
        font-size: 36px;
        margin-bottom: 20px;
        padding-top: 60px;
    }
    
    .classes .container {
        gap: 50px;
        padding: 40px 20px;
        padding-top: 0;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .classes h2 {
        font-size: 32px;
    }
    
    .classes .class-items {
        gap: 15px !important;
    }
}

@media screen and (max-width: 400px) {
    .classes h2 {
        font-size: 28px;
    }
    
    .classes .class-items {
        gap: 12px !important;
        padding: 0 10px 40px 10px !important;
    }
    
    .classes .class-item {
        min-height: 180px !important;
    }
    
    .classes .container {
        padding-bottom: 40px;
    }
}

/* CONTACT */

.contact {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    background-color: #51223a;
    position: relative;
}

.contact .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.contact h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    font-weight: 300;
    font-size: 24px;
    color: white;
}

@media screen and (max-width: 600px) {
    .contact h2 {
        font-size: 40px;
    }
    .contact-item p {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .contact h2 {
        font-size: 36px;
    }
    .contact-item p {
        font-size: 16px;
    }
}

/* CONTACT US */

.contact-us {
    width: 100%;
    min-height: 100vh;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #bc541b 0%, #c05e2e 100%);
    position: relative;
}

.map {
    width: 600px;
    height: 450px;
}

@media screen and (max-width: 800px) {
    .map {
        max-width: 300px;
        height: 450px;
    }
}

.contact-us .container {
    display: flex;
    gap: 200px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.contact-us-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us-item p {
    font-weight: 300;
    font-size: 24px;
    color: white;
}

@media screen and (max-width: 1280px) {
    .contact-us h2 {
        font-size: 40px;
    }
    .contact-us-item p {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .contact-us h2 {
        font-size: 36px;
    }
    .contact-us-item p {
        font-size: 16px;
    }
}

/* FOOTER */

.footer {
    color: white;
    background: linear-gradient(135deg, #bc541b 0%, #c05e2e 100%);
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer *:not(.footer-social-icons):not(.footer-social-icons *) {
    color: white;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 10px 0 !important;
}

.footer-social-icons a {
    color: #f8931f !important;
    font-size: 24px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-social-icons a i,
.footer-social-icons i {
    color: #f8931f !important;
    font-size: 24px !important;
    display: inline-block !important;
}

.footer-social-icons a:hover {
    transform: scale(1.1) !important;
}

.footer-social-icons a:hover i {
    color: #f8931f !important;
    transform: scale(1.15) !important;
}

.footer img {
    width: 135px;
}

.footer p,
.footer a {
    font-weight: bold;
    text-decoration: none;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-left .top-nav-right {
    margin-top: 20px;
}

.footer-right {
    width: 100%;
}

.footer-right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 0 40px;
}

.footer-right-bottom {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 0 40px 10px 40px;
}

/* Footer custom tweaks */
.footer-slogan {
    font-size: 22px;
    font-weight: 600;
    margin-top: 4px;
}

.footer-links a {
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modern ok ikonu - SVG arrow */
#backToTop::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

#backToTop {
    font-size: 0;
}

.footer-copyright {
    background-color: #0d1331;
    text-align: center;
    font-size: 14px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
}

@media screen and (max-width: 600px) {
    .footer .container {
        justify-content: center;
    }

    .footer-right {
        margin-top: 70px;
    }
}

/* EXPLORE */

.packages {
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    background-color: #51223a;
    position: relative;
}

.packages h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.packages .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.package-mid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.package-item {
    min-width: 450px;
    height: 600px;
    background-color: white;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.package-item.silver {
    filter: drop-shadow(7px 7px 11px #7d7d7d);
}

.package-item.platinum {
    filter: drop-shadow(7px 7px 11px #00f0ff);
}

.package-item.gold {
    filter: drop-shadow(7px 7px 11px #ffd600);
}

.package-item.small {
    transform: scale(0.9);
}

.package-item h4 {
    text-align: center;
    font-size: 24px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.package-buy {
    border-radius: 30px;
    background-color: #158f01;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .packages h2 {
        font-size: 40px;
    }

    .package-item img {
        display: none;
    }

    .package-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 400px) {
    .packages h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 500px) {
    .package-item {
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 1720px) {
    .package-items {
        gap: 50px;
    }

    .package-item.small {
        transform: scale(1);
    }
}

/* Haberler Section Responsive */
@media screen and (max-width: 1200px) {
    .haberler-section .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .haberler-section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    #modalhaberler .haber-kart-modal {
        flex-direction: column !important;
    }
    
    #modalhaberler .haber-kart-modal > div:first-child {
        width: 100% !important;
        min-width: 100% !important;
        height: 200px !important;
    }
}

/* Haber kartları hover efekti */
.haber-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15) !important;
}

.haber-kart-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15) !important;
}

/* İletişim kartları responsive */
@media screen and (max-width: 768px) {
    /* Grid container'ı bul ve tek sütuna düşür */
    .contact-grid,
    .contact-us .container > div > div[style*="display: grid"],
    .contact-us .container > div > div[style*="grid-template-columns"],
    .contact-us .container > div > div[style*="repeat(2"],
    .contact-us .container div[style*="grid-template-columns: repeat(2"],
    .contact-us .container div[style*="grid-template-columns:repeat(2"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .contact-us {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .contact-us h2 {
        font-size: 36px !important;
        margin-bottom: 30px;
        padding-top: 20px;
    }
    
    .contact-us .container {
        padding: 0 20px;
    }
    
    .contact-us .container > div[style*="background"] {
        padding: 20px !important;
    }
    
    .contact-us h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-us iframe {
        width: 100% !important;
        height: 250px !important;
    }
    
    .contact-us svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .contact-us p {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 600px) {
    .contact-us h2 {
        font-size: 32px !important;
    }
    
    .contact-us .container > div[style*="grid-template-columns"] {
        gap: 25px !important;
    }
    
    .contact-us iframe {
        height: 220px !important;
    }
}

@media screen and (max-width: 400px) {
    .contact-us h2 {
        font-size: 28px !important;
        padding-top: 15px;
    }
    
    .contact-us .container {
        padding: 0 15px;
    }
    
    .contact-us .container > div[style*="background"] {
        padding: 15px !important;
    }
    
    .contact-us h3 {
        font-size: 18px !important;
    }
    
    .contact-us iframe {
        height: 200px !important;
    }
}

/* Turuncu ve Mürdüm Renk Güncellemeleri */

/* Haberler Section */
.haberler-section {
    background-color: #51223a;
}

.haberler-section h2 {
    color: #f8931f;
}

.haber-kart h3 {
    color: #0d1331;
}

.haber-kart span {
    color: #f8931f;
}

/* Tümünü Gör Butonu */
.tumunu-gor-btn {
    background-color: #fd7a31 !important;
}

.tumunu-gor-btn:hover {
    background-color: #fd7a31 !important;
    opacity: 0.9;
}

/* Birimler Kartları */
.class-item {
    border: none;
    transition: all 0.3s ease;
}

.class-item:hover {
    border: 3px solid #f8931f;
    transform: scale(1.05);
}

.classes {
    overflow: visible;
}

.classes .container {
    padding: 0 20px;
    overflow-y: visible;
}

.class-items {
    overflow: visible;
    padding: 10px;
}

/* Keşfet Görselleri Hover */
.explore .photo-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.explore .photo-thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.explore .video-thumbnail .play-overlay img {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

/* İletişim İkonları */
.contact-us svg path {
    stroke: #f8931f;
}

/* Sticky Menu */
.nav.scrolled .girisbuton {
    background-color: #fd7a31;
}

.nav.scrolled .girisbuton:hover {
  background-color: #fd7024;
  opacity: 1;
}

.nav.scrolled .girisbuton:hover a {
  color: #ffffff !important;
}

.girisbuton:hover a {
  color: #ffffff !important;
}

/* Menü Hover - Ana Site */
.nav-items a:hover {
    color: #fd7a31;
}

.nav-item:hover .line {
    background-color: #fd7a31;
}

/* Sticky Menu Hover */
.nav.scrolled .nav-items a:hover {
    color: #fd7a31;
}

.nav.scrolled .nav-item:hover .line {
    background-color: #fd7a31;
}

/* Fixed Page Menu Hover */
.fixed-page-nav .nav-items a:hover {
    color: #f8931f;
}

.fixed-page-nav .nav-item:hover .line {
    background-color: #f8931f;
}

/* Footer */
.footer-copyright {
    background-color: #0d1331;
}


/* Modal Haberler */
.modalhaberler h2 {
    color: #0d1331;
}

.modalhaberler .haber-kart-modal h3 {
    color: #0d1331;
}

.modalhaberler .haber-kart-modal span {
    color: #f8931f;
}

.modalhaberler .close {
    background-color: #51223a;
}

/* Mouse Icon */
.mouse svg path {
    stroke: #ffffff;
}

/* Birimler Kart Arka Plan */
.class-item {
    background: rgba(81, 34, 58, 0.8);
    border: none;
}

/* Pikajintegral */
.magazine-read-btn:hover {
    background-color: #f8931f !important;
}

/* Sayfa İçerik Stilleri */
.page-content {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
}

.page-content h2 {
    color: #0d1331;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    color: #0d1331;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content strong {
    font-weight: bold;
}

.page-content a {
    color: #0d1331;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #f8931f;
}

/* Ana Sayfaya Dön Butonu Görsel İyileştirmeler */
.anasayfaya-don-btn {
    box-shadow: 0 4px 15px rgba(81, 34, 58, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anasayfaya-don-btn::before {
    content: '←';
    margin-right: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.anasayfaya-don-btn:hover {
    background-color: #fd7a31 !important;
    box-shadow: 0 6px 20px rgba(253, 122, 49, 0.4);
    transform: translateY(-2px);
}

.anasayfaya-don-btn:hover::before {
    transform: translateX(-5px);
}

/* Tüm Haberler Butonu Görsel İyileştirmeler */
.tum-haberler-btn {
    box-shadow: 0 4px 15px rgba(253, 122, 49, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tum-haberler-btn::after {
    content: '→';
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.tum-haberler-btn:hover {
    background-color: #51223a !important;
    box-shadow: 0 6px 20px rgba(81, 34, 58, 0.4);
    transform: translateY(-2px);
}

.tum-haberler-btn:hover::after {
    transform: translateX(5px);
}
