
@font-face {
    font-family: 'Gilroy';
    src: url('https://fonts.cdnfonts.com/s/18331/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('https://fonts.cdnfonts.com/s/18331/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #1e608b;
    --secondary-color: #0c4a6e;
    --accent-color: #5a8faa;
    --background-color-light: #f8f9fa;
    --text-color-dark: #212529;
    --text-color-light: #6c757d;
}

body {
    font-family: 'Gilroy', sans-serif;
    background-color: var(--background-color-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.franchise-hero {
    padding-top: 160px; 
    padding-bottom: 80px;
    color: white;
    text-align: center;
    
    background: 
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(135deg, #5a8faa 0%, #1e608b 100%);
    background-size: 20px 20px, 20px 20px, auto;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}
.hero-buton {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.hero-buton:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.franchise-sayfasi section {
    padding: 80px 0;
}
.franchise-sayfasi section h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--text-color-dark);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.franchise-sayfasi section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}


.avantajlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.avantaj-kart {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}
.avantaj-kart.visible {
    opacity: 1;
    transform: translateY(0);
}
.avantaj-kart i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.avantaj-kart h3 {
    font-size: 1.4rem;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}
.avantaj-kart p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
}


.basvuru-sureci {
    background-color: #fff;
}
.surec-zaman-tuneli {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.surec-zaman-tuneli::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 23px;
}
.surec-adim {
    padding: 10px 40px 30px 80px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}
.surec-adim.visible {
    opacity: 1;
    transform: translateX(0);
}
.adim-ikon {
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}
.adim-icerik h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.adim-icerik p {
    line-height: 1.6;
    color: var(--text-color-light);
}


.dunya-alani {
    text-align: center;
}
.dunya-alani p {
    max-width: 600px;
    margin: -40px auto 40px auto;
    font-size: 1.1rem;
    color: var(--text-color-light);
}
#globe-container {
    width: 100%;
    height: 500px;
    cursor: grab;
}
#globe-container:active {
    cursor: grabbing;
}


@media (max-width: 768px) {
    .surec-zaman-tuneli::after {
        left: 23px;
    }
    .surec-adim {
        padding-left: 80px;
    }
}

