@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
a,
p,
span,
h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", serif;
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #58c5c7;
}

html::-webkit-scrollbar {
    width: 6px;
    background-color: #58c5c7;
}

html::-webkit-scrollbar-thumb {
    background-color: #000;
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}



header {
    background-color: #1f361d;
    margin: 0;
    padding: 0;
    height: 200px;
}

header .topheader {
    width: 100%;
    float: left;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .topheader ul {
    float: right;
    padding: 0;
    margin: 5px 0;
    text-align: center;
}

header .topheader ul li {
    float: left;
    padding: 5px 15px;
    list-style-type: none;
    font-weight: 300;
    font-size: 14px;
    border-right: 1px solid rgba(217, 217, 217, 0.3);
}

header .topheader ul li:last-child {
    border-right: 0;
    padding-right: 0;

}

header .topheader ul li a {
    text-decoration: none;
    color: white;
}

header .header {

    margin-top: 40px;
}


header .header .menu {
    display: flex;
    justify-content: end;
    padding: 0;
    margin: 0;
    gap: 36px;
}

header .header .menu li {
    list-style-type: none;
    float: left;
    padding: 0 0 0 50px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}


header .header .menu li a {
    text-decoration: none;
    color: white;
}

header .header .menu li a i {
    background-color: #808d7e;
    padding: 0px 1px;
    border-radius: 20px;
    color: white;
}


header .header .menu li .basvurubtn {
    background-color: #cf9b30;
    border: 0;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 15px;
}


header .header .menu li .basvurubtn:hover {
    background-color: #e7e7e7;
    border: 0;
    color: #1f361d;
    padding: 10px 40px;
    border-radius: 15px;

}




header .header .menu li .altmenu {
    z-index: 2;
    display: none;
    position: absolute;
    padding: 8px;
    margin-top: 30px;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 10px;
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: 0.3s ease;

}

header .header .menu li .altmenu li {
    float: none;
    padding: 10px;
}

header .header .menu li .altmenu li a {
    color: #1f361d;
}

header .header .menu>li:hover .altmenu {
    display: block;
    transition: opacity 0.2s ease-in, top 0.2s ease-in;
}



header .header .menu li .altmegamenu {
    z-index: 2;
    display: none;
    position: absolute;
    padding: 20px 50px;
    margin-top: 30px;
    top: 100%;
    left: -150px;
    background-color: white;
    border-radius: 10px;
    width: 850px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: 0.3s ease;

    justify-content: flex-start;
}

header .header .menu>li:hover .altmegamenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 2 sütun yapar */
    gap: 10px;
    /* Hücreler arasındaki boşluk */
}

header .header .menu li .altmegamenu li {
    float: none;
    padding: 10px;
    text-align: center;
}

header .header .menu li .altmegamenu li a {
    color: #1f361d;
    font-weight: 300;
    font-size: 20px;
}

header .header .menu li .altmegamenu li a img {

    border-radius: 10px;
    height: 150px;
    width: 100%;
    object-fit: cover;
    margin-right: 15px;
    margin-bottom: 10px;


}

header .header .menu>li:hover .altmegamenu li:last-child {
    grid-column: span 4;
    /* Son öğe tam genişlikte bir sütun alır */
    padding: 0;
}

header .header .menu>li:hover .altmegamenu li:last-child a img {
    height: 100%;
    width: 100%;
}

header .header .menu li .altmegamenu li a:hover {
    cursor: pointer;
    color: #192c17;
}





header .header .menu>li::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    /* Alt menü ile ana menü arasındaki boşluk */
    background-color: transparent;
    /* Görünmez hover alanı */
}





/* Hamburger Menüsü */
header .header .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}



.slidersection {
    background-color: #1A361D;
    height: 100%;
    min-height: 500px;
    /* Minimum yüksekliği ayarla */
    display: flex;
    /* Flexbox düzeni uygula */
    align-items: center;
    /* İçerikleri dikeyde ortala */
}

.slidersection .sliderdetay {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* İçeriği dikeyde ortala */
    min-height: 500px;
    height: 100%;
    width: 70%;
    /* Genişliği koru */
    padding: 20px;
    /* İçerik için boşluk ekle */
}

.slidersection .sliderimg {
    float: left;
    width: 30%;
    /* Görselin genişliğini koru */
    display: flex;
    align-items: center;
    /* Görseli dikeyde ortala */
    justify-content: center;
    /* Görseli yatayda ortala */
}




