/* İletişim Sayfası Üst Bilgi ve Harita */
.contact-top {
    padding: 32px 0 16px 0;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info-box {
    flex: 1 1 320px;
    
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.1rem;
    font-family: "Merriweather Sans", sans-serif;
    color: #23235b;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 12px;
    background: #fff;
    
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(66,48,192,0.08);
    border-radius: 12px;
}
.contact-info-item i {
    color: #4230C0;
    font-size: 1.5em;
}
.contact-map-box {
    flex: 2 1 400px;
    min-width: 260px;
    max-width: 600px;
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 18px;
    }
    .contact-map-box {
        width: 100%;
    }
}
/* Sol Dikey Ücretsiz Demo Butonu */
.side-demo-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    background: #4230C0;
    color: #fff;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    padding: 12px 32px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(66,48,192,0.12);
    z-index: 9999;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: block;
    
}
.side-demo-btn:hover {
    background: #2d1a8a;
    color: #fff;
}
@media (max-width: 600px) {
    .side-demo-btn {
        font-size: 13px;
        padding: 8px 18px;
        border-radius: 0 0 8px 8px;
    }
}
/* Feature Section Tasarımı */
.feature-section {
    background: #f4f8fc;
    padding: 48px 0;
}
.feature-container {
    border-radius: 12px;
    
    padding: 32px 32px 32px 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-tabs {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.feature-tabs::-webkit-scrollbar {
    display: none;
}
@media (max-width: 600px) {
    .feature-tabs {
        gap: 12px;
        padding-bottom: 8px;
    }
    .feature-tab {
        font-size: 14px;
        padding: 10px 12px;
        min-width: 160px;
        white-space: nowrap;
    }
    .feature-content-row {
        padding: 12px 4px;
    }
    .feature-content-text{
        flex: unset!important;
    }
}
.feature-tab {
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 24px;
    border-radius: 8px 8px 0 0;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 220px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .feature-tabs {
        gap: 8px;
        padding-bottom: 8px;
    }
    .feature-tab {
        font-size: 14px;
        padding: 10px 8px;
        min-width: 120px;
        max-width: 160px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
.feature-tab.active, .feature-tab:hover {
    background: #ffffff;
    color: #4230C0;
}
.feature-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 16px rgba(66,48,192,0.06);
    padding: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.feature-content-text {
    flex: 1 1 340px;
}
.feature-content-text h2 {
    font-size: 5rem;
    font-weight: 700;
    color: #23235b;
    margin: 12px 0 16px 0;
    line-height: 1.3;
}
.feature-content-text p {
    color: #4a4a6a;
    font-size: 1.8rem;
    margin-bottom: 0;
}
.feature-orange {
    color: #4230C0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.feature-content-img {
    flex: 1 1 260px;
    display: flex;
    justify-content: flex-end;
}
.feature-content-img img {
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .feature-content-row {
        flex-direction: column;
        gap: 16px;
    }
    .feature-content-img {
        justify-content: center;
    }
}


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

body {
    background-color: #fff !important;
    /*e0e3f8*/
}

header {
    width: 100%;
    height: 100px;
    display: block;
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(45, 62, 80, .18);
    z-index: 100;
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

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

header .logo img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
}
/* Loader stil */
#loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #4230C0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
    pointer-events: all;
}
#loader-bg.loader-hide {
    opacity: 0;
    pointer-events: none;
}
#loader-bg img {
  height: 140px;
  margin-bottom: 0px;
  filter: brightness(0) invert(1);
}
.loader {
  border: 8px solid #ffffff;
  border-top: 8px solid #4230C0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

header .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px !important;
}

header .menu ul li {
    list-style: none;
    margin-left: 40px;
}

header .menu ul li a {
    text-decoration: none;
    color: #fffffffb;
    font-size: 16px;
    font-weight: 600;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

header .menu ul li a:hover {
    color: #ffffffbd;
}

header .menu button {
    background-color: #4230C0;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Merriweather Sans", sans-serif;
    transition: all 0.3s ease;
    border-radius: 8px;
}
header .menu button:hover {
    background-color: #fff;
    color: #4230C0;
    border: 2px solid #4230C0;
}

/* The side navigation menu */
.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 99991;
    /* Stay on top */
    top: 100px;
    /* Stay at the top */
    left: 0;
    background: linear-gradient(180deg, #4230C0 0, #6a5acd 100%);
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

header .mobile-menu {
    display: none;
}

header .mobile-menu i {
    font-size: 28px;
    color: #ffffff;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}


.welcomePage {
    width: 100%;
    height: 70vh;
    padding-bottom: 30px;
    padding-top: 30px;
    z-index: 1;
}
@media (max-width: 768px) {
    header .mobile-menu {
        display: block;
    }

    header .menu {
        display: none;
    }
    .welcomePage{
        height: auto;
    }
}
.welcomeLinear{
    width: 100%;
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 30px;
    background: linear-gradient(180deg, #4230C0 0, #6a5acd 100%);
    box-shadow: 0 8px 32px 0 rgba(66, 48, 192, 0.10);
    transition: all 0.3s ease;
}
.welcomePage .rowWelcomePage {
    display: flex;
    justify-content: center;
    align-items: center;
}
.welcomePage .welcomePage-content h1 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
}
.welcomePage .welcomePage-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 100;
    font-family: "Merriweather Sans", sans-serif;
}
.welcomePage .welcomePage-image {
    text-align: right;
}
.welcomePage .welcomePage-image img {
    width: 60%;
}
.welcomePage .row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.welcomePage .buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.welcomePage .welcome-button {
    width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  color: #4230C0;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  margin-top: 30px;
}
.welcomePage .welcome-button:hover {
    font-size: larger;
}
.statistics {
    width: 100%;
    padding-bottom: 80px;
    padding-top: 80px;
    z-index: 1;
}
.statistics .rowStatistics {
    display: flex;
    justify-content: center;
    align-items: center;
}
.statistics .rowStatistics h2 {
    font-size: 45px;
    font-weight: 700;
    color: #252525;
}
.statistics .rowStatistics p {
    font-size: 16px;
    font-weight: 100;
    font-family: "Merriweather Sans", sans-serif;
}
.statistics .rowStatistics i {
    font-size: 45px;
    color: #252525;
}
.statistics .item-statistics {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.statistics .item-statistics:nth-child(1) i {
    color: #4B0082; /* Deep indigo */
}
.statistics .item-statistics:nth-child(2) i {
    color: #2E8B57; /* Sea green */
}
.statistics .item-statistics:nth-child(3) i {
    color: #dd7f40; /* Peru brown */
}
.statistics .item-statistics:nth-child(4) i {
    color: #255cc4; /* Dark goldenrod */
}
@media (max-width: 768px) {
    .statistics .rowStatistics {
        flex-direction: column;
        gap: 20px;
    }
}

#system {
    padding-bottom: 80px;
    padding-top: 80px;
    margin-bottom: 50px;
    background-color: #fafafa;
    font-family: "Merriweather Sans", sans-serif;
}

#system .container {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

#system .flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
}

#system .w-full {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

#system .text-center {
    text-align: center;
}

#system .text-primary {
    color: #4230C0;
}

