﻿:root {
    --brand-yellow: #FFD700; 
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-green: #1D7C33;
    --site-bg: #FFFFFF;
    --card-border: rgba(255, 255, 255, 0.8);
    --text-dark: #222222; 
    --text-muted: #555555; 
    --btn-bg: var(--brand-yellow);
    --btn-text: var(--text-dark);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--site-bg);
    color: var(--text-muted);
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
}

.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 60px 0; 
}

.about-section {
    background-color: #FFFFFF; 
    padding: 100px 5%;
}

.locations-section {
    background: linear-gradient(135deg, #F4F5F7 0%, #E3E6E8 100%);
    padding: 100px 5%;
    border-top: 1px solid #EAEAEA; 
}

.glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}

.logo-lockup { display: flex; align-items: center; }
.brand-logo-img { height: 110px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--brand-yellow); }

.nav-links .b2b-link {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 10px 24px;
    border-radius: 50px; 
    font-weight: 600;
    margin-left: 30px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.nav-links .b2b-link:hover { background: #e6c200; }

.hamburger {
    display: none;
    font-size: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px 10px;
    line-height: 1;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.bento-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover, .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
    border: 1px solid rgba(255, 255, 255, 1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.secondary-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 15px rgba(255, 215, 0, 0.2);
    font-size: 5rem; 
    line-height: 1;
    margin-bottom: 10px;
}

.primary-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 500px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.6)), url('images/about.jpg') center/cover no-repeat; 
    border: none;
}
.primary-card h1, .primary-card p { color: var(--brand-white); }

.secondary-card, .tertiary-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

h1 { font-size: 3.2rem; margin: 15px 0; line-height: 1.2; font-weight: 800; color: var(--brand-white);}
h2 { font-size: 2rem; margin: 0 0 15px 0; font-weight: 700; color: var(--text-dark);}
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 5px; color: var(--text-dark);}
.stat-number { font-size: 4rem; margin: 0; font-weight: 800; color: var(--brand-yellow); }

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-yellow);
}
.section-header.align-left { text-align: left; margin-bottom: 30px; }
.section-header.align-left h2::after { left: 0; transform: none; }

.badge {
    background-color: var(--brand-green);
    color: var(--brand-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 20px;
    transition: all 0.2s;
}
.primary-btn { 
    background: var(--btn-bg); 
    color: var(--btn-text); 
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}
.primary-btn:hover { background: #e6c200; transform: translateY(-2px); }

.outline-btn { border: 2px solid var(--text-dark); color: var(--text-dark); }
.outline-btn:hover { background: var(--text-dark); color: var(--brand-white); }

.about-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-image-wrapper { flex: 1; }
.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.about-content { flex: 1; }
.about-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.about-content strong { color: var(--text-dark); }

.locations-container { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.location-card {
    flex: 1 1 280px;
    max-width: 320px;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.loc-city {
    background-color: var(--brand-yellow); 
    color: var(--text-dark);               
    display: inline-block;                 
    padding: 6px 18px;                     
    border-radius: 50px;                   
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;                   
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3); 
}

.loc-status {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 200px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    overflow: hidden;
    background-color: rgba(0,0,0,0.03); 
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--brand-white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    opacity: 0; 
}

.location-card:hover .slide-nav { opacity: 1; }
.slide-nav:hover { background: var(--brand-yellow); color: var(--brand-black); }
.prev-slide { left: 8px; }
.next-slide { right: 8px; }

.panda-divider {
    width: 100%;
    margin-top: -65px; 
    margin-bottom: -45px; 
    position: relative;
    z-index: 10; 
    pointer-events: none;
}
.panda-divider.align-right { text-align: right; padding-right: 15%; }
.panda-divider.align-left { text-align: left; padding-left: 15%; }

.panda-mascot {
    width: 130px; 
    height: auto;
    filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.12));
}

.franchise-section {
    background-color: #FFFFFF;
    padding: 100px 5%;
    border-top: 1px solid #EAEAEA;
}

.franchise-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.franchise-content { flex: 1.2; }
.franchise-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.franchise-content strong { color: var(--text-dark); }
.franchise-image-wrapper { flex: 1; display: flex; justify-content: center; }

.image-glass-card {
    background: var(--brand-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}
.image-glass-card:hover { transform: translateY(-5px); }
.franchise-image { width: 100%; max-width: 400px; height: auto; display: block; }

.site-footer {
    background-image: url('images/bg.jpg');
    background-repeat: repeat; 
    background-size: auto; 
    background-position: top left; 
    background-color: var(--brand-yellow);
    color: var(--text-dark);
    position: relative;
    padding-top: 60px;
    margin-top: 0px;
}

.footer-torn-edge {
    position: absolute;
    top: -20px; 
    left: 0;
    width: 100%;
    height: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.15));
}

.footer-col h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.links-col {
    border-left: 2px solid rgba(0, 0, 0, 0.1); 
    padding-left: 50px;
}
.links-col ul { list-style: none; padding: 0; }
.links-col li { margin-bottom: 15px; }
.links-col a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.2s, color 0.2s;
    display: inline-block;
}
.links-col a:hover {
    color: #000000;
    transform: translateX(5px);
}

.contact-col h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 800;
}
.contact-col p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}
.company-name { font-weight: 800; color: var(--text-dark) !important; }