.slidersection .sliderdetay h5 {
    color: white;
    font-size: 30px;
    font-weight: 300;
}

.slidersection .sliderdetay .sliderbtn {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    background-color: #d09c30;
    border: 0;
    color: #fff;
    padding: 10px 40px;
    border-radius: 15px;
    text-decoration: none;
    width: 200px;
    margin-top: 40px;
}

.slidersection .sliderdetay .sliderbtn:hover {
    background-color: #e7e7e7;
    color: #1f361d;
}



.slidersection .owl-dots {
    width: 50%;
    position: relative;
    top: -30px;
}

.slidersection .owl-dots .owl-dot {
    width: 80px;
    height: 5px;
    background-color: #8f9b8e;
    margin-right: 50px;
}

.slidersection .owl-dots .owl-dot.active {
    background-color: white;
    /* Aktif noktanın rengi */
}






.deneyimsection {
    padding: 30px 0;
    height: 50vh;
}

.deneyimsection .deneyimler {
    display: flex;
    justify-content: space-evenly;
    height: 180px;
    margin-top: 50px;

}

.deneyimsection .deneyimler .deneyimdetay {
    position: relative;
    width: 300px;
    height: 100%;
    /* Yüksekliği tamamen kapsar */
    display: flex;
    flex-direction: column;
    background-position: center;
    /* Görüntüyü tam ortalar */
    background-repeat: no-repeat;
    background-size: contain;
    /* Tam oturtur */


    background-image: url('../../img/deneyim-bg.png');
}


.deneyimsection .deneyimler .deneyimdetay:nth-child(2) {
    background: transparent;
    align-items: center;
    justify-content: center;

}

.deneyimsection .deneyimdetay span {

    padding-left: 40px;
    font-size: 33px;
    font-weight: 600;
}





.hakkimizdasection {


    padding: 100px 0;
    width: 100%;
    height: 100%;
    background-color: #f5efe4;



}

.hakkimizdasection .hakkimizdadetay h1 {
    color: #1f361d;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 300;
}

.hakkimizdasection .hakkimizdadetay a {
    background-color: #1f361d;
    color: white;
    padding: 10px;
    width: 180px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
}

.hakkimizdasection .hakkimizdadetay {
    padding: 0 25px;
    display: flex;
    /* Flexbox etkinleştir */
    flex-direction: column;
    /* Dikey düzenleme */
    justify-content: center;
    /* Dikeyde ortala */
    padding: 0 20px;
    /* height: 500px; */
    font-size: 18px;
    font-weight: 400;
}

.hakkimizdasection .franchisebasvuru {
    position: relative;

    padding: 30px 0;
    margin-top: 90px;
    width: 100%;
    height: 250px;
    /* Kutu boyutunu ayarlayın */
    background-image: url('../../img/franchisebg.png');
    /* Dalgalı arka plan resmini ekleyin */
    background-size: 100% 100%;

}

.hakkimizdasection .franchisebasvuru ul {
    margin: 0;
    padding: 0;

}

.hakkimizdasection .franchisebasvuru ul li {
    list-style-type: none;
    padding-left: 60px;
    margin: 10px 0;
    color: white;
}

.hakkimizdasection .franchisebasvuru ul li:nth-child(2) {
    color: white;
    padding: 5px 30px 5px 20px;
    background-color: #cf9b30;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    display: inline-block;
}

.hakkimizdasection .franchisebasvuru ul li a {
    color: white;
    text-decoration: none;
}

.hakkimizdasection .franchisebasvuru ul li a i {
    color: #1f361d;
    background-color: white;
    border-radius: 15px;
    padding: 0px 4px;

}

.hakkimizdasection .franchisebasvuru .basvurubtn {
    position: relative;
    top: 66px;
    background-color: white;
    color: #1f361d;
    padding: 10px;
    width: 180px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
}






.hakkimizdadetaysection p {
    color: #1A361D;
    max-width: 700px;

}



.kategoricesitsection {

    padding: 60px 0;
}

.kategoricesitsection h2 {
    color: #1f361d;
    font-size: 32px;
    font-weight: 500;
}

.kategoricesitsection .baslikhr {
    width: 270px;
    border-color: #1f361d;
    opacity: 0.5;
    /* justify-content: center; */
    margin: 10px auto;
}

.kategoricesitsection .kategori {
    position: relative;
    min-height: 424px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    margin: 31px 22px;
    box-shadow: 0 1.5rem 1.5rem rgba(15, 38, 102, 0.1);
}

