/* =================================
   GENEL RESET VE TEMEL STİLLER
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Source Sans Pro', sans-serif;
    height: 100%;
    overflow-x: hidden;
}

/* =================================
   VİDEO ARKA PLAN
   ================================= */
.video-bg, .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg {
    object-fit: cover;
    object-position: center top;
    z-index: -1;
}

.video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

/* =================================
   RESİM ARKA PLAN
   ================================= */
.image-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.image-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* =================================
   İÇERİK ALANI
   ================================= */
.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
    color: #fff;
}

.content-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.overlay {
    position: relative;
    max-width: 1000px;
    width: 100%;
    color: #fff;
}

.overlay h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.overlay p {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* =================================
   BUTONLAR
   ================================= */
.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.buttons a {
    padding: 12px 8px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    border-radius: 8px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    text-decoration: none;
    display: flex;
}

.buttons a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

/* Turkuaz arka planlı butonlar */
.buttons a.btn-turkuaz {
    background-color: rgb(64, 224, 208) !important;
    border-color: rgb(64, 224, 208);
    font-size: 12px;
}

.buttons a.btn-turkuaz:hover {
    background-color: rgb(48, 200, 190) !important;
    color: #fff;
}

/* =================================
   ANA MENÜ (SAYFANIN ALTINDA)
   ================================= */
.main-menu {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 15px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Logo Menü İçinde */
.menu-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 12px;
    transition: 0.3s;
    white-space: nowrap;
}

.main-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =================================
   SOSYAL MEDYA İKONLARI
   ================================= */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-social a {
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    transition: transform 0.3s;
    text-decoration: none;
    display: flex;
}

.floating-social a:hover {
    transform: scale(1.1);
}

.floating-social .instagram {
    background: #e1306c;
}

.floating-social .youtube {
    background: red;
}

.floating-social .pinterest {
    background: #bd081c;
}

.floating-social .whatsapp {
    background: #25d366;
}
.floating-social .google {
  background: #4285f4; /* Google'ın mavi rengi */
}
/* =================================
   MODAL
   ================================= */
.modern-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content, .modal-inner {
    background: #fff;
    padding: 30px 40px;
    max-width: 700px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.4s;
    max-height: 90vh;
    overflow-y: auto;
    font-family: 'Source Sans Pro', sans-serif;
}

    .advantages ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    }

.modal-content h2, .modal-inner h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    color: #002650;
    font-weight: 600;
}

.modal-content p, .modal-inner p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

.contact-info, .contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.contact-info li, .contact-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.modal-actions, .modal-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    background-color: #002650;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn.green, .btn.whatsapp {
    background-color: #25d366;
}

.btn.blue {
    background: #036;
}

.btn.dark {
    background: #1a1a1a;
}

.close-modal, .modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-weight: 700;
}

/* =================================
   SLIDER VE HARİTA
   ================================= */