#system .text-dark {
    color: #252525;
}

#system .text-body-color {
    color: #383838;
}

#system .dark .text-white {
    color: #fff;
}

#system .dark .text-dark-6 {
    color: #818181;
}

#system .bg-primary {
    background-color: #4230C0;
}

#system .bg-primary\/20 {
    background-color: rgba(52, 64, 147, 0.2);
}

#system .group:hover .rotate-45 {
    transform: rotate(45deg);
}

#system .wow {
    visibility: visible;
}

#system .fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    #system .md\:w-1\/2 {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    #system .lg\:w-1\/4 {
        width: 25%;
    }
}

#system .svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
    border-radius: 14px;
}

/* Sticky header styles */
.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(66,48,192,0.98); /* matches welcome gradient theme */
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* When header becomes sticky we show the placeholder to avoid layout jump */
#header-placeholder {
    display: none;
}

@media (min-width: 0px) {
    /* ensure header height is preserved when sticky */
    header.is-sticky + #header-placeholder {
        display: block;
    }
}

#system .svg-container i {
    font-size: 36px;
    color: #4230C0;
}

#system .svg-background {
    display: none;
}
.justify-center{
    justify-content: center;
}
.mt-4{
    margin-top: 25px;
}

#system .mb-10 {
    margin-bottom: 20px; /* Increase spacing between icon and title */
}