.kategoricesitsection .kategoriimg img {
    cursor: pointer;
    border-radius: 20px;
    height: 175px;
    /* Kapsayıcının yüksekliğini doldurur */
    width: 100%;
    /* Kapsayıcının genişliğini doldurur */
    object-fit: cover;
    /* Resmi kapsayıcıya sığacak şekilde kırpar ve ölçekler */
    display: block;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.kategoricesitsection .kategori .kategoridetay {
    padding: 20px;
}

.kategoricesitsection .kategori .kategoridetay h4 {

    color: #1f361d;
    font-weight: 400;

}

.kategoricesitsection .kategori .kategoridetay hr {
    border: 0.5px solid black;
    width: 150px;
    opacity: 0.5;

}

.kategoricesitsection .kategori .kategoridetay p {
    margin: 22px 0 40px 0;
    color: #383838;
    font-weight: 400;
}

.kategoricesitsection .kategori .kategoridetay a {
    color: #1f361d;
    text-decoration: none;
}

.kategoricesitsection .kategori .kategoridetay i {
    color: white;
    background-color: #1f361d;
    border-radius: 15px;
    padding: 5px 9px;
}

.urunsection .urun {

    width: 100%;
    overflow: hidden;
    position: relative;
    height: 625px;
}

.urunsection .urun {

    width: 100%;
    overflow: hidden;
    position: relative;
    height: 625px;
    border-radius: 25px;
}

.urunsection .urun img {
    cursor: pointer;
    border-radius: 20px;
    height: 100%;
    /* Kapsayıcının yüksekliğini doldurur */
    width: 100%;
    /* Kapsayıcının genişliğini doldurur */
    object-fit: cover;
    /* Resmi kapsayıcıya sığacak şekilde kırpar ve ölçekler */
    display: block;
    /* Tarayıcı uyumluluğu için */
}

.urunsection .urun::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgb(0 0 0 / 73%), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

.urunsection .urun .urunbtn {
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    bottom: 80px;
    position: relative;
    /* text-align: center; */
    color: white;
    z-index: 2;
}

.urundetaysection {
    width: 100%;
    height: 550px;
    background-color: #f5efe4;
}

.urundetaysection .urundetaybilgi {
    display: flex;
    /* Flexbox etkinleştir */
    flex-direction: column;
    /* Dikey düzenleme */
    justify-content: center;
    /* Dikeyde ortala */
    padding: 0 20px;
    height: 100%;
    /* Yüksekliği ayarla */

}

.urundetaysection .urundetaybilgi h3 {
    color: #1f361d;
    font-weight: 600;
    font-size: 40px;
}

.urundetayaciklama {
    color: #1f361d;
    font-weight: 300;
    font-size: 18px;
    padding: 60px 60px;
}

.urundetaysection .urundetaybilgi p {
    color: #1f361d;
    font-weight: 300;
    font-size: 18px;
}

.urundetaysection .urundetayimg {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 625px;
    width: 100%;
    display: block;
    border-radius: 25px;
    top: -40px;
    /* Tarayıcı uyumluluğu için */
}

.urundetaysection .urundetayimg img {
    height: 100%;
    object-fit: cover;
}

.urundetayaciklama h1,
.urundetayaciklama h2,
.urundetayaciklama h3,
.urundetayaciklama h4,
.urundetayaciklama h5,
.urundetayaciklama h6 {
    color: #1f361d;
    /* Başlık rengi */
    font-weight: 300;
    /* Yazı kalınlığı */
    margin: 10px 0;
    /* Başlıklar arasında boşluk */
}

.subelersection {
    padding: 100px 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../../img/dalgali-bg.png); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    background-color: #f5efe4;

}

.subelersection .baslikhr {
    width: 270px;
    border-color: #1f361d;
    opacity: 0.5;
    /* justify-content: center; */
    margin: 10px auto;
}

.subelersection h2 {
    color: #1f361d;
    font-size: 32px;
    font-weight: 500;

}

.subelersection .subulerbtn {
    display: inline-block;
    background-color: #1A361D;
    color: white;
    padding: 10px 20px;

    text-decoration: none;
    border-radius: 15px;
}

.subelersection .subeler {
    margin: 50px 0;
}

.subelersection .subeler .sube {
    background: white;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 1.5rem 1.5rem rgba(15, 38, 102, 0.1);
    margin: 30px 0;
}