.popup-slider {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slider img.active {
    opacity: 1;
    z-index: 1;
}

.map-wrapper {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* =================================
   ANIMASYONLAR
   ================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave {
    0%, 100% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn.water-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #fff;
    padding: 14px 24px;
    background-color: transparent;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    color: #fff;
}

.btn.water-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, #00b4db, #0083b0);
    background-size: 200% 200%;
    z-index: -1;
    transition: left 0.5s ease-in-out;
    animation: wave 2s linear infinite;
    opacity: 0.2;
}

.btn.water-hover:hover::before {
    left: 0;
}

.btn.water-hover:hover {
    color: #fff;
}

.popup {
    font-family: 'Source Sans Pro', sans-serif;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
}

/* =================================
   TABLET RESPONSIVE (769px - 1024px)
   ================================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .overlay h2 {
        font-size: 24px;
    }
    
    .overlay p {
        font-size: 15px;
    }
    
    .buttons a {
        font-size: 12px;
        padding: 10px 8px;
    }
    
    .main-menu {
        gap: 10px;
        padding: 12px 20px;
    }
    
    .main-menu a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .menu-logo {
        height: 35px;
        margin-right: 8px;
    }
}

/* =================================
   MOBİL RESPONSIVE (Max 768px)
   ================================= */
@media screen and (max-width: 768px) {
    /* Video/Resim arka plan - Merkeze hizalı */
    .video-bg, .video-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
    
    .video-bg {
        z-index: -2;
        object-position: 40% center;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    body, html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* İçerik alanı - Daha aşağıda başlar */
    .content, .content-wrapper {
        position: relative;
        width: 100%;
        min-height: 100vh;
        padding: 60vh 8px 140px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 10;
        text-align: center;
    }
    
    .overlay {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .overlay h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 15px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95);
        font-weight: 700;
    }
    
    .overlay p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.95);
    }
    
    .buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }
    
    .buttons a {
        padding: 8px 5px;
        min-height: 38px;
        font-size: 9px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 6px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .buttons a:hover,
    .buttons a:active {
        background: rgba(255, 255, 255, 0.95);
        color: #222;
        text-shadow: none;
        transform: translateY(-2px);
    }
    
    /* MENÜ - MOBİLDE GÖSTER */
    .main-menu {
        display: flex;
        position: fixed;
        bottom: 52px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        gap: 6px;
        background: rgba(0, 0, 0, 0.95);
        padding: 10px 15px;
        border-radius: 30px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
        width: auto;
        max-width: 96%;
    }
    
    .main-menu a {
        display: inline-block;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 18px;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .main-menu a:hover,
    .main-menu a:active {
        background: rgba(255, 255, 255, 0.35);
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    }
    
    .menu-logo {
        display: none;
    }
    
    /* Sosyal medya - En altta yatay */
    .floating-social {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 0;
        z-index: 10000;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .floating-social a {
        flex: 1;
        height: 50px;
        width: auto;
        border-radius: 0;
        font-size: 22px;
    }
    
    /* Modal ayarları */
    .modal-content, .modal-inner {
        padding: 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-content h2, .modal-inner h2 {
        font-size: 18px;
    }
    
    .modal-content p, .modal-inner p {
        font-size: 14px;
    }
    
    .hero-slider, .hero-slider img {
        height: 200px;
    }
    
    .modal-actions, .modal-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* =================================
   KÜÇÜK MOBİL (Max 480px)
   ================================= */
@media screen and (max-width: 480px) {
    .video-bg {
        object-position: 35% center;
    }
    
    .content, .content-wrapper {
        padding: 55vh 5px 130px;
    }
    
    .overlay h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .overlay p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .buttons a {
        font-size: 8px;
        padding: 6px 3px;
        min-height: 32px;
    }
    
    .buttons {
        gap: 6px;
        margin-top: 15px;
    }
    
    .main-menu {
        gap: 5px;
        padding: 8px 12px;
        bottom: 50px;
    }
    
    .main-menu a {
        font-size: 9px;
        padding: 6px 10px;
    }
    
    .modal-content, .modal-inner {
        padding: 15px;
    }
    
    .hero-slider, .hero-slider img {
        height: 150px;
    }
}

/* =================================
   ÇOK KÜÇÜK MOBİL (Max 320px)
   ================================= */
@media screen and (max-width: 320px) {
    .video-bg {
        object-position: 30% center;
    }
    
    .content, .content-wrapper {
        padding: 50vh 3px 120px;
    }
    
    .overlay h2 {
        font-size: 14px;
    }
    
    .overlay p {
        font-size: 10px;
    }
    
    .buttons a {
        font-size: 7px;
        min-height: 28px;
        padding: 5px 2px;
    }
    
    .main-menu {
        gap: 4px;
        padding: 6px 10px;
    }
    
    .main-menu a {
        font-size: 8px;
        padding: 5px 8px;
    }
}