/* 기본 폰트 및 설정 */
body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.6;
    color: #333;
}

/* 헤더 구조 */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 16px;
}

.logo {
    margin-bottom: 0.1rem;
}

.logo img {
    height: 100px;
}

.menu-toggle:focus {
    outline: none;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #FF5722;
    transform: translateY(-2px);
}

.contact-btn {
    background-color: #FF3D00;
    color: #fff !important;
    padding: 5px 30px;
    border-radius: 0 15px 0 15px;
}

.menu-toggle,
.menu-close {
    background: none;
    border: none;
    font-size: 28px;
    display: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle {
    left: 16px;
}

.menu-close {
    right: 16px;
}

/* 메인 */

.hero-inner {
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    background-color: rgba(255, 255, 255, 0.7);
    color: #d32f2f;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.branch-info {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.out-branch-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    /*  내부 정렬을 위해 flex 사용 */
    align-items: center;
    justify-content: center;
    margin-left: -20px;
}

.branch-circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -20px;
}

.branch-circle.center {
    background-color: rgba(255, 244, 170, 0.7);
    padding: 20px 15px;
    box-sizing: border-box;
    margin-left: -20px;
}

.branch-circle:first-child {
    margin-left: 0;
}

.branch-circle strong {
    color: #ff3d00;
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: bold;
}

.branch-circle span.sub_info {
    letter-spacing: -0.5px;
    color: #333;
    line-height: 1.5;
    word-break: keep-all;
    font-weight: 500;
}

/*브랜드 소개*/
.desktop-only {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 350;
}

.desktop-only strong {
    font-size: 23px;
}

.featured {
    padding: 100px 0;
    background-color: #fff8f5;
}

.featured .title-primary {
    color: #ff5722;
    font-size: 14px;
    letter-spacing: 1px;
}

.featured .title-blue {
    font-size: 31px;
    color: #26264b;
}

.featured .title-blue span {
    color: #ff5722;
    display: block;
    margin-top: 6px;
}

.featured p {
    font-size: 16px;

    color: #000000;

}

.featured p strong {
    font-weight: 700;
}

.featured .btn-wrap {
    margin-top: 50px;
    display: flex;
    gap: 12px;
}

