:root {
    /* Colors */
    --color-primary: #B11E2B;
    --color-primary-dark: #8d1722;
    --color-primary-light: #d43b48;
    --color-accent: #F46A6A;
    --color-accent-light: #ff8a8a;
    --color-neutral: #1F2937;
    --color-neutral-light: #374151;
    --color-background: #FFFBF7;
    --color-muted: rgba(31, 41, 55, 0.68);
    --color-muted-light: rgba(31, 41, 55, 0.45);
    --color-surface: #ffffff;
    --color-success: #10b981;
    --color-error: #dc2626;
    --color-warning: #f59e0b;
    --color-validation: #ea580c; /* Turuncu validation rengi */
    --color-validation-light: #fff7ed; /* Açık turuncu arka plan */
    --color-validation-border: #fb923c; /* Turuncu border */
    
    /* Shadows */
    --shadow-soft: 0 20px 45px rgba(177, 30, 43, 0.15);
    --shadow-medium: 0 12px 30px rgba(31, 41, 55, 0.18);
    --shadow-strong: 0 32px 80px rgba(31, 41, 55, 0.25);
    --shadow-hover: 0 24px 60px rgba(177, 30, 43, 0.2);
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Transitions */
    --transition-base: all 0.35s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --page-max-width: 1140px;
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    --border-radius-xl: 26px;
    --border-radius-full: 999px;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-medium.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-extrabold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mosafin";
    src: url("../images/mosafin-black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: "Mosafin", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--color-background);
    color: var(--color-neutral);
    line-height: var(--line-height-normal);
    font-size: var(--font-size-base);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(244, 154, 154, 0.18) 1px, transparent 0), radial-gradient(rgba(244, 154, 154, 0.24) 1px, transparent 0);
    background-size: 120px 120px, 160px 160px;
    background-position: -20px -20px, 40px 60px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-primary);
}

main {
    display: flex;
    flex-direction: column;
    background: #f8f1d5;
    gap: 4.5rem;
    padding-bottom: 6rem;
}

@media (max-width: 720px) {
    main {
        gap: 3.5rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 540px) {
    main {
        gap: 3rem;
        padding-bottom: 3.5rem;
    }
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6vw;
    background-color: rgb(177 30 43);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(177, 30, 43, 0.08);
    animation: slideDown 0.8s ease both;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
}

.logo {
    width: clamp(120px, 12vw, 150px);
    height: clamp(120px, 12vw, 150px);
    background-color: #f8f1d5;
    border-radius: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(177, 30, 43, 0.18));
    margin-top: -35px;
    margin-bottom: -40px;
}

