/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Colors - Academy Döner Brand */
    --primary-red: #C4452D;
    --dark-red: #5C2018;
    --light-red: #D45D4D;
    --cream: #F5DDB8;
    --dark-brown: #3A1F1F;
    --medium-brown: #5A3A34;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF7F2;
    --light-gray: #E8E2DA;
    --medium-gray: #A39B93;
    --dark-gray: #4A4440;
    --black: #1A1A1A;

    /* Typography */
    --font-display: 'Crimson Text', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 96px;
    --section-padding-mobile: 56px;

    /* Effects */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 6px rgba(58, 31, 31, 0.07);
    --shadow-md: 0 4px 16px rgba(58, 31, 31, 0.11);
    --shadow-lg: 0 8px 32px rgba(58, 31, 31, 0.14);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 8px rgba(58, 31, 31, 0.06);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.logo-img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-gray);
    position: relative;
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    min-height: 44px;
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    background: var(--dark-red) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

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

/* ===================================
   Buttons (shared)
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 48px;
    cursor: pointer;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 69, 45, 0.28);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-brown);
    border-color: var(--light-gray);
}

.btn-secondary:hover {
    background: var(--off-white);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    min-height: 52px;
}

.btn-full {
    width: 100%;
}

.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    gap: 10px;
}

.btn-wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, #FDF5EC 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 69, 45, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--dark-red);
    padding: 6px 18px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15;
    color: var(--dark-brown);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title .highlight {
    color: var(--primary-red);
}

.hero-description {
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--light-gray);
    padding-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--cream);
    color: var(--dark-red);
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scroll-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(7px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--medium-gray);
    font-size: 13px;
    font-weight: 500;
    animation: scroll-hint 2.4s ease-in-out infinite;
}

/* ===================================
   Section Styles (shared)
   =================================== */

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--dark-red);
    padding: 5px 16px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--dark-brown);
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 600;
}

.section-subtitle {
    font-size: 17px;
    color: var(--medium-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.about-card {
    background: var(--off-white);
    padding: 36px 28px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.about-card:hover {
    background: var(--white);
    border-color: var(--cream);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* ===================================
   Products Section
   =================================== */

.products-section {
    background: var(--off-white);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-showcase-item {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.product-showcase-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cream);
}

.showcase-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light-gray);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.product-showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-info {
    padding: 20px 24px;
    position: relative;
}

.showcase-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-info h3 {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--dark-brown);
    margin-bottom: 6px;
    font-weight: 600;
}

.showcase-info p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.5;
}

.products-footer {
    text-align: center;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 6px;
    border: 1px dashed var(--light-gray);
}

.products-footer p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.products-footer strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* ===================================
   Franchise Band (Home)
   =================================== */

.franchise-band {
    background: var(--dark-red);
    padding: 80px 0;
}

.franchise-band-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchise-band h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
    font-weight: 600;
}

.franchise-band p {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.franchise-band-supports {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.franchise-band-supports li {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.franchise-band-supports li::before {
    content: '✓';
    color: var(--cream);
    font-weight: 700;
    flex-shrink: 0;
}

.franchise-band-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.franchise-band-cta .btn-primary {
    background: var(--cream);
    color: var(--dark-red);
    border-color: var(--cream);
}

.franchise-band-cta .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-red);
}

.franchise-band-note {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}

/* ===================================
   Branches Section
   =================================== */

.branches-section {
    background: var(--off-white);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.branch-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.branch-card:hover {
    border-color: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.branch-card:has(:focus-visible) {
    border-color: rgba(196, 69, 45, 0.4);
    box-shadow: 0 0 0 3px rgba(196, 69, 45, 0.1);
}

.branch-city {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 14px;
    font-weight: 600;
}

.branch-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.branch-list li {
    color: var(--dark-gray);
    font-size: 15px;
    padding-left: 14px;
    position: relative;
}

.branch-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 50%;
}

.branch-list li:has(a)::before {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.branch-list a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.branch-list a::after {
    content: '\00a0→';
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 400;
    opacity: 0.45;
    transition: opacity 0.2s ease;
}

.branch-list a:hover {
    color: var(--primary-red);
}

.branch-list a:hover::after,
.branch-list a:focus-visible::after {
    opacity: 1;
}

.branch-list span {
    color: var(--medium-gray);
    font-size: 14px;
}


/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    height: 420px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(58, 31, 31, 0.88), transparent);
    padding: 28px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ===================================
   Contact / CTA Section
   =================================== */

.contact-section {
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    min-height: 72px;
    align-items: center;
}

.contact-method:hover {
    border-color: var(--cream);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.method-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.method-label {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 16px;
    color: var(--dark-brown);
    font-weight: 600;
}

.contact-cta-box {
    background: var(--white);
    padding: 36px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.contact-cta-box h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-cta-box p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 72px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 340px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-red);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--cream);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--cream);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ===================================
   Back to Top Button
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* ===================================
   Bayilik Page Specific
   =================================== */

.bayilik-hero {
    background: linear-gradient(135deg, var(--dark-red) 0%, #7A2B1A 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.bayilik-hero .hero-tag {
    background: rgba(245, 221, 184, 0.2);
    color: var(--cream);
    border: 1px solid rgba(245, 221, 184, 0.3);
}

.bayilik-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 600;
}

.bayilik-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.bayilik-hero .hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Audience section */
.audience-section {
    background: var(--off-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.audience-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--cream);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.audience-card p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Investment section */
.investment-section {
    background: var(--white);
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.investment-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--off-white);
    border-radius: 6px;
    border: 1px solid var(--light-gray);
}

.investment-label {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary-red);
    font-weight: 700;
}