.contact-methods { margin-top: 25px; }
.contact-row {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.2s, color 0.2s;
}
.contact-row:hover {
    color: #000000;
    transform: translateX(5px);
}
.contact-row .icon { font-size: 1.4rem; margin-right: 15px; }

.footer-bottom {
    border-top: 2px dashed rgba(0, 0, 0, 0.2); 
    text-align: center;
    padding: 25px 5%;
    margin-top: 30px;
    background-color: #FFFFFF;
}
.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .hero-bento { grid-template-columns: repeat(2, 1fr); }
    .primary-card { grid-column: 1 / -1; }
    .secondary-card, .tertiary-card { grid-column: span 1; }
    
    .about-container, .franchise-container { 
        flex-direction: column; 
        gap: 40px; 
    }
    
    .about-content, .franchise-content {
        text-align: center;
    }
    
    .section-header.align-left { text-align: center; }
    .section-header.align-left h2::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .franchise-container { flex-direction: column-reverse; }
    .franchise-image-wrapper { width: 100%; }
    .image-glass-card { max-width: 500px; margin: 0 auto; }
    
    .panda-divider.align-right { padding-right: 8%; }
    .panda-divider.align-left { padding-left: 8%; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .links-col {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        padding-top: 40px;
    }
    .contact-row { justify-content: center; }
}

@media (max-width: 768px) {
    .hamburger { 
        display: block; 
    }
    
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--brand-white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-top: 1px solid #EAEAEA;
    }
    
    .nav-links.active { display: flex !important; }
    .nav-links a { margin: 15px 0; text-align: center; }
    .nav-links .b2b-link { margin: 15px auto; display: inline-block; }

    .hero-bento { grid-template-columns: 1fr; }
    .secondary-card, .tertiary-card { grid-column: 1 / -1; }
    h1 { font-size: 2.5rem; }

    .franchise-content .cta-btn {
        display: inline-block;
        margin: 20px auto 0;
    }

    .panda-divider {
        margin-top: -50px;
        margin-bottom: -35px;
    }
    .panda-divider.align-right { padding-right: 5%; }
    .panda-divider.align-left { padding-left: 5%; }
    .panda-mascot { width: 100px; }
}

.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.scroll-btn {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    font-size: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-btn:hover {
    background-color: var(--brand-black);
    color: var(--brand-white);
    transform: translateY(-5px);
}

.wa-btn {
    background-color: #25D366;
    animation: pulse-animation 2s infinite; 
}

.wa-btn:hover {
    background-color: #1EBE5C;
    transform: translateY(-5px);
    animation: none;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-action-container {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .scroll-btn { font-size: 1.5rem; }
    .wa-btn svg { width: 24px; height: 24px; }
}

.page-hero {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.5)), url('images/about.jpg') center/cover no-repeat;
    padding: 120px 5%;
    text-align: center;
    border-bottom: 4px solid var(--brand-yellow);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-content p {
    color: var(--brand-white);
    font-size: 1.2rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .page-hero { padding: 80px 5%; }
    .hero-bento[style*="grid-template-columns: 1fr 1fr;"] {
        grid-template-columns: 1fr !important;
    }
}
.infographic-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
    border: 8px solid #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.infographic-img:hover {
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); 
    border-color: var(--brand-yellow); 
}

@media (min-width: 1001px) {
    .reverse-on-desktop {
        flex-direction: row-reverse;
    }
}

.dark-ecosystem-section {
    background-color: #222222;
    color: #EAEAEA;
    padding: 100px 5%;
    position: relative;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.ecosystem-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-checks {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.ecosystem-checks li {
    margin-bottom: 20px;
    color: var(--brand-white);
}

.ecosystem-more {
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ecosystem-more p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.numbers-list {
    list-style: none;
    padding: 0;
}

.numbers-list li {
    background: var(--brand-white);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--brand-yellow);
    transition: transform 0.2s ease;
}

.numbers-list li:hover {
    transform: translateX(5px);
}

.numbers-list li strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.numbers-list li span {
    color: var(--text-muted);
    font-weight: 600;
}

.cta-glass-card {
    background: var(--brand-white);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #EAEAEA;
}

@media (max-width: 768px) {
    .numbers-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ecosystem-more {
        padding: 25px 20px;
    }
    
    .cta-glass-card {
        padding: 40px 20px;
    }
}

.contact-split-layout {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.panda-contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background-color: #F8F9FA;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-control::placeholder {
    color: #999999;
}

textarea.form-control {
    resize: vertical;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.outlets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.outlet-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #F0F0F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 250px; 
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--brand-yellow);
}

.outlet-card h4 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlet-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 800;
    margin: 0;
}

@media (max-width: 900px) {
    .contact-split-layout {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info-wrapper {
        padding-left: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .outlets-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

.outlet-call-btn {
    padding: 8px 24px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.panda-divider.align-right .panda-mascot {
    transform: translateX(150px) rotate(15deg);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.panda-divider.align-left .panda-mascot {
    transform: translateX(-150px) rotate(-15deg);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.panda-divider.align-center .panda-mascot {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.panda-divider.in-view .panda-mascot {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
}

body {
    overflow-x: hidden;
}

.reason-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .reason-img {
        height: 140px;
    }
}

.franchise-reason-card {
    justify-content: flex-start !important;
}