#system i {
    font-size: 36px;
    color: #4230C0; /* Blue shade */
}
.textContent {
    padding-bottom: 20px;
    padding-top: 20px;
}
.textContent .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.textContent .textContent-image{
    text-align: center;
}
.textContent .textContent-image img{
    width: 80%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(66, 48, 192, 0.10);
    background: rgba(255,255,255,0.7);
}
.textContent .textContent-content h2 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #252525;
}
.textContent .textContent-content p {
    font-size: 16px;
    font-weight: 100;
    margin-top: 20px;
    font-family: "Merriweather Sans", sans-serif;
}
.textContent .textContent-content ul {
    margin-left: 20px;
}
.textContent .textContent-content ul li {
    font-weight: bold;
}
.textContent .textContent-content .btn {
    background-color: #4230C0;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Merriweather Sans", sans-serif;
}
footer {
    padding-bottom: 10px;
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4230C0;
    
}
footer p {
    font-size: 16px;
    font-weight: bold;
    font-family: "Merriweather Sans", sans-serif;
    color: #fff;
    display:block;
    text-align: center;
}
.rowContent {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .rowContent {
        flex-direction: column;
    }
}
.welcomeItems{
    margin-top: 40px;
}
.welcomeItems .welcomeItem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    text-align: left;
    margin-bottom: 30px;
    background-color: #fafafa;
    padding: 15px;
    min-height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 24px 0 rgba(66, 48, 192, 0.10);
}
.welcomeItems .welcomeItem .Icon {
    width: fit-content;
    background-color: #4230C01A;
    padding: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.welcomeItems .welcomeItem i {
    font-size: 36px;
    color: #4230C0;
    margin: 0;
    padding:0;
}
.welcomeItems .item:nth-child(1) .welcomeItem .Icon {
    background-color: #e6f9ec; /* Açık yeşil */
}
.welcomeItems .item:nth-child(1) .welcomeItem i {
    color: #22c55e; /* Flat yeşil */
}

.welcomeItems .item:nth-child(2) .welcomeItem .Icon {
    background-color: #fff4e6; /* Açık turuncu */
}
.welcomeItems .item:nth-child(2) .welcomeItem i {
    color: #f97316; /* Flat turuncu */
}

.welcomeItems .item:nth-child(3) .welcomeItem .Icon {
    background-color: #ffeaea; /* Açık kırmızı */
}
.welcomeItems .item:nth-child(3) .welcomeItem i {
    color: #ef4444; /* Flat kırmızı */
}
.welcomeItems .welcomeItem h3 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #4230C0;
    margin-top: 15px;
}
.welcomeItems .welcomeItem p {
    font-size: 16px;
    font-weight: 100;
    margin-top: 10px;
    font-family: "Merriweather Sans", sans-serif;
    color: #383838;
}
.welcomeItems .welcomeItem button {
    background-color: transparent;
    border:1px solid #4230C0;
    color: #4230C0;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Merriweather Sans", sans-serif;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.welcomeItems .welcomeItem button:hover {
    background-color: #4230C0;
    color: #fff;
    border: none;
}
.banners{
    margin-bottom: 40px;

}
.banners .item img{
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(66, 48, 192, 0.10);
    background: rgba(255,255,255,0.7);
    
}

