
:root {
    --primary-color: #8B4513; 
    --secondary-color: #c8a97e; 
    --background-light: #fdfaf6;
    --background-alt: #f7f2ec;
    --text-dark: #4a3f35; 
    --text-light: #6c5f53;
    --white: #ffffff;
    --animation-duration: 0.6s;
}

.franchise-page {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden; 
}

.section-padding {
    padding: 80px 40px;
}

.alt-background {
    background-color: var(--background-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title p {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800; 
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3); 
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.4);
}

.btn i {
    margin-left: 8px;
}

/* Hero Bölümü */
.franchise-hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-alt) 100%);
    padding: 100px 40px 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden; 
}

.franchise-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.franchise-hero .hero-subtitle {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.franchise-hero h1 {
    font-size: 3.8em;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-dark);
}

.franchise-hero p {
    font-size: 1.2em;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Arka Plan Şekilleri*/
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 0.15); 
    animation: float 6s ease-in-out infinite alternate;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-duration: 7s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-duration: 5s;
    animation-delay: 1s;
    background-color: rgba(139, 69, 19, 0.1); 
}

.shape-3 {
    width: 110px;
    height: 110px;
    bottom: 15%;
    left: 20%;
    animation-duration: 6s;
    animation-delay: 0.5s;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}


.btn-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(139, 69, 19, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.6;
}


.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: rgba(139, 69, 19, 0.2); 
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}


.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px; 
    text-align: right;
}


.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px; 
    text-align: left;
}


.timeline-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--background-alt);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px; 
    transform: translate(50%, -50%);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px; 
    transform: translate(-50%, -50%);
}

.timeline-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    position: relative; 
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}
.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}


.timeline-content h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.6;
}

.candidate-qualities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.quality-item {
    background-color: var(--background-alt);
    border: 2px solid transparent; 
    padding: 20px 30px;
    border-radius: 50px; 
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.quality-item:hover {
    background-color: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.2);
}

.quality-item i {
    font-size: 1.6em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.quality-item:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.quality-item span {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--text-dark);
}


.franchise-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px; 
    display: flex;
    flex-direction: column;
}

.franchise-form > .form-group {
    margin-bottom: 20px;
}


.form-group label {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; 
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}


.animate-on-scroll {
    opacity: 0;
    transition: opacity var(--animation-duration) ease-out, transform var(--animation-duration) ease-out;
}

.fade-in { transform: translateY(20px); }
.fade-in-up { transform: translateY(40px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }
.pop-in { transform: scale(0.8); }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}


.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 2.2em;
    }

    .franchise-hero h1 {
        font-size: 2.8em;
    }

    .franchise-hero p {
        font-size: 1.1em;
    }

    .process-timeline::before {
        left: 25px; 
        transform: translateX(0);
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px; 
        padding-right: 0;
        text-align: left;
        left: 0 !important;
        margin-bottom: 30px;
    }
    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: var(--secondary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        z-index: 1;
        box-shadow: 0 0 0 4px var(--background-alt); 
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        right: auto;
        left: 0;
        transform: translate(0, -50%);
    }
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0; 
        transform: translate(0, -50%); 
        top: 0; 
    }

    .timeline-content::before {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--white) transparent transparent;
        right: auto; 
    }
    .timeline-item:nth-child(odd) {
        text-align: left; 
    }
    .timeline-item:nth-child(odd) .timeline-icon {
        right: auto;
        left: 0;
        transform: translate(0, -50%);
    }
    .timeline-item:nth-child(odd) .timeline-content::before {
        right: auto;
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--white) transparent transparent;
    }


    .form-row {
        flex-direction: column;
        gap: 20px; 
    }
    .form-group {
        min-width: 100%; 
    }
    .franchise-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8em;
    }
    .franchise-hero h1 {
        font-size: 2.2em;
    }
    .franchise-hero p {
        font-size: 1em;
    }
    .feature-item {
        padding: 25px;
    }
    .timeline-content {
        padding: 20px;
    }
}