.brand {
    font-family: "Mosafin", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ebd270;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-nav {
    display: flex;
    gap: 0.45rem;
    padding: 0.2rem 0;
    font-weight: 600;
}

.main-nav .mobile-cta {
    display: none;
}

.nav-link {
    position: relative;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    color: #f8f1d5a3;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
}

.nav-link:hover,
.nav-link:focus {
    background: #f8f1d5;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(177, 30, 43, 0.22);
}

.nav-link.active {
    background: var(--color-primary);
    color: #f8f1d5;
    border-bottom: 1px solid #f8f1d5;
    box-shadow: 0 16px 36px rgba(177, 30, 43, 0.28);
}

.cta-button {
    background: linear-gradient(135deg, rgba(244, 106, 106, 1), #8d1722);
    color: #fff;
    padding: 0.78rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(177, 30, 43, 0.25);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 6rem 6vw 4rem;
}

body[data-page="home"] .hero.hero-brand {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(680px, 78vh, 900px);
    padding: 8.5rem 6vw 7rem;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-strong);
}

body[data-page="home"] .hero.hero-brand::before,
body[data-page="home"] .hero.hero-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

body[data-page="home"] .hero.hero-brand::before {
    background: url("../images/hero1.png") center/cover no-repeat;
}

body[data-page="home"] .hero.hero-brand::after {
    background: linear-gradient(120deg, rgba(177, 30, 43, 0.8) 0%, rgba(31, 41, 55, 0.78) 60%, rgba(31, 41, 55, 0.35) 100%);
    z-index: -1;
}

.hero-content h1 {
    font-family: "Mosafin", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    letter-spacing: -0.01em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

body[data-page="home"] .hero.hero-brand .hero-content h1 {
    color: #fff;
}

.hero-content p {
    max-width: 540px;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

body[data-page="home"] .hero.hero-brand .hero-content p {
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    overflow: hidden;
}

.btn.primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.btn.primary:hover:not(:disabled)::before,
.btn.primary:focus:not(:disabled)::before {
    opacity: 1;
}

.btn.primary:hover:not(:disabled),
.btn.primary:focus:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn.primary:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background: var(--color-muted-light);
}

.btn.primary > * {
    position: relative;
    z-index: 1;
}

.button-loader {
    display: inline-flex;
    align-items: center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn.secondary {
    border: 2px solid rgba(244, 106, 106, 0.45);
    color: var(--color-neutral);
    background-color: #ffe3e5;
}

.btn.secondary:hover,
.btn.secondary:focus {
    background-color: var(--color-accent);
    color: var(--color-neutral);
    transform: translateY(-3px);
}

body[data-page="home"] .hero.hero-brand .btn.primary {
    background: linear-gradient(135deg, rgba(244, 106, 106, 0.95), #d43b48);
    color: #fff;
}

body[data-page="home"] .hero.hero-brand .btn.secondary {
    border-color: rgba(255, 255, 255, 0.65);
    background-color: transparent;
    color: #fff;
    backdrop-filter: blur(4px);
}

body[data-page="home"] .hero.hero-brand .btn.secondary:hover,
body[data-page="home"] .hero.hero-brand .btn.secondary:focus {
    background-color: #fff;
    color: var(--color-primary);
}

body[data-page="home"] .hero.hero-brand .hero-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0;
    list-style: none;
    max-width: 520px;
}

body[data-page="home"] .hero.hero-brand .hero-highlights li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
   
    padding: 0.9rem 1.15rem;
    display: grid;
    gap: 0.25rem;
    backdrop-filter: blur(6px);
}

body[data-page="home"] .hero.hero-brand .hero-highlights .highlight-title {
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

body[data-page="home"] .hero.hero-brand .hero-highlights li span:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

body[data-page="home"] .hero.hero-brand .hero-mascot {
    position: absolute;
    bottom: -40px;
    right: clamp(2rem, 6vw, 6rem);
    width: clamp(220px, 30vw, 320px);
    pointer-events: none;
    filter: drop-shadow(0 24px 40px rgba(31, 41, 55, 0.3));
    transform: rotate(3deg);
    animation: floatY 7s ease-in-out infinite;
}

.hero-media {
    position: relative;
}

.hero-image {
    width: min(100%, 540px);
    border-radius: 32px;
    box-shadow: var(--shadow-medium);
    transform: translateY(0);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-media:hover .hero-image {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.floating-card {
    position: absolute;
    right: -10%;
    bottom: 15%;
    background-color: var(--color-surface);
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(177, 30, 43, 0.1);
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card .card-title {
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.35rem;
}

.section {
    padding: 0 6vw;
}

@media (max-width: 720px) {
    .section {
        padding: 0 1.5rem;
    }
}

@media (max-width: 540px) {
    .section {
        padding: 0 1.25rem;
    }
}

.section-heading {
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading.center p {
    margin-inline: auto;
}

.section-heading h2 {
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    letter-spacing: -0.005em;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--color-muted);
}

.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.55rem 1.75rem;
    border-radius: 999px;
   
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: clamp(36px, 6vw, 56px);
    height: 2px;
    background: var(--color-primary);
    border-radius: 999px;
    opacity: 0.8;
}

.eyebrow-light {
    color: #fff;
}

.eyebrow-light::before,
.eyebrow-light::after {
    background: rgba(255, 255, 255, 0.85);
}

.section-heading .eyebrow {
    margin-inline: auto;
}

.highlight-grid .section-heading {
    max-width: 720px;
}

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

.feature-card {
    background: var(--color-surface);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-body {
    padding: 1.75rem;
    display: grid;
    gap: 0.9rem;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
}

.inline-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.inline-link-light {
    color: rgba(255, 255, 255, 0.92);
}

.inline-link-light::after {
    color: inherit;
}

.inline-link-light:hover {
    color: #fff;
}

.inline-link:hover::after {
    transform: translateX(4px);
}

.branch-content {
    display: grid;
    gap: 3rem;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 2.75rem);
}

.branch-card {
    background: var(--color-surface);
    border-radius: 30px;
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    border: 1px solid rgba(177, 30, 43, 0.08);
    box-shadow: 0 28px 60px rgba(31, 41, 55, 0.12);
    overflow: hidden;
    position: relative;
}

.branch-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 106, 106, 0.08), transparent 60%);
    pointer-events: none;
}

.branch-info {
    display: grid;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.branch-city {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(177, 30, 43, 0.25);
}

.branch-info h2 {
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.6rem;
    color: var(--color-neutral);
}

.branch-info p {
    color: var(--color-muted);
}

.branch-info ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    color: var(--color-neutral);
    font-weight: 600;
}

.branch-map {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 52px rgba(31, 41, 55, 0.2);
    isolation: isolate;
}

.branch-map::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.branch-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    filter: saturate(1.08) contrast(1.05);
}

.link-row {
    display: flex;
    gap: 1.25rem;
}

.faq-section {
    padding-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(177, 30, 43, 0.1);
    border: 1px solid rgba(177, 30, 43, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(177, 30, 43, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-neutral);
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.faq-question[aria-expanded="true"] {
    color: var(--color-primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(177, 30, 43, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-icon {
    background: rgba(177, 30, 43, 0.2);
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
}

.gallery {
    padding-bottom: 2rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

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

.mascot-cta {
    padding-block: 3rem;
}

.mascot-cta-card {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
    background: var(--color-primary);
    border-radius: 36px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.mascot-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    pointer-events: none;
}

.mascot-figure {
    width: clamp(200px, 28vw, 280px);
    justify-self: center;
    position: relative;
    z-index: 1;
}

.mascot-copy {
    display: grid;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.mascot-copy h2 {
    color: #fff;
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    letter-spacing: -0.006em;
}

.mascot-copy p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
}

.mascot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.mascot-cta-card .btn.primary {
    background: linear-gradient(135deg, rgba(244, 106, 106, 1), #d43b48);
    color: #fff;
}

.mascot-cta-card .btn.secondary {
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.mascot-cta-card .btn.secondary:hover,
.mascot-cta-card .btn.secondary:focus {
    background: #fff;
    color: var(--color-primary);
}

.mascot-note {
    display: grid;
    grid-template-columns: clamp(110px, 16vw, 150px) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    border-radius: 24px;
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.75rem 0;
    color: #fff;
}

.mascot-mini {
    width: 100%;
    filter: drop-shadow(0 14px 24px rgba(177, 30, 43, 0.2));
}

.mascot-note-copy {
    display: grid;
    gap: 0.5rem;
}

.mascot-note-copy h3 {
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.4rem;
}

.mascot-note-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.culture {
    padding-block: 3rem;
}

.culture-card {
    background: linear-gradient(130deg, rgba(177, 30, 43, 0.95), rgba(218, 37, 37, 0.82));
    border-radius: 36px;
    padding: clamp(2.5rem, 5vw, 3.75rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 70px rgba(177, 30, 43, 0.28);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.culture-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.22), transparent 58%), radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.18), transparent 62%);
    pointer-events: none;
}

.culture-heading {
    text-align: center;
    display: grid;
    gap: 1rem;
}

.culture-heading h2 {
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    color: #fff;
    letter-spacing: -0.004em;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.culture-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.culture-number {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.9rem;
    background: #fff;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.culture-item h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.culture-item p {
    color: rgba(255, 255, 255, 0.85);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(15, 18, 27, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
}

.lightbox.visible {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
}

.lightbox-content {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    max-width: min(90vw, 720px);
    width: 100%;
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(177, 30, 43, 0.12);
    color: var(--color-primary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: var(--color-primary);
    color: #fff;
}

.lightbox-download {
    width: fit-content;
}

.page-hero {
    position: relative;
    padding: 3.5rem 6vw 2.25rem;
    display: grid;
    gap: 1.25rem;
    background: linear-gradient(120deg, rgba(177, 30, 43, 0.95) 0%, rgb(140 64 64) 55%, rgb(131 0 0 / 61%) 100%);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.14);
    color: #fff;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero.png") right 10% bottom/380px auto no-repeat;
    opacity: 0.18;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateX(8%) scale(1.05);
    animation: heroDrift 12s ease-in-out infinite alternate;
}

.page-hero h1 {
    font-family: "Mosafin", sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    letter-spacing: -0.01em;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.page-hero p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero .breadcrumb a {
    color: #fff;
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.68);
}

.branches-hero {
    min-height: clamp(360px, 48vh, 440px);
}

.branches-hero::after {
    background-position: right 12% bottom;
}

@keyframes heroDrift {
    0% {
        transform: translateX(6%) scale(1.03);
    }
    100% {
        transform: translateX(10%) scale(1.07);
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(31, 41, 55, 0.55);
    padding: 0.2rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: var(--color-primary);
    font-weight: 700;
}

.breadcrumb span {
    color: rgba(31, 41, 55, 0.45);
    font-weight: 500;
    letter-spacing: 0;
}

.page-content {
    width: min(100% - 12vw, var(--page-max-width));
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.25rem;
    min-height: 200px;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid rgba(177, 30, 43, 0.08);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(177, 30, 43, 0.1), rgba(244, 106, 106, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-slow);
    background: linear-gradient(135deg, rgba(177, 30, 43, 0.05), rgba(244, 106, 106, 0.02));
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.product-card:active {
    transform: translateY(-8px) scale(1.01);
}

.card-body {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    z-index: 0;
    min-height: 200px; /* Sabit minimum yükseklik */
}

.card-body h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-neutral);
    line-height: var(--line-height-tight);
    margin: 0;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.card-body p {
    color: var(--color-muted);
    line-height: var(--line-height-relaxed);
    min-height: 3.2em;
    font-size: var(--font-size-sm);
    margin: 0;
    flex-grow: 1; /* Açıklama alanını genişlet */
}

/* Card footer - Tag ve Price için wrapper - GEÇİCİ OLARAK KALDIRILDI */
.card-footer {
    display: none !important;
}

/* Tag ve Price için wrapper oluştur */
.card-body .tag {
    margin: 0; /* Margin'leri sıfırla */
    flex-shrink: 0; /* Tag'in küçülmesini engelle */
    display: none; /* Geçici olarak gizlendi */
}

.product-price {
    margin: 0; /* Margin'leri sıfırla */
    flex-shrink: 0; /* Price'ın küçülmesini engelle */
    display: none !important; /* Geçici olarak gizlendi */
}

.product-price .price-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    white-space: nowrap; /* Fiyatın kırılmamasını sağla */
    display: none !important; /* Geçici olarak gizlendi */
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(177, 30, 43, 0.1), rgba(244, 106, 106, 0.08));
    color: var(--color-primary);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(177, 30, 43, 0.15);
    transition: var(--transition-fast);
}

.tag:hover {
    background: linear-gradient(135deg, rgba(177, 30, 43, 0.15), rgba(244, 106, 106, 0.12));
    transform: translateY(-1px);
    border-color: rgba(177, 30, 43, 0.25);
}

/* Legacy tag style for backward compatibility */
.tag.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    font-size: 0.8rem;
    font-weight: 700;
}

.info-block {
    background: var(--color-surface);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 2.75rem;
    border: 1px solid rgba(177, 30, 43, 0.08);
    display: grid;
    gap: 1.25rem;
}

.info-block h2 {
    font-family: "Mosafin", sans-serif;
    font-weight: 700;
    letter-spacing: -0.004em;
    color: var(--color-primary);
}

.info-block ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.info-block ul li::before {
    content: "•";
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.franchise-form,
.contact-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(177, 30, 43, 0.08);
}

.franchise-form {
    width: 100%;
}

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

.form-row.full {
    grid-column: 1 / -1;
}

.form-row label {
    font-weight: 600;
    color: var(--color-neutral);
}

.form-row input,
.form-row textarea,
.form-row select {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid rgba(31, 41, 55, 0.12);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    font-size: var(--font-size-base);
    background: var(--color-surface);
    color: var(--color-neutral);
    font-family: inherit;
    width: 100%;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(177, 30, 43, 0.12), 0 4px 12px rgba(177, 30, 43, 0.08);
    outline: none;
    background: #fff;
}

.form-row input:hover:not(:focus):not(.error),
.form-row textarea:hover:not(:focus):not(.error),
.form-row select:hover:not(:focus):not(.error) {
    border-color: rgba(177, 30, 43, 0.25);
}

.form-row.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.form-row.checkbox:hover {
    background: rgba(234, 88, 12, 0.02);
}

.form-row.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-row.checkbox label {
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.form-row.checkbox input.error + label {
    color: var(--color-validation);
}

/* Field-level error messages */
.field-error {
    color: var(--color-validation);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    animation: slideDown 0.3s ease;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-validation-light);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-validation);
}

.field-error::before {
    content: '⚠';
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input error state */
.form-row input.error,
.form-row textarea.error,
.form-row select.error {
    border-color: var(--color-validation-border);
    background-color: var(--color-validation-light);
    border-width: 2px;
}

.form-row input.error:focus,
.form-row textarea.error:focus,
.form-row select.error:focus {
    border-color: var(--color-validation);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12), 0 4px 12px rgba(234, 88, 12, 0.08);
    background-color: #fff;
}

.form-row.checkbox input.error {
    border-color: var(--color-validation-border);
    outline: 2px solid rgba(234, 88, 12, 0.2);
    outline-offset: 2px;
}

/* Input success state */
.form-row input.success,
.form-row textarea.success,
.form-row select.success {
    border-color: #10b981;
}

.form-row input.success:focus,
.form-row textarea.success:focus,
.form-row select.success:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

/* Required field indicator */
.form-row label:has(+ input[required])::after,
.form-row label:has(+ textarea[required])::after,
.form-row label:has(+ select[required])::after {
    content: ' *';
    color: var(--color-validation);
    font-weight: 700;
}

.form-success {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(244, 106, 106, 0.18);
    color: var(--color-primary);
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-success.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-error input:invalid,
.form-error textarea:invalid,
.form-error select:invalid {
    border-color: rgba(177, 30, 43, 0.7);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(177, 30, 43, 0.14), rgba(177, 30, 43, 0.06));
    border-radius: 24px;
    padding: 1.9rem;
    display: grid;
    gap: 0.75rem;
    border: 1px solid rgba(177, 30, 43, 0.12);
    box-shadow: var(--shadow-soft);
}

.value-card h3 {
    color: var(--color-neutral);
}

.value-card-primary {
    background: linear-gradient(135deg, rgba(177, 30, 43, 0.92), rgba(177, 30, 43, 0.78));
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 32px 60px rgba(177, 30, 43, 0.28);
}

.value-card-primary h3 {
    color: #fff;
}

.value-card-primary p {
    color: rgba(255, 255, 255, 0.94);
}

.franchise-showcase {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(2.75rem, 5vw, 3.25rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    background: var(--color-primary);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(31, 41, 55, 0.14);
}

.franchise-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 55%), radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.franchise-showcase .showcase-image,
.franchise-showcase .showcase-copy {
    position: relative;
    z-index: 1;
    flex: 1 1 320px;
}

.franchise-showcase .showcase-image {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
}

.showcase-frame {
    position: relative;
    width: clamp(280px, 32vw, 360px);
    aspect-ratio: 3 / 4;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 38px 70px rgba(31, 41, 55, 0.35);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.showcase-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.3) 0%, transparent 65%);
    pointer-events: none;
}

.showcase-frame img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transform: translate(-5%, 4%);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    background: rgba(177, 30, 43, 0.9);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    box-shadow: 0 16px 32px rgba(177, 30, 43, 0.25);
}

.showcase-copy {
    display: grid;
    gap: 1.2rem;
    justify-items: flex-start;
    color: #fff;
}

.showcase-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.showcase-highlights {
    display: grid;
    gap: 1rem;
    width: min(460px, 100%);
}

.showcase-highlights .highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    align-items: start;
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.showcase-highlights h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.showcase-highlights p {
    color: rgba(255, 255, 255, 0.78);
}


.showcase-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.showcase-list li {
    position: relative;
    padding-left: 1.6rem;
    color: #fff;
    font-weight: 500;
}

.showcase-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 0.3rem 0.3rem 0.3rem 0;
    background: var(--color-primary);
    transform: rotate(45deg);
    box-shadow: 0 6px 12px rgba(177, 30, 43, 0.25);
}

.franchise-showcase.reverse .showcase-image {
    order: 2;
}

.franchise-showcase.reverse .showcase-copy {
    order: 1;
}

.franchise-form.showcase-form {
    margin-top: 1.25rem;
    background: var(--color-surface);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(177, 30, 43, 0.08);
    box-shadow: var(--shadow-soft);
    padding: clamp(2rem, 4vw, 2.6rem);
    backdrop-filter: none;
    justify-self: flex-start;
    width: min(520px, 100%);
}

.franchise-form.showcase-form label {
    color: var(--color-neutral);
    font-weight: 600;
}

.franchise-form.showcase-form input,
.franchise-form.showcase-form textarea,
.franchise-form.showcase-form select {
    background: var(--color-surface);
    color: var(--color-neutral);
    border: 2px solid rgba(31, 41, 55, 0.12);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.franchise-form.showcase-form input::placeholder,
.franchise-form.showcase-form textarea::placeholder {
    color: var(--color-muted-light);
}

.franchise-form.showcase-form select {
    color: var(--color-neutral);
}

.franchise-form.showcase-form input:hover:not(:focus):not(.error),
.franchise-form.showcase-form textarea:hover:not(:focus):not(.error),
.franchise-form.showcase-form select:hover:not(:focus):not(.error) {
    border-color: rgba(177, 30, 43, 0.25);
}

.franchise-form.showcase-form input:focus,
.franchise-form.showcase-form textarea:focus,
.franchise-form.showcase-form select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(177, 30, 43, 0.12), 0 4px 12px rgba(177, 30, 43, 0.08);
    background: #fff;
}

.franchise-form.showcase-form input.error,
.franchise-form.showcase-form textarea.error,
.franchise-form.showcase-form select.error {
    border-color: var(--color-validation-border);
    background-color: var(--color-validation-light);
}

.franchise-form.showcase-form input.error:focus,
.franchise-form.showcase-form textarea.error:focus,
.franchise-form.showcase-form select.error:focus {
    border-color: var(--color-validation);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12), 0 4px 12px rgba(234, 88, 12, 0.08);
}