.subelersection .subeler .sube ul {
    padding: 0;
    margin: 0;

    display: flex;
    /* Flexbox düzeni */
    justify-content: space-between;
    /* Elemanlar arasında eşit boşluk */

}

.subelersection .subeler .sube ul li {
    text-align: center;
    list-style-type: none;
    float: left;
    flex-grow: 1;
}


.subelersection .subeler .sube ul li a {
    color: #1f361d;
    text-decoration: none;
}

.subelersection .subeler .sube ul li i {
    color: white;
    background-color: #1f361d;
    border-radius: 15px;
    padding: 2px 5px;

}



footer {
    background-color: #1f361d;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 15px;
    height: 100%;
    font-weight: 300;
    margin-top: 30px;
}

footer .sosyalmedya ul {
    padding: 0;
    margin: 0;
    display: flex;
    /* Flexbox düzeni */
    justify-content: space-between;
    /* Elemanlar arasında eşit boşluk */
}

footer .sosyalmedya li {
    float: left;
    list-style-type: none;
    color: white;
    flex-grow: 1;
    text-align: center;
    border-right: 1px solid rgba(217, 217, 217, 0.3);
}
footer .sosyalmedya li:last-child {
    border-right: 0;
}

footer .sosyalmedya li a {
    text-decoration: none;
    color: white;
}

footer .sosyalmedya li a i {
    font-size: 25px;
}

footer .footerortamenu {
    width: 100%;
    position: relative;
    margin-top: 50px;
    margin-bottom: 10px;
    color: white;
}

footer .footerortamenu p {
    padding-right: 50px;
    color: #d1cbcb;
}

footer .footerortamenu h4 {
    margin: 20px 0;
    color: #eae7e7;
}