.Title{
    font-size: 30px!important;
    font-weight: 600;
    font-family: "Merriweather Sans", sans-serif;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 768px) {
    .Title{
        font-size: 24px!important;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
}
/* SSS (Sıkça Sorulan Sorular) alanı */
.sss {
    background: #f7f9fb;
    padding: 60px 0;
    margin-top: 50px;
    margin-bottom: 50px;
}
.sss-list-group .sss-list-item {
    border: none;
    color: #15396a;
    font-weight: 500;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    padding: 20px 15px;
    border-radius: 4px;
}
.sss-list-group .sss-list-item.active {
    background: #f1eff8;
    color: #4230C0;
    font-weight: 600;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    background-color: #f1eff8!important;
    color: #4230C0!important;
    border-color: #4230C0;
}
.sss-accordion {
    /* boşluklar ve responsive için */
    padding: 0;
    margin: 0;
}

.sss-accordion-content {
    display: block;
}
.sss-accordion-item {
    border: none;
    box-shadow: none;
    background: #fff;
}
.sss-accordion-item-alt {
    background: #e9eef6;
}
.sss-accordion-btn {
    color: #15396a;
    font-size: 1.15rem;
    background: inherit;
}
.sss-accordion-btn:not(.collapsed) {
    font-size: 1.25rem;
    font-weight: bold;
}
.sss-accordion-btn-alt {
    color: inherit;
    font-weight: 600;
}
.sss-accordion-body {
    color: #6c7ba0;
}
.panel-group .panel{
    margin-bottom: 15px!important;
}
.panel-default{
    border-color: transparent!important;;
}
.panel-group .panel .panel-heading{
    background-color: transparent!important;
    border-color: transparent!important;
    padding: 30px!important;
}
.panel-group .panel .panel-heading .panel-title a{
    font-size: 16px!important;
    font-family: "Merriweather Sans", sans-serif;
    text-decoration: none;
}
.panel-body{
    font-size: 14px!important;
    padding: 30px!important;
    font-family: "Merriweather Sans", sans-serif;
}

/* Welcome slider styles */
.welcome-slider{
    position: relative;
    overflow: hidden;
}
.welcome-slider{
    position: relative;
    overflow: hidden;
    /* fallback minimum height while JS calculates exact height */
    min-height: 300px;
}
.welcome-slider .slide{
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 0;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(.2,.9,.2,1), transform 0.6s cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
}
.welcome-slider .slide.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.welcome-slider-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:20px;
}
.welcome-prev, .welcome-next{
    background: rgba(0,0,0,0.2);
    border: none;
    color: #fff;
    font-size: 28px;
    width:44px;
    height:44px;
    border-radius:50%;
    cursor:pointer;
}
.welcome-dots{
    display:flex;
    gap:8px;
}
.welcome-dots button{
    width:10px;
    height:10px;
    border-radius:50%;
    border:none;
    background: #ddd;
    cursor:pointer;
}
.welcome-dots button.active{
    background: #4230C0;
}

@media (max-width:768px){
    .welcome-slider .col-md-7{display:none}
    .welcome-slider .col-md-5{width:100%}
}