.featured .btn-orange {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 0 15px 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

.featured .btn-orange:hover {
    background-color: #e2471a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.featured .btn-border-orange {
    border: 2px solid #ff5722;
    color: #ff5722;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 0 15px 0 15px;
    background: none;
    text-decoration: none;
    transition: 0.3s;
}

.featured .btn-border-orange:hover {
    background-color: #ff5722;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.featured-img {
    position: relative;
    height: auto;
    display: inline-block;
}

.featured-big {
    max-width: 100%;
    display: block;
    padding-top: 70px;
}

.featured-small {
    position: absolute;
    bottom: -1px;
    left: -82px;
    width: 244px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 16px;
}

.mobile-only {
    display: none;
}

/*브랜드 소개 END*/

/*브랜드 이야기 */

.trust {
    padding: 100px 0;
    background: #1a1a1a url('../img/bg_fa4.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.trust .title {
    padding-top: 0;
    margin-bottom: 31px;
}

.trust .title-primary {
    font-size: 14px;
    color: #ff5722;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.trust .title h1 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
}

.trust .highlight {
    color: #ff5722;
    font-size: 40px;
}

.trust p {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust p strong {
    font-weight: 600;
    color: #fff;
    font-size: 23px;
}

/*브랜드 이야기 END*/
/*메뉴소개*/
.menu-section .container {
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
}

.menu-section {
    background-color: #f2e7dd;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.menu-label {
    color: #ff3d00;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.menu-section h2 {
    font-size: 30px;
    color: #26264b;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
}

/* 슬라이드 카드 */
.menu-swiper .swiper-slide {
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.menu-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-swiper .swiper-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 20px;
    border: 10px solid #ffffff;
}

/* 텍스트 */
.menu-swiper .swiper-slide h5 {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 6px;
}

.menu-swiper .swiper-slide p {
    font-size: 15px;
    color: #333333;
    line-height: 1.2;
    font-weight: 500;
}

/* 좌우 화살표 밖으로 완전히 이동 */
.swiper-button-prev,
.swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

/* 반응형에서 화살표 안쪽으로 */
@media (max-width: 768px) {
    .hero .slide-content h2 {
        font-size: 22px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .menu-swiper .swiper-slide img {
        height: 200px;
    }

    .trust .title h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .trust p {
        font-size: 16px;
        line-height: 1.4;
    }

    .trust p:last-of-type {
        padding-bottom: 27px;
    }

}

/*메뉴 소개 END*/
/* 히스토리 */
.history-section {
    padding: 100px 20px;
    background-color: #fff;
}

.history-section .container {
    padding: 0;
}

.history-section .history-label {
    color: #ff3d00;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-align: center;
}

.history-section h2 {
    text-align: center;
    font-size: 31px;
    margin-bottom: 60px;
    line-height: 1.1;
}

.subtitle {
    color: #ff5a00;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.history-section .main_title {
    color: #26264b;
    font-weight: 700;

}

.highlight {
    color: #ff5a00;
}

/* 상하 줄 구성 */
.history-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.history-row.reverse {
    flex-direction: row;
}

.history-img {
    flex: 1;
}

.history-img img {
    width: 100%;
    border-radius: 10px;
}

/* 텍스트 블록 그룹 */
.history-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px 30px;
}

/* 타임라인 한 줄 */
.timeline-block {
    display: flex;
    align-items: center;
    padding-left: 21px;
}

/* 왼쪽 동그라미 + 선 */
.timeline-left {
    width: 100px;
    position: relative;
}


.circle-line {
    position: relative;
    display: flex;
    align-items: center;
}


.circle-line::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 16px;
    height: 16px;
    border: 4px solid #ccc;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 6px;
}

.circle-line::after {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 36px;
    height: 2px;
    background-color: #ccc;
    transform: translateY(-50%);
    z-index: 1;
}

.circle-year {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 36px;
}

.circle-year .in {
    display: inline-block;
    width: 56px;
    height: 56px;
    background-color: #ff3b00;
    color: #fff;
    border-radius: 50%;
    text-align: right;
    z-index: 2;
}

.circle-year .out {

    color: #ff3b00;
    z-index: 1;
}

/* 오른쪽 텍스트 */
.hollow-circle {
    width: 16px;
    height: 16px;
    border: 4px solid #ccc;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 6px;
}

.timeline-right {
    padding: 50px 0 0 10px;
}

.timeline-right h4 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.timeline-right p {
    color: #666666;
    font-size: 16px;
    font-weight: 500;
}

/* 반응형 */
@media (max-width: 768px) {
    .circle-line {
        left: 11px;
    }

    .history-section {
        padding-bottom: 0;
    }

    .timeline-right {
        padding-top: 10px;
    }

    .history-row {
        flex-direction: column;
    }

    .history-row.reverse {
        flex-direction: column-reverse;
    }

    .history-text-group {
        padding: 20px 0;
    }

    .timeline-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-left {
        margin-bottom: 10px;
    }

}


/* 히스토리 END*/

/*매장 찾기*/
.store-label {
    font-size: 13px;
    font-weight: bold;
    color: #ff3d00;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.store-main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #26264b;
}

.store-main-title .highlight {
    color: #ff3d00;
    /* 강조색 (필요 시 조정) */
}

.store-section {
    background: #f8f4ef;
    padding: 100px 20px;
}

.store-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.store-search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-search-box input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 5px;
}

.store-search-box button {
    padding: 10px 20px;
    background: #aaa;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.store-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-list {
    width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.store-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;

}

.store-item:last-child {
    border-bottom: none;
}