footer .footerortamenu ul {
    columns: 1;
    /* Varsayılan olarak tek sütun */
    column-gap: 20px;
    /* Sütunlar arasındaki boşluk */
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .footerortamenu ul li {
    break-inside: avoid;
    /* Elemanların sütun arasında bölünmesini engeller */
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

footer .footerortamenu ul li a {
    text-decoration: none;
    color: #eae7e7;
}

/* 4'ten fazla öğe varsa iki sütuna böl */
footer .footerortamenu ul:has(li:nth-child(n+5)) {
    columns: 2;
    /* İki sütunlu düzen */
}


footer .footeraltmenu ul {

    padding: 0;
    margin: 0;

    display: flex;
    /* Flexbox düzeni */
    justify-content: space-between;
    /* Elemanlar arasında eşit boşluk */

}

footer .footeraltmenu ul li {
    float: left;
    color: white;
    list-style-type: none;

}

footer .footeraltmenu ul li a {

    color: #eae7e7;
    text-decoration: none;

}




footer .copyright {
    margin-top: 30px;
    color: #eae7e7;
}

.breadcrumpsection {
    padding: 55px;
    margin: 0;
}

.breadcrumpsection h2 {
    color: #1A361D;
}

.breadcrumpsection .breadcrumb-line {
    margin: 0;
    border: none;
    border-top: 1px solid #1A361D;
    position: relative;
    top: -15px;
    opacity: 1;
}

.breadcrumpsection .bgtitle {
    padding: 5px;
    background-color: white;
    border: 1px solid #1A361D;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.breadcrumpsection ul {
    padding: 0px;
    margin: 0;
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
}

.breadcrumpsection ul li {
    float: left;
    list-style-type: none;
}

.breadcrumpsection ul li a {
    color: #1A361D;
    text-decoration: none;
}



.formsection {
    padding: 60px 0;
}

.formsection h2 {
    color: #1f361d;
    font-weight: 300;
    margin: 25px 0;
}

.formsection p {
    color: #1f361d;

}

.formsection ul {
    padding: 0;
    margin: 0;
}

.formsection ul li {
    list-style-type: none;
    margin: 20px 0;
    color: #1f361d;
}

.formsection ul li a {
    text-decoration: none;
    color: #1f361d;
}

.formsection .form {
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 50px 20px;
}

.formsection .form .form-control {
    border-radius: 20px;
}

.formsection .form label {
    margin: 10px 0;
}

.formsection .form a {
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    text-decoration: none;
    background-color: #1A361D;
    color: white;
    padding: 10px 10px;
    width: 100%;
}

.formsection .form .franchiseclsbtn {
    width: 30px !important;
}


.subelersectiondetay #map {
    height: 500px;
    width: 100%;
}




.subelersectiondetay .subulerbtn {
    display: inline-block;
    background-color: #1A361D;
    color: white;
    padding: 10px 20px;

    text-decoration: none;
    border-radius: 15px;
}

.subelersectiondetay .subeler {
    margin: 50px 0;
}

.subelersectiondetay .subeler .sube {
    background: white;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0rem 0.5rem 1.5rem rgba(15, 38, 102, 0.1);
    margin: 29px 20px;
}

.subelersectiondetay .subeler .sube ul {
    padding: 0;
    margin: 0;

    display: flex;
    /* Flexbox düzeni */
    justify-content: space-between;
    /* Elemanlar arasında eşit boşluk */

}

.subelersectiondetay .subeler .sube ul li {
    text-align: center;
    list-style-type: none;
    float: left;
    flex-grow: 1;
}


.subelersectiondetay .subeler .sube a {
    color: #1f361d;
    text-decoration: none;
}

.subelersectiondetay .subeler p {
    color: #1f361d;
    padding: 0 25px;
}

.subelersectiondetay .subeler a {
    color: #1f361d;
    text-decoration: none;
}

.subelersectiondetay .subeler .haritabtn {
    width: 92%;
    display: block;
    text-decoration: none;
    border-radius: 20px;
    text-align: center;
    background-color: #1f361d;
    padding: 5px;
    color: white;
    font-size: 14px;
}

.subelersectiondetay .selectil {
    position: relative;
    width: 100%;
}

.subelersectiondetay .il {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Aşağı ok simgesi */
.subelersectiondetay .selectil::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: white;
    background: #1f361d;
    padding: 2px 5px;
    border-radius: 20px;
}

.franchisesectiondetay h2 {
    font-weight: 300;
    color: #1f361d;
}



.basvurusurecisection {
    margin: 20px 0;
    padding: 55px 0;
    width: 100%;
    height: 100%;
    background-color: #f5efe4;
}

.basvurusurecisection h2 {
    font-weight: 300;
    color: #1f361d;
}

.basvurusurecisection .surecdetay {
    display: flex;
    color: #1A361D;
    /* Flexbox etkinleştir */
    flex-direction: column;
    /* Dikey düzenleme */
    justify-content: center;
    /* Dikeyde ortala */
    padding: 0 20px;
    height: 100%;
    /* Yüksekliği ayarla */
}

.basvurusurecisection .surecdetay p {
    font-size: 25px;
}

.basvurusurecisection .col-md-6 {
    padding: 0;
}

.basvurubutondiv {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 195px;
    height: 236px;
    display: flex;
    text-decoration: none;
    color: white;
    align-items: center;
    justify-content: flex-end;
    background: url("../../img/franchise-btnbg.png") no-repeat center center;
    background-size: contain;
    box-sizing: border-box;
    padding-right: 25px;
    text-align: right;
    font-size: 16px;
    padding-left: 70px;
    line-height: 25px;
    cursor: pointer;

}

.basvurubutondiv::after {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../../img/franchise-icon.png") center center no-repeat;
    background-size: contain;
    width: 13.6%;
    height: 16.9%;
    content: '';
}



.haritaliste {
    min-height: 299px;
    height: auto;
    padding: 0px 10px 40px 10px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin: 16px 0px;
    box-shadow: 0rem 0.5rem 1.5rem rgba(15, 38, 102, 0.1);
}

.franchiseform {
    width: 600px;
    position: fixed;
    top: 50px;
    z-index: 99;
    right: 0;
    display: none;
}

.franchiseform .form {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-right: 4px solid green;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 50px 20px;
    background: white;
}

.franchiseform .form .form-control {
    border-radius: 20px;
}

.franchiseform .form label {
    margin: 10px 0;
}

.franchiseform .form .formdatabtn {
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    text-decoration: none;
    background-color: #1A361D;
    color: white;
    padding: 10px 10px;
    width: 100%;
}

.franchiseform .form .franchiseclsbtn {
    text-decoration: none;
    background-color: #1A361D;
    color: white;
    width: 30px;
    font-size: 20px;

    position: absolute;
    right: 30px;
    padding: 0px 9px;
    border-radius: 23px;
}

/* Google Forms iframe stilleri */
.franchiseform .google-forms-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.franchiseform .google-forms-container iframe {
    border: none;
    border-radius: 10px;
}

/* Modal genişliğini Google Forms için artır */
.franchiseform {
    width: 700px;
}