/* Franchise Page - Purple Theme */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --accent: #f97316;
    --dark: #1f2937;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-site-brand {
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
}

.logo-site-brand:hover {
    color: #b91c1c;
}

.logo-divider {
    color: var(--gray-300);
    font-weight: 300;
}

.logo-fr {
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
}

.logo-fr:hover {
    color: #111827;
}

.nav-emlak-mobile {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--gray-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nav-icon-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Auth Menu */
.auth-menu {
    position: relative;
}

.auth-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s;
}

.auth-icon-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.user-initials {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.auth-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 8px;
}

.dropdown-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.dropdown-name {
    font-weight: 500;
    color: var(--gray-900);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.95rem;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: #fef2f2;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
}

.lang-selector:hover {
    background: var(--gray-100);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-nav {
    background: var(--primary);
    color: var(--white);
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.1) 100%);
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
}

.hero-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-select {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    position: relative;
    cursor: pointer;
}

.search-select .select-icon {
    color: var(--gray-500);
    flex-shrink: 0;
    pointer-events: none;
}

.search-select .select-arrow {
    color: var(--gray-400);
    flex-shrink: 0;
    pointer-events: none;
    margin-left: auto;
}

.search-select select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--gray-700);
    cursor: pointer;
    min-width: 150px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 0.5rem;
}

.search-select select option {
    padding: 0.5rem;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 1.5rem;
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.view-all {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.view-all:hover {
    color: var(--primary);
}

/* Franchise Slider */
.franchise-slider,
.featured-slider {
    position: relative;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slider-btn.prev {
    left: -22px;
}

.slider-btn.next {
    right: -22px;
}

/* Franchise Card */
.franchise-card {
    min-width: 280px;
    background: linear-gradient(to bottom, #fef3c7, #fef9c3);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.franchise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.franchise-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.franchise-logo {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.franchise-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.franchise-info {
    text-align: left;
    margin-bottom: 0.5rem;
}

.franchise-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.franchise-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gray-600);
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.franchise-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

/* Partners */
.partners {
    background: var(--gray-50);
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    width: 200px;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--gray-200);
}

/* Investment Range */
.investment-range {
    text-align: center;
}

.range-header {
    margin-bottom: 2rem;
}

.range-tabs {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 2rem;
}

.range-tab {
    padding: 0.75rem 2rem;
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.range-tab.active {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.range-panel {
    margin-top: 0;
}

.range-loading {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.range-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.range-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 25px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.range-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Featured Card */
.featured-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
}

.featured-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-200);
}

.featured-content {
    padding: 1.25rem;
}

.featured-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-location {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.featured-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.featured-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.featured-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

/* Statistics */
.statistics {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.stat-source {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-text .section-title {
    margin-bottom: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
}

.accordion-header svg {
    transition: transform 0.2s;
    color: var(--gray-500);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

.accordion-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.how-image {
    border-radius: 16px;
    overflow: hidden;
}

.how-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-row:last-of-type {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    min-width: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.form-group .phone-input {
    margin-top: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.message-group {
    grid-row: span 2;
}

.message-group textarea {
    height: 100%;
    min-height: 120px;
    resize: none;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
    min-width: 0;
}

.phone-input .country-code {
    width: 100px;
    min-width: 80px;
    flex-shrink: 0;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.phone-input input {
    flex: 1;
    min-width: 0;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 2rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 80px 0;
}

.newsletter-subtitle {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.newsletter-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 50px;
    padding: 6px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    background: none;
    outline: none;
}

.btn-newsletter {
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 1rem 2rem;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-site-brand {
    color: #dc2626;
    text-decoration: none;
}

.footer-logo .logo-site-brand:hover {
    color: #ef4444;
}

.footer-logo .logo-divider {
    color: var(--gray-500);
}

.footer-logo .logo-fr {
    color: #9ca3af;
    text-decoration: none;
    font-style: italic;
}

.footer-logo .logo-fr:hover {
    color: #d1d5db;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Ana siteye dönüş butonu */
.back-to-site-home {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s;
    z-index: 100;
}

.back-to-site-home:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* No Data */
.no-data {
    width: 100%;
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
    /* Mobil header ana sayfayla aynı boyut */
    .navbar {
        height: auto;
    }
    .nav-wrapper {
        min-height: 52px;
        height: auto;
        padding: 0.28rem 0;
        gap: 0.5rem;
        align-items: center;
    }

    .logo {
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
        column-gap: 0.4rem;
        max-width: 11.35rem;
        flex-shrink: 0;
        min-width: 0;
    }

    .logo-site-brand {
        flex: 1 1 100%;
        font-size: 1.06rem !important;
        line-height: 1.1;
        letter-spacing: -0.025em;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid var(--gray-300);
        padding-bottom: 0.12rem;
        margin-bottom: 0.1rem;
    }

    .logo .logo-divider {
        display: none;
    }

    .logo-fr {
        font-size: 1rem !important;
        line-height: 1;
        margin: 0;
        padding: 0;
    }

    .nav-emlak-mobile {
        display: inline-flex !important;
        align-items: center;
        align-self: center;
        margin-left: auto;
        margin-right: 0.2rem;
        font-size: 0.82rem !important;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        font-style: normal;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-image {
        order: -1;
    }
    
    .how-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .lang-selector,
    .nav-actions .btn-primary-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-search {
        flex-direction: column;
    }
    
    .search-select,
    .btn-search {
        width: 100%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .franchise-card,
    .featured-card {
        scroll-snap-align: start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    /* Telefon alanı: etiket kutunun içine girmesin (padding çökmez) */
    .contact-form .form-group-phone label {
        margin-bottom: 0;
        padding-bottom: 0.9rem;
        display: block;
        line-height: 1.35;
    }
    
    .contact-form .form-group-phone .phone-input {
        margin-top: 0;
    }
    
    .phone-input .country-code {
        width: 90px;
        min-width: 70px;
    }
    
    .range-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .range-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