.store-item h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #222;
}

.store-item p {
    margin: 0 0 0px;
    font-size: 14px;

}

.store-item a {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: #00c73c;
    text-decoration: none;
}

#map {
    flex: 1;
    height: 600px;
    border-radius: 10px;
    min-width: 300px;
}

@media (max-width: 768px) {
    .store-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .store-list {
        width: 100%;
    }

    #map {
        width: 100%;
        height: 400px;
    }

    .store-search-box {
        flex-direction: column;
        align-items: center;
    }

    .store-search-box input,
    .store-search-box button {
        width: 100%;
    }

    .store-title {
        font-size: 24px;
    }
}

@media (max-width: 408px) {

    #map {
        height: 350px;
    }
}

/*매장 찾기END*/
/*창업안내*/
.franchise-section {
    background: #000000 url('../img/bg_fa4.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    color: #fff;
}

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

.franchise-header h6 {
    font-size: 14px;
    color: #ff4d00;
    letter-spacing: 1px;
    margin-bottom: 29px;
}

.franchise-header h2 {
    font-size: 31px;
    font-weight: bold;
    line-height: 1;
}

.franchise-header .highlight {
    color: #ff4d00;
    font-weight: bold;
}

.franchise-header .desc {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 29px;
    line-height: 1.2;
}

.franchise-table-wrap {
    overflow-x: auto;
}