.franchise-form.showcase-form .btn.primary {
    justify-self: flex-start;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.franchise-form.showcase-form .btn.primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.franchise-form.showcase-form .btn.primary:hover:not(:disabled)::before {
    opacity: 1;
}

.franchise-form.showcase-form .btn.primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.franchise-form.showcase-form .field-error {
    color: var(--color-validation);
    background: var(--color-validation-light);
    border-left: 3px solid var(--color-validation);
}

.franchise-form.showcase-form .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.franchise-form.showcase-form .form-actions .inline-link-light {
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
}

.franchise-form.showcase-form .form-actions .inline-link-light:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.stepper.compact {
    gap: 1.25rem;
}

.stepper.compact .step {
    padding-left: 2.75rem;
}

.stepper.compact .step::before {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.9rem;
    box-shadow: 0 12px 28px rgba(177, 30, 43, 0.12);
}

.stepper {
    counter-reset: steps;
    display: grid;
    gap: 1.5rem;
}

.step {
    position: relative;
    padding-left: 3.5rem;
}

.step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.contact-card p {
    color: var(--color-muted);
}

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

.contact-item {
    display: grid;
    gap: 0.35rem;
}

.contact-item .label {
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.media-block {
    background: var(--color-surface);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.media-block.media-block-small {
    max-width: clamp(220px, 32vw, 340px);
    justify-self: center;
    padding: 1.25rem;
}

.media-block.media-block-small img {
    object-fit: contain;
    height: auto;
}

.site-footer {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem 6vw 3rem;
    background-color: var(--color-primary);
    color: #f5f5f5;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

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

.scroll-mascot-container {
    position: fixed;
    right: 1.2rem;
    bottom: 7rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    max-width: 280px;
}

.scroll-mascot-container.visible {
    opacity: 1;
    pointer-events: auto;
}

.mascot-message {
  /*  background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 45px rgba(177, 30, 43, 0.25);
    border: 1px solid rgba(177, 30, 43, 0.15); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: floatY 6s ease-in-out infinite;
}

.mascot-scroll {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(177, 30, 43, 0.2));
    animation: tilt 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes tilt {
    0%, 100% {
        transform: rotate(-5deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

.scroll-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-6px);
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.text-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-animate-delayed {
    transition-delay: 0.1s;
}

.text-animate-delayed-2 {
    transition-delay: 0.2s;
}

.text-animate-delayed-3 {
    transition-delay: 0.3s;
}

@media (max-width: 960px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .top-bar {
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85vw, 320px);
        height: 100vh;
        background: rgba(255, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -4px 0 24px rgba(31, 41, 55, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        background: rgba(177, 30, 43, 0.1);
        font-size: 1.05rem;
        text-align: left;
        transition: all 0.3s ease;
        color: var(--color-neutral);
        font-weight: 600;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus {
        background: rgba(177, 30, 43, 0.2);
        color: var(--color-primary);
        transform: translateX(4px);
    }

    .main-nav .nav-link.active {
        background: var(--color-primary);
        color: #fff;
        box-shadow: 0 4px 12px rgba(177, 30, 43, 0.25);
        border-bottom: 1px solid #f8f1d5;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 0.65rem 1.2rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .top-bar > .cta-button {
        display: none;
    }

    .main-nav .mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(244, 106, 106, 1), #8d1722);
        color: #fff;
        box-shadow: 0 4px 12px rgba(177, 30, 43, 0.25);
        transition: all 0.3s ease;
    }

    .main-nav .mobile-cta:hover,
    .main-nav .mobile-cta:focus {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(177, 30, 43, 0.35);
        background: linear-gradient(135deg, rgba(244, 106, 106, 1), #a01a26);
    }

    .logo-group {
        flex-shrink: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(15, 18, 27, 0.4);
        backdrop-filter: blur(4px);
        z-index: 98;
        pointer-events: auto;
    }

    .page-hero {
        padding: 3.5rem 1.75rem 2.25rem;
        border-radius: 0 0 22px 22px;
    }

    .branches-hero {
        min-height: auto;
        padding-bottom: 2.75rem;
    }

    .branches-hero::after {
        background-position: right -20% bottom;
        background-size: 300px auto;
        opacity: 0.16;
    }

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

    .branch-map iframe {
        height: 220px;
    }
}


@media (max-width: 720px) {
    .top-bar {
        padding: 0.9rem 1.25rem;
    }

    .logo {
        width: clamp(80px, 16vw, 95px);
        height: clamp(80px, 16vw, 95px);
        margin-top: -12px;
        margin-bottom: -12px;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 0.6rem 1.1rem;
    }

    .hero {
        padding: 4.5rem 1.5rem 3rem;
    }

    body[data-page="home"] .hero.hero-brand {
        min-height: min(640px, 92vh);
        padding-inline: 1.5rem;
        padding-bottom: 6rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 3.2rem);
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-media {
        order: -1;
    }

    .floating-card {
        right: auto;
        left: 8%;
        bottom: -12%;
        padding: 1.25rem 1.5rem;
        font-size: 0.9rem;
    }

    body[data-page="home"] .hero.hero-brand .hero-mascot {
        right: 1.5rem;
        width: clamp(180px, 38vw, 240px);
        bottom: -30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        border-radius: 20px;
    }

    .feature-card img {
        height: 280px;
    }

    .feature-body {
        padding: 1.5rem;
    }

    .franchise-showcase {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .showcase-frame {
        width: 100%;
        max-width: 280px;
    }

    .franchise-showcase .showcase-copy {
        justify-items: center;
        gap: 1rem;
    }

    .franchise-showcase .showcase-copy h2 {
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    .franchise-showcase .showcase-list {
        width: 100%;
        text-align: left;
        gap: 0.5rem;
    }

    .franchise-showcase .showcase-list li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }

    .franchise-showcase.reverse .showcase-image {
        order: 1;
    }

    .franchise-form.showcase-form {
        justify-self: center;
        width: 100%;
        padding: 1.75rem 1.5rem;
    }

    .franchise-form.showcase-form .btn.primary {
        justify-self: center;
        width: 100%;
    }

    .value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .faq-container {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 1.3rem;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item img {
        height: 240px;
        object-fit: cover;
    }

    .mascot-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .mascot-figure {
        width: clamp(160px, 35vw, 220px);
    }

    .mascot-copy h2 {
        font-size: clamp(1.75rem, 6vw, 2.4rem);
    }

    .mascot-copy p {
        font-size: 0.9rem;
    }

    .mascot-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .mascot-actions .btn {
        width: 100%;
    }

    .mascot-note {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }

    .mascot-mini {
        max-width: 120px;
        margin: 0 auto;
    }

    .mascot-note-copy {
        justify-items: center;
    }

    .mascot-note-copy h3 {
        font-size: 1.2rem;
    }

    .mascot-note-copy p {
        font-size: 0.9rem;
    }

    .culture-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .culture-heading h2 {
        font-size: clamp(1.75rem, 6vw, 2.3rem);
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .culture-item {
        padding: 1.25rem 1.4rem;
        border-radius: 20px;
    }

    .culture-item h3 {
        font-size: 1.05rem;
    }

    .culture-item p {
        font-size: 0.9rem;
    }

    .franchise-form,
    .contact-card,
    .info-block {
        padding: 1.75rem 1.5rem;
        border-radius: 24px;
    }

    .form-row {
        gap: 0.4rem;
    }

    .form-row input,
    .form-row textarea,
    .form-row select {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }

    .form-row label {
        font-size: 0.95rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-item {
        gap: 0.3rem;
    }

    .contact-item .label {
        font-size: 0.7rem;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .social-links a {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 3.5rem 1.75rem 2.25rem;
        border-radius: 0 0 22px 22px;
    }

    .page-content {
        width: min(100% - 3.5rem, var(--page-max-width));
    }

    .site-footer {
        justify-content: center;
        text-align: center;
    }

    .branches-hero {
        padding: 2.5rem 1.25rem 2rem;
    }

    .branches-hero::after {
        background-size: 240px auto;
        background-position: right -35% bottom 12%;
        opacity: 0.1;
    }

    .branch-grid {
        gap: 1.75rem;
    }

    .branch-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .branch-info h2 {
        font-size: 1.4rem;
    }

    .branch-info p {
        font-size: 0.9rem;
    }

    .branch-info ul {
        font-size: 0.9rem;
    }

    .branch-map {
        border-radius: 18px;
    }

    .branch-map iframe {
        height: 200px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .scroll-mascot-container {
        right: 1.25rem;
        bottom: 6rem;
        max-width: 240px;
    }

    .mascot-message {
        padding: 0.75rem;
    }

    .mascot-scroll {
        width: 70px;
        height: 70px;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        right: 1.25rem;
        bottom: 1.25rem;
        font-size: 1.3rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .eyebrow {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-body h3 {
        font-size: 1.2rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 540px) {
    .top-bar {
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-toggle span {
        height: 2.5px;
    }

    .top-bar > .cta-button {
        display: none;
    }

    .main-nav .mobile-cta {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }

    .logo {
        width: clamp(80px, 16vw, 95px);
        height: clamp(80px, 16vw, 95px);
        margin-top: -12px;
        margin-bottom: -12px;
    }

    .hero,
    .section {
        padding: 0 1.25rem;
    }

    .hero {
        padding-top: 3.5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    body[data-page="home"] .hero.hero-brand {
        padding-inline: 1.25rem;
        padding-top: 5.5rem;
        padding-bottom: 6rem;
        min-height: 580px;
    }

    body[data-page="home"] .hero.hero-brand .hero-mascot {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(1.85rem, 8vw, 2.8rem);
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .product-card img {
        height: 200px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-hero {
        padding: 2.75rem 1.25rem 1.75rem;
        border-radius: 0 0 18px 18px;
    }

    .page-hero h1 {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .page-content {
        width: min(100% - 2.5rem, var(--page-max-width));
        gap: 2rem;
    }

    .section-heading h2 {
        font-size: clamp(1.75rem, 6vw, 2.4rem);
    }

    .section-heading p {
        font-size: 0.9rem;
    }

    .branches-hero {
        padding: 3rem 1.5rem 2.1rem;
    }

    .branches-hero::after {
        background-size: 220px auto;
        background-position: right -40% bottom 18%;
        opacity: 0.12;
    }

    .branch-card {
        padding: 1.5rem;
    }

    .branch-map iframe {
        height: 190px;
    }
}
