        /* Franchise Sayfası - Özel CSS */

.franchise-container {
    background-color: #f8f9fa;
    padding-bottom: 380px;
}

/* Hero Section */
.franchise-hero {
    background-color: #ffffff;
    padding: 60px 0 40px 0;
}

.franchise-hero-content {
    max-width: 100%;
}

.franchise-title {
    font-size: 4rem;
    font-weight: 300;
    color: #6c757d;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.franchise-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    max-width: 600px;
    text-align: justify;
}

/* Images Section */
.franchise-images {
    padding: 40px 0 60px 0;
    background-color: #f8f9fa;
}

.franchise-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.franchise-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.franchise-image-wrapper:hover .franchise-img {
    transform: scale(1.05);
}

/* Atmosphere Section */
.franchise-atmosphere {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.atmosphere-images {
    position: relative;
    height: 500px;
}

.atm-img-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.atm-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.atm-img-left {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.atm-img-right {
    width: 320px;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.atm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atm-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #2c3e50, #34495e);
    border-radius: 50%;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.8;
}

.atmosphere-content {
    padding-left: 40px;
}

.atm-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.atm-feature {
    margin-bottom: 25px;
}

.atm-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.atm-feature-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: justify;
}

/* Form Section */
.franchise-form-section {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.franchise-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.franchise-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-logo {
    margin-bottom: 20px;
}

.form-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.franchise-input,
.franchise-textarea {
    background-color: #f5f5f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
}

.franchise-input:focus,
.franchise-textarea:focus {
    background-color: #ffffff;
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
    outline: none;
}

.franchise-input::placeholder,
.franchise-textarea::placeholder {
    color: #999;
}

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

.franchise-submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    border: none;
    color: #8b4513;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 0;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.franchise-submit-btn:hover {
    background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #f4e4a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: #8b4513;
}

.franchise-submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .franchise-title {
        font-size: 3rem;
    }
    
    .franchise-description {
        font-size: 0.95rem;
    }
    
    .franchise-container {
        padding-bottom: 340px;
    }
    
    .franchise-form-wrapper {
        padding: 30px;
    }
    
    .atmosphere-images {
        height: 400px;
    }
    
    .atm-img-left {
        width: 220px;
        height: 280px;
    }
    
    .atm-img-right {
        width: 260px;
        height: 220px;
    }
    
    .atmosphere-content {
        padding-left: 20px;
    }
    
    .atm-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .franchise-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .franchise-description {
        text-align: center;
        max-width: 100%;
    }
    
    .franchise-hero {
        padding: 40px 0 30px 0;
    }
    
    .franchise-images {
        padding: 30px 0 50px 0;
    }
    
    .franchise-form-section {
        padding: 40px 0 60px 0;
    }
    
    .franchise-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-logo-img {
        height: 60px;
    }
    
    .franchise-atmosphere {
        padding: 50px 0;
    }
    
    .atmosphere-images {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .atm-img-left {
        width: 180px;
        height: 240px;
    }
    
    .atm-img-right {
        width: 220px;
        height: 180px;
    }
    
    .atm-decoration {
        width: 80px;
        height: 80px;
    }
    
    .atmosphere-content {
        padding-left: 0;
        text-align: center;
    }
    
    .atm-title {
        font-size: 1.5rem;
    }
    
    .atm-feature-text {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .franchise-title {
        font-size: 2rem;
    }
    
    .franchise-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
}

/* CTA Bottom Section */
.franchise-cta-bottom {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), url('/ürünler/chocolate mousse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top:100px;
    margin-bottom: -50px;
    overflow: hidden;
    z-index: 10;
}

.franchise-cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 228, 166, 0.05) 100%);
    z-index: 0;
}

.cta-full-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    display: flex;
    align-items: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    color: #495057;
    line-height: 1.3;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    color: #8b4513;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #f4e4a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: #8b4513;
}

.cta-btn-secondary {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    color: #8b4513;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* CTA Responsive */
@media (max-width: 1200px) {
    .cta-full-container {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .franchise-cta-bottom {
        padding: 70px 0;
    }
    
    .cta-full-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .franchise-cta-bottom {
        padding: 60px 0;
    }
    
    .cta-full-container {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