.franchise-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.franchise-table th,
.franchise-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.franchise-table th {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.franchise-table td.mobile-hide {
    padding-left: 40px;
    text-align: left;
}

.franchise-table td {
    color: #fff;
    font-size: 14px;
}

.franchise-table th+th,
.franchise-table td+td {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    /* 세로 흰색 선 */
}

/*창업안내 END*/
/*footer*/
.footer {
    background-color: #333;
    /* 어두운 회색 */
    color: #ccc;
    /* 밝은 회색 글씨 */
    font-size: 14px;
    padding: 30px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-inner p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer-inner {
        font-size: 13px;
        text-align: center;
    }
}

/*footer end*/
@media (max-width: 991px) {
    .hero .slide-content h2 {
        font-size: 26px;
    }

    .out-branch-circle {
        width: 180px;
        height: 180px;
    }

    .branch-circle {
        width: 160px;
        height: 160px;
        padding: 15px 10px;
        font-size: 13px;
        margin-left: -15px;
    }
}

@media (max-width: 768px) {

    .hero-btn {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .branch-info {
        flex-direction: row;
        justify-content: end;
        gap: 0;
    }

    .out-branch-circle {
        width: 140px;
        height: 140px;
    }

    .branch-circle {
        width: 120px;
        height: 120px;
        padding: 15px 10px;
        font-size: 13px;
        margin-left: -15px;
    }

    .branch-circle:first-child {
        margin-left: 0;
    }

    .branch-circle strong {
        font-size: 14px;
    }

    .branch-circle span {
        font-size: 12px;
    }

    .hero .single-slide {
        margin-right: 0;
    }

    .menu-toggle,
    .menu-close {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 70%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    /* 모달 내부에서 우측 상단 고정 */
    .menu-close {
        position: absolute;
        top: 21px;
        right: -38px;
        font-size: 26px;
        background: black;
        border: none;
        z-index: 10;
        color: #ffffff;
        width: 38px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 0;
        align-items: unset;
        line-height: 0.5;
    }

    .main-nav li {
        border-bottom: 1px solid #ddd;
    }

    .main-nav li a {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
    }

    .main-nav li a:hover,
    .main-nav li.active a {
        background-color: #FF3D00;
        color: #fff;
    }

    .main-nav .contact-btn {
        margin: 15px;
        padding: 14px 0;
        font-size: 16px;
        border-radius: 5px;
        background: #FF3D00;
        color: white;
        text-align: center;
        display: block;
    }

    .featured .title-blue {
        font-size: 30px;
        line-height: 1.1;
    }

    .featured p {
        text-align: center;
        font-size: 15px;
    }

    .featured .btn-wrap {
        flex-direction: column;
        align-items: center;
    }

    .featured .btn-wrap a {
        width: 80%;
        text-align: center;
    }

    .featured-img {
        margin-top: 40px;
        text-align: center;
    }

    .featured-big {
        max-width: 100%;
        padding-top: 0;
    }

    .featured-small {
        position: absolute;
        width: 100px;
        bottom: -20px;
        left: 10px;
    }

    .check-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 30px 0;
    }

    .check-list-item {
        background: #f3ece7;
        padding: 12px 18px;
        border-radius: 30px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #333;
    }

    .check-list-item i {
        color: #ff5722;
        font-size: 18px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }
}

@media (max-width: 722px) {
    .header-inner {
        justify-content: center;
        height: 90px;
        position: relative;
    }

    .logo {
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .logo img {
        height: 80px;
    }

}

@media (max-width: 575px) {
    .hero .single-slide {
        margin-bottom: 0 !important;
        padding-left: 20px;
    }

    .hero .single-slide.sub_img {
        padding-left: 0;
    }
}

@media (max-width: 558px) {
    .mobile-hide {
        display: none;
    }

    .featured-small {
        left: 0;
        width: 200px;
    }

    .menu-swiper .swiper-slide p {
        font-size: 16px;
    }

    .hero .slide-content h1 {
        font-size: 38px;
    }

    .hero .slide-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 389px) {

    .out-branch-circle {
        width: 120px;
        height: 120px;
    }

    .branch-circle {
        width: 120px;
        height: 120px;
        padding: 15px 10px;
        font-size: 13px;
        margin-left: -15px;
    }

    .featured-small {
        left: 0;
        width: 135px;
        padding: 8px;
    }

}

@media (max-width: 350px) {
    .highlight {
        display: block;
    }

}

/*
pc 우측 전화
 */
/* PC 오른쪽 플로팅 상담 이미지 */
.pc-floating-consult {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
}

.pc-floating-consult img {
    width: 160px;
    height: auto;
}

/* 모바일 하단 고정 바 */


/* 반응형 설정 */
@media (max-width: 768px) {
    .pc-floating-consult {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}

/*
모바일 하단 전화
 */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1c1c1c;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    /* 더 넓은 패딩 */
    z-index: 1000;
    font-size: 18px;
    /* 글자 크기 증가 */
}

.consult-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 27px;
    /* 좌측 텍스트 더 큼 */
}

.consult-left img {
    width: 11%;
}

@media (max-width: 570px) {
    .consult-left {
        font-size: 18px;
    }

    .consult-left img {
        width: 11%;
    }
}

.phone {
    color: #f7e54e;
}

.consult-btn {
    background-color: #ff3c00;
    color: #fff;
    padding: 14px 5px;
    border-radius: 0 15px 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    width: 100px;
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

/* Animation & Emphasis Additions */

/* Text Emphasis */
.text-highlight {
    background: linear-gradient(120deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 87, 34, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    transition: background-size 0.3s ease;
}

.text-highlight:hover {
    background-size: 100% 100%;
}

.text-gradient {
    background: linear-gradient(to right, #ff5722, #ff9100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.animate-shake:hover {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Section Specific Enhancements */
.hero .slide-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.check-list-item {
    transition: transform 0.2s ease, color 0.2s ease;
}

.check-list-item:hover {
    transform: translateX(10px);
    color: #ff5722;
}

.franchise-table tr:hover {
    background-color: rgba(255, 87, 34, 0.05);
}

.contact-btn.emphasized {
    background: linear-gradient(45deg, #ff5722, #ff9100);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    animation: pulse-glow 2s infinite;
}

.zero-cost {
    color: #ff5722;
    font-weight: 900;
    font-size: 1.2em;
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}