/* Apply / POS section styles */
.apply-section{
    background: #edeafd; /* #4230C0 renginin açık tonu */
    padding: 60px 0 80px;
    margin-top: 20px;
}
.apply-row{
    display:flex;
    gap:30px;
    align-items:stretch;
}
.apply-left{
    flex:1.1;
    padding: 30px 20px;
}
.apply-left h2{
    font-size:36px;
    line-height:1.05;
    color:#202020;
    margin-bottom:16px;
}
.apply-left .big{display:block;color:#4230C0;font-weight:800;font-size:42px}
.apply-left p{color:#202020;margin-bottom:24px; font-size: 18px;}
.trust-card{
    background: #fff;
    padding:16px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    box-shadow: 0 6px 18px rgba(10,60,100,0.06);
    margin-top: 20px;
}
.trust-card img{height:44px}
.trust-text{font-size:12px;color:#8ea6b4}

.apply-right{
    flex:0.9;
    display:flex;
    justify-content:flex-end;
}
.apply-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    width:100%;
    max-width:520px;
    box-shadow: 0 18px 40px rgba(5,30,60,0.08);
}
.apply-title{margin:0 0 12px;color:#202020;font-weight: bold;}
.apply-form .form-row{margin-bottom:12px}
.apply-form .two-cols{display:flex;gap:12px}
.apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="tel"], .apply-form select{
    width:100%;
    padding:12px 14px;
    border:1px solid #e4eef3;
    border-radius:8px;
    background:#fbfdff;
    font-size:14px;
    color:#12394b;
}
.checkbox-row label{font-size:13px;color:#6b7d87}
.checkbox-row input[type="checkbox"]{margin-right:8px}
.apply-submit{
    width:100%;
    display:block;
    padding:14px 18px;
    background: linear-gradient(90deg,#4230C0,#5c519e);
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    font-weight: bold;
}

@media (max-width: 992px){
    .apply-row{flex-direction:column}
    .apply-right{justify-content:center}
    .apply-left .big{font-size:32px}
}
/* Modal success styles */
.modal-hidden{display:none}
.modal-visible{display:block}
.modal-backdrop2{
    position:fixed;inset:0;background:#edeafd8f;z-index:2000;
}
.modal-card{
    position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);
    background:#fff;padding:40px;border-radius:12px;z-index:2001;max-width:420px;width:90%;box-shadow:0 18px 40px rgba(5,30,60,0.12);
    
    font-family: "Merriweather Sans", sans-serif;
}
.modal-card h3{margin:0 0 8px;color:#0b3a5a}
.modal-card p{margin:0 0 16px;color:#405d6b}
.modal-card button{background:#4230C0;color:#fff;border:none;padding:10px 16px;border-radius:8px;cursor:pointer}

/* Demo Popup Modal Styles */
.popup-modal-hidden {
    display: none;
}

.popup-modal-visible {
    display: block;
}

.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    animation: popupFadeIn 0.3s ease-out;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    animation: popupSlideIn 0.4s ease-out;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    z-index: 10000;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
    background: #fff;
    color: #4230C0;
    transform: scale(1.1);
}

.popup-content {
    display: flex;
    min-height: 500px;
}

.popup-left {
    flex: 1;
    background: linear-gradient(135deg, #4230C0 0%, #6c63ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.popup-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.popup-image {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.popup-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.20);
    }
}

.popup-info {
    position: relative;
    z-index: 2;
    text-align: center;
}

.popup-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popup-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.popup-feature i {
    color: #00ff88;
    font-size: 16px;
}

.popup-right {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-form-card {
    width: 100%;
    max-width: 400px;
}

.popup-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 8px;
    text-align: center;
}

.popup-form-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.popup-form-row {
    margin-bottom: 16px;
}

.popup-two-cols {
    display: flex;
    gap: 12px;
}

.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"],
.popup-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    background: #fbfcfd;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    font-family: inherit;
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: #4230C0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(66, 48, 192, 0.1);
}

.popup-checkbox-row {
    margin: 20px 0;
}

.popup-checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.popup-checkbox-row input[type="checkbox"] {
    margin: 2px 0 0 0;
    width: auto;
}

.popup-checkbox-row a {
    color: #4230C0;
    text-decoration: none;
}

.popup-checkbox-row a:hover {
    text-decoration: underline;
}

.popup-form-submit {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #4230C0 0%, #6c63ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.popup-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 48, 192, 0.3);
}

.popup-form-submit:active {
    transform: translateY(0);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .popup-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .popup-content {
        flex-direction: column;
        min-height: auto;
    }

    .popup-left {
        padding: 30px 20px;
        min-height: 250px;
    }

    .popup-image img {
        max-width: 200px;
    }

    .popup-info h3 {
        font-size: 22px;
    }

    .popup-info p {
        font-size: 14px;
    }

    .popup-features {
        align-items: center;
    }

    .popup-right {
        padding: 30px 20px;
    }

    .popup-form-title {
        font-size: 20px;
    }

    .popup-two-cols {
        flex-direction: column;
        gap: 16px;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        width: 100%;
        min-height: 100vh;
        overflow-y: scroll;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }

    .popup-left {
        padding: 25px 15px;
        min-height: 200px;
    }

    .popup-right {
        padding: 25px 15px;
    }
}

/* Animasyonlar */
@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.pageContent{
    min-height: 60vh;
    padding-top: 50px;
    font-family: "Merriweather Sans", sans-serif;
    font-size: 20px;
}
.pageContent h1{
    font-size: 36px;
    font-weight: bold;
    color: #252525;
    margin-bottom: 20px;
}
.pageContent p{
    font-size: 20px;
    font-weight: 100;
    color: #383838;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}