.investment-note {
    font-size: 13px;
    color: var(--medium-gray);
    background: var(--cream);
    border-left: 3px solid var(--primary-red);
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
    line-height: 1.6;
    margin-top: 8px;
}

.investment-visual {
    background: var(--dark-red);
    padding: 36px;
    border-radius: 8px;
    color: var(--white);
}

.investment-visual h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--cream);
    font-weight: 600;
}

.investment-visual ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.investment-visual li {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.investment-visual li::before {
    content: '✓';
    color: var(--cream);
    font-weight: 700;
    flex-shrink: 0;
}

/* Process section */
.process-section {
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    counter-reset: steps;
}

.process-step {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    counter-increment: steps;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--cream);
    box-shadow: var(--shadow-md);
}

.process-step::before {
    content: counter(steps);
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--cream);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h3 {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 16px;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Application form section */
.application-section {
    background: var(--white);
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

.application-info h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--dark-brown);
    margin-bottom: 14px;
    font-weight: 600;
}

.application-info p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.wa-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    padding: 24px;
    margin-top: 24px;
}

.wa-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.wa-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 14px;
}

.application-form-box {
    background: var(--off-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark-gray);
    background: var(--white);
    transition: var(--transition);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 69, 45, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-kvkk {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-kvkk input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-height: unset;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-red);
}

.form-kvkk label {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-kvkk a {
    color: var(--primary-red);
    text-decoration: underline;
}

.form-note {
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 12px;
    line-height: 1.5;
    text-align: center;
}

.form-divider {
    text-align: center;
    margin: 16px 0;
    color: var(--medium-gray);
    font-size: 13px;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: var(--light-gray);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* FAQ / SSS section */
.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--dark-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    min-height: 64px;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-red);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Legal note bar */
.legal-note-bar {
    background: var(--cream);
    padding: 18px 0;
}

.legal-note-bar p {
    font-size: 13px;
    color: var(--dark-brown);
    line-height: 1.6;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

/* Tesekkurler page */
.tesekkurler-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #FDF5EC 100%);
    text-align: center;
}

.tesekkurler-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.check-icon {
    width: 72px;
    height: 72px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.check-icon svg {
    color: #2E7D32;
}

.tesekkurler-card h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 42px);
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: 600;
}

.tesekkurler-card .intro {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.next-steps {
    background: var(--off-white);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 28px;
    text-align: left;
}

.next-steps h3 {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 15px;
    margin-bottom: 12px;
}

.next-steps ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.next-steps li {
    font-size: 14px;
    color: var(--medium-gray);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.disclaimer-note {
    background: var(--cream);
    border-left: 3px solid var(--primary-red);
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--dark-brown);
    line-height: 1.6;
    text-align: left;
}

.tesekkurler-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Franchise redirect page */
.redirect-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    padding: 40px 24px;
}

.redirect-card {
    max-width: 520px;
    text-align: center;
    background: var(--white);
    padding: 48px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.redirect-card img {
    height: 64px;
    width: auto;
    margin: 0 auto 24px;
}

.redirect-card h1 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.redirect-card p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.redirect-countdown {
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 16px;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 72px;
    }

    .hero-content,
    .franchise-band-inner,
    .contact-content,
    .investment-grid,
    .application-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
        gap: 0;
        border-top: 1px solid var(--light-gray);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .cta-button {
        margin-top: 12px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .products-showcase,
    .about-grid,
    .gallery-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.gallery-large {
        grid-column: span 1;
        height: 300px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .application-form-box {
        padding: 28px 20px;
    }

    .tesekkurler-card {
        padding: 36px 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .bayilik-hero .hero-cta-group,
    .tesekkurler-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .bayilik-hero .hero-cta-group .btn,
    .tesekkurler-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .redirect-card {
        padding: 32px 20px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }
}
