/* Reset and Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,700;1,700&display=swap');


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

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

.active {color:#fff !important;font-weight: 900 !important;}
.active-beyaz {color:#fff !important;font-weight: 900 !important;}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 120px;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
 gap: 2rem;
}

.nav-link {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative !important;
    font-size: 1.2rem;
    padding-top:10px !important;

}

.nav-link:hover {
    color: #27355c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27355c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.nav-link-beyaz {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative !important;
    font-size: 1.2rem;
    margin-top:10px !important;
}

.nav-link-beyaz:hover {
    color: #fff;
}

.nav-link-beyaz::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link-beyaz:hover::after {
    width: 100%;
}





.nav-rez {
    background-color: transparent !important;
    padding: 12px 20px !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    border: 2px solid #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.nav-rez:hover {
    background-color: transparent !important;
    color: #27355c !important;
    transform: translateY(-2px) !important;
    border: 2px solid #27355c !important;
}

.nav-rez::after {
    display: none !important;
}




.nav-rez-beyaz {
    background-color: transparent !important;
    padding: 12px 20px !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    border: 2px solid #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.nav-rez-beyaz:hover {
    background-color: #fff !important;
    color: #27355c !important;
    transform: translateY(-2px) !important;
    border: 2px solid #fff !important;
}

.nav-rez-beyaz::after {
    display: none !important;
}



















/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 1800px;
    background-color: #eeeae3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: -700px;
}

.hero-decription {
    color: #27355c;
      font-size: calc(1rem + 1vw);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: -2rem;
}

.hero-title {
    color: white;
      font-size: calc(5rem + 1vw);
    font-weight: 700;
    margin-bottom: 0;
}

/* Hero Balık Animation */
.hero-balik {
    position: relative;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.hero-balik img {
    margin-top: -30px;
    width: 100%;
    height: auto;
    animation: fishSwim 4s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}


.hero-balik-yazi {
    position: relative;
    z-index: 4;
    margin-top: -70px;
}
.hero-balik-yazi img {
    width: 70%;
}

@keyframes fishSwim {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Bolum2 Section */
.bolum2 {
    background-color: #27355c;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    margin-top: -900px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: relative;
    z-index: 1;
}

.bolum2-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.bolum2-left{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 2;
}

.bolum2-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.bolum2-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;

    transition: transform 0.3s ease;
}

.bolum2-left .bolum2-image {
    max-width: 150%;
    transform: translateX(20%);
}

.bolum2-image:hover {
    transform: scale(1.05);
}

.bolum2-left .bolum2-image:hover {
    transform: translateX(20%) scale(1.05);
}

/* Zeytin Dalı Decorations */
.zeytin-dali {
    position: absolute;
    z-index: 3;
    opacity: 0.7;
}

.zeytin-dali img {
    width: 600px;
    height: auto;

}

.zeytin-dali.top-left {
    top: 20px;
    left: -60px;
    transform: rotate(-15deg);
}

.zeytin-dali.top-right {
    top: 20px;
    right: 20px;
    transform: rotate(15deg) scaleX(-1);
}

.zeytin-dali.bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(165deg);
}

.zeytin-dali.bottom-right {
    bottom: 20px;
    right: -35px;
    transform: rotate(0deg) scaleX(-1);
    rotate: x 180deg;
}

/* Bolum3 Styles */
.bolum3 {
    background-image: url('../img/karides.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.bolum3-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bolum3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin-bottom:500px;
}

.bolum3-ust {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bolum3-baslik {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bolum3-text {
    font-size: 20px;
    color: #fff;
    text-align: center;
    max-width: 600px;
    font-weight: normal;   
    font-style:italic ;
}

/* Responsive Design for Bolum2 - Moved to main responsive section */

/* Video Section Styles */
.video-section {
    position: relative;
    margin-top: -500px;
    z-index: 10;
    padding: 80px 20px 60px;
    border-radius: 20px 20px 0 0;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: center;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-item video {
    width: 100%;

    object-fit: cover;
    display: block;
}

/* Responsive Design for Video Section - Moved to main responsive section */

/* Bolum4 Section */
.bolum4 {
    margin-top:-320px;
    padding: 320px 0 0 0;
    background-color: #27355c;
}

.bolum4-card {
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #fff;
    font-style: italic;
}

.bolum4-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bolum4-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bolum4-icon-b {
    width: 230px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bolum4-card:hover .bolum4-icon,
.bolum4-card:hover .bolum4-icon-b {
    transform: scale(1.1);
}

.bolum4-text {
    margin-top: 15px;
}

.bolum4-text p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}


.bolum4-alt  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    color:#fff;
    font-style: italic;
    padding-bottom:100px;
}

.bolum4-alt img {
    width: 400px;
    height: auto;
        padding: 30px 0 30px 0;
}

.bolum4-alt h2 {
   font-size: 50px;
}
.bolum4-alt p {
   width: 600px;
   font-size: 20px;
   font-weight: 400 !important;
}






/* Hakkimizda Hero Section - Duplicate of main hero with different class names */
.hero-hakkimizda {
    min-height: 1800px;
    background-color: #eeeae3;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    clear: both;
}

.video-background-hakkimizda {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
    overflow: hidden;
}

.video-background-hakkimizda video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-hakkimizda {
    position: relative;
    z-index: 99;
    text-align: center;
}

.hero-content-hakkimizda img {
    margin-top:200px;
    max-width: 500px;
}

.hero-balik-hakkimizda {
    position: relative;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.hero-balik-hakkimizda img {
    margin-top:85px;
    width: 500px;
    height: auto;
    animation: none; /* No animation for hakkimizda page */
    transform-origin: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 999999;
}

/* Hakkimizda Page Specific Styles */
.bolum-hakkimizda {
    margin-top:-1200px;
    position: relative;
    display: block;
    width: 100%;
    z-index: 10;
    clear: both;
}

.bolum-hakkimizda .bolum4-alt {
    background-color: white;
    border-radius: 50px;
    padding: 60px 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
    color: #27355c;
    position: relative;
    z-index: 10;
    margin: 0 auto 100px auto;
    display: block;
}

.bolum-hakkimizda .bolum4-alt h2 {
    color: #27355c;
    font-size: 50px;
    margin-bottom: 30px;
}

.bolum-hakkimizda .bolum4-alt p {
    color: #27355c;
    font-size: 20px;
    font-weight: 400 !important;
    margin-bottom: 20px;
    width: 100%;
    font-size:25px !important;
}

.bolum-hakkimizda .bolum4-alt h4 {
    color: #27355c;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.bolum-hakkimizda .bolum4-alt img {
    width: 300px;
    height: auto;
    padding: 20px 0;
}

.hakkimizda-bottom-image {
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    display: block;
}

/* Stop fish animation on hakkimizda page */
.hakkimizda-page .hero-balik img {
    animation: none;
}

/* Responsive styles for hakkimizda page */
@media (max-width: 768px) {
    .bolum-hakkimizda .bolum4-alt {
        padding: 40px 20px;
        margin: 1px 20px 20px 0;
    }
    
    .bolum-hakkimizda .bolum4-alt h2 {
        font-size: 36px;
    }
    
    .bolum-hakkimizda .bolum4-alt p {
        font-size: 16px;
    }
    
    .bolum-hakkimizda .bolum4-alt h4 {
        font-size: 20px;
    }
    
    .bolum-hakkimizda .bolum4-alt img {
        width: 200px;
    }
}

/* Bolum4 responsive - Moved to main responsive section */

/* Gallery Section */
.gallery {
    padding: 10px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.video-background-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background-gallery video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1100px;
    border-bottom-left-radius:  50%;
    border-bottom-right-radius:  50%;
    /* background: linear-gradient(to bottom, rgba(39, 53, 92, 1), transparent); */
    background-color: #27355c;
    z-index: 1;
    pointer-events: none;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery a {
    position: relative;
    z-index: 10;
}

.gallery-img {
    align-items: center;
    width:100%;

    object-fit: cover;
    border-radius: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.gallery-img-hak{
     align-items: center;
     border-radius: 40px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery responsive - Moved to main responsive section */

/* Footer Section */
.footer {

    margin-top: -100px;
    padding-top: 150px;

    position: relative;
    width: 100%;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.footer-contact {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.9;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 95%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #27355c, #3a4a73);
    color: white;
    padding: 20px;
    position: relative;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover,
.close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-body {
    padding: 0;
    text-align: center;
}

.modal-body h3 {
    color: #27355c;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-body .nav-rez {
    display: inline-block;
    background: linear-gradient(135deg, #27355c, #3a4a73);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #27355c4d;
}

.modal-body .nav-rez:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 53, 92, 0.4);
    color: white;
    text-decoration: none;
}

/* ========================================
   MOBİL RESPONSIVE TASARIM (768px ve altı)
   ======================================== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-logo img {
        height: 120px;
    }
    .nav-link{padding-top:0px}
    .nav-link:hover {color:#fff;font-weight: 900;}


    .nav-rez{margin: 0 auto; width: 90%;}
    .nav-rez:hover{color:#27355c !important;background-color: #fff !important;border-color:#fff !important;}
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background-color: #27355c;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 20px 0;
        transform: translateX(-50%);
    }

    .nav-menu.active {
        left: 50%;
    }

    .nav-item {
        
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        position: relative !important;
        overflow: hidden !important;
    }
    .hero-title {line-height: 1.2;}

    /* Video Background Mobile Fix */
    .video-background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 40% !important;
        z-index: 1 !important;
        overflow: hidden !important;
        display: block !important;
    }

    .video-background video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        z-index: 1 !important;
        display: block !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 10 !important;
        margin-top: -1000px;
    }

    .hero-decription {
        font-size: 1.2rem;
        font-weight: 400;
        padding-bottom:10px;
    }

    .hero-decription:last-child {
        font-size: 2rem;
    }

    /* Hero Balık Mobile Fix */
    .hero-balik {
        margin-top: 20px;
    }

    .hero-balik img {
        width: 80% !important;
        max-width: 300px;
        height: auto;
    }

    .hero-balik-yazi {
        margin-top: -40px;
    }

    .hero-balik-yazi img {
        width: 60% !important;
        max-width: 250px;
    }

    /* Bolum2 Section */
    .bolum2 {
        padding: 40px 15px;
        margin-top: -1150px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    
    .bolum2-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .bolum2-left,
    .bolum2-right {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bolum2-left .bolum2-image {
        max-width: 90% !important;
        transform: none !important;
    }
    
    .bolum2-left .bolum2-image:hover {
        transform: scale(1.05) !important;
    }
    
    .zeytin-dali {
        display: none !important;
    }
    
    /* Bolum3 Section */
    .bolum3 {
        padding: 60px 15px;
    }
    
    .bolum3-ust {
        max-width: 400px;
    }
    
    .bolum3-baslik {
        max-width: 350px;
    }
    
    .bolum3-text {
        font-size: 16px;
        margin-top: 30px;
        max-width: 90%;
        padding: 0 15px;
    }
    .bolum3-content{margin-bottom:350px !important}

    /* Video Section */
    .video-section {
        margin-top: -270px;
        padding: 0px 15px 70px;
    }
    
    .video-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 15px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 10px !important;
    }
    
    .video-item {
        flex: 0 0 280px !important;
        scroll-snap-align: start !important;
    }
    
    .video-item video {
        height: 500px;
        width: 100% !important;
    }
    
    /* Scrollbar styling for mobile */
    .video-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .video-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .video-container::-webkit-scrollbar-thumb {
        background: rgba(39, 53, 92, 0.6);
        border-radius: 3px;
    }

    /* Bolum4 Section */
    .bolum4 {
       
    }
    
    .bolum4-card {
        margin-bottom: 20px;
        padding: 25px 15px;
    }
    
    .bolum4-icon {
        width: 60px;
        height: 60px;
    }
    
    .bolum4-icon-b {
        width: 280px;
    }
    .bolum4-alt img{ width: 50%;}
    
    .bolum4-alt{padding-bottom:0;}


    .bolum4-alt p {
        width: 90%;
        font-size: 14px;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-img {

        width: 100%;
    }

    /* Footer Section */
    .footer {
        margin-top: -50px;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .footer-text {
        font-size: 16px;
    }
    
    .footer-contact {
        font-size: 14px;
    }

    /* Modal */
    .modal-content {
        margin: 5% auto;
        width: 98%;
        max-width: none;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 0;
    }
    
    .modal-body iframe {
        min-height: 600px;
    }
    /* .bolum-hakkimizda{width: 92%;} */
    .bolum-hakkimizda-mobil{margin-top:-1300px !important;}
    .hero-content-hakkimizda img{
        max-width: 300px;
}


}

/* Map Section Styles */
.map-section {
    background: #27355c;
    position: relative;
    padding-bottom:50px;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    color: #27355c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
}

.map-header p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    transition: transform 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.02);
}

/* Map section responsive */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .map-header h3 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #27355c;
    padding: 180px 0 0 0;
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
    color: white;
}

.contact-info h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Jost', sans-serif;
}

.contact-info .contact-details {
    margin-bottom: 40px;
}

.contact-info .contact-details h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.contact-info .contact-item strong {
    min-width: 120px;
    color: #fff;
    font-weight: 600;
}

.contact-info .contact-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

.contact-form {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: #27355c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Jost', sans-serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #27355c;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27355c;
    background: white;
    box-shadow: 0 0 0 3px rgba(39, 53, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #27355c, #3a4a73);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Jost', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 53, 92, 0.3);
}

.olive-branch-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
    z-index: 1;
}

.olive-branch-decoration img {
    width: 200px;
    height: auto;
    transform: rotate(15deg);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
        gap: 40px;
        padding-top: 110px;
    }
    
    .contact-form-section {
        padding: 60px 0 0 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-form {
        width: 100%;
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .olive-branch-decoration {
        display: none;
    }
}

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    animation: slideInDown 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: 2px solid #1e7e34;
}

.form-message.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border: 2px solid #c82333;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.submit-btn:disabled {
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text {
    font-family: 'Jost', sans-serif;
    white-space: nowrap;
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-button {
    animation: whatsappPulse 2s infinite;
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 35px;
        right: 15px;
    }
    
    .whatsapp-button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 28px;
    }
}

