/* CSS from section:header */
.site-header {
    background-color: var(--color-white);
    height: 96px;
    /* 92px height + 4px top offset */
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 27px;
}

.logo img {
    width: 105px;
    height: 63px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 51px;
}

.main-nav li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dropdown-arrow {
    width: 22px;
    height: 22px;
}

.social-links {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.social-link-item img {
    width: 30px;
    height: 30px;
}

.social-link-item span {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 550;
    color: var(--color-text-grey);
    white-space: nowrap;
}

.social {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    color: #A1A1A1;
    font-size: 12px;
}

.social-quick img {
    width: 30px;
    height: 30px;
}


@media (max-width: 1400px) {
    .main-nav ul {
        gap: 25px;
    }

    .social-links {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .main-nav {
        display: none;
        /* Example: Hide for hamburger menu */
    }

    .header-container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 80px;
    }

    .header-container {
        padding: 0 15px;
    }

    .social-links {
        display: none;
    }
}

/* CSS from section:hero */
.hero-section {
    position: relative;
    height: 881px;
    /*background-image: url('/assets/images/main-img.png'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-content-wrapper {
    width: 924px;
    height: 353px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 46%;
    left: 39%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.main .hero-title {
    font-family: "Sandoll Samliphopangche TTF" !important;
    font-size: 96px !important;
    font-weight: 550;
    color: #ECCE9F !important;
    letter-spacing: 4.8px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1;
    margin-bottom: 37px;

}

@media (max-width: 768px) {
    .main .hero-title {
        font-size: 42px !important;
    }

    .hero-button {
        height: 40px !important;
    }
}

.hero-description {
    font-size: 24px;
    font-weight: 200;
    color: var(--color-white);
    line-height: 38px;
    margin-bottom: 28px;
    text-align: left;
}

.hero-description strong {
    font-weight: 700;
}

.hero-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 60px;
    border: 1px solid var(--color-button-border);
    border-radius: 50px;
    color: var(--color-button-border);
    font-family: "Noto Sans KR";
    font-size: 16px;
    letter-spacing: 0.8px;
    transition: background-color 0.3s, color 0.3s;
    padding: 5px;
}

.hero-button:hover {
    background-color: var(--color-button-border);
    color: var(--color-text-dark);
}

.floating-actions {
    position: fixed;
    top: 347px;
    right: 11px;
    display: flex;
    flex-direction: column;
    z-index: 200;
    box-shadow: 0px 4px 1px 0px rgba(0, 0, 0, 0.25);
}

.action-button {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 550;
}

.action-button.reserve-button {
    background-color: #000514;
    border: 1px solid #000000;
    color: var(--color-white);
}

.action-button.reserve-button img {
    width: 41px;
    height: 46px;
}

.action-button.talk-button {
    background-color: var(--color-accent-yellow);
    color: #051939;
}

.action-button.talk-button img {
    width: 40px;
    height: 41px;
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
    }

    .hero-content-wrapper {
        margin-left: 0;
        align-items: center;
        width: 100%;
        max-width: 800px;
        height: auto;
        padding: 40px;
        left:50%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
        top: auto;
        flex-direction: row;
        gap: 10px;
        background: none;
        box-shadow: none;
    }

    .action-button {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }
}

/* CSS from section:footer */
.site-footer {
    background-color: var(--color-primary-blue);
    max-width: 1920px;
    margin: 0 auto;
}

.footer-container {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.site-footer p {
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        height: auto;
        padding: 25px 15px;
    }

    .site-footer p {
        font-size: 12px;
        line-height: 1.6;
    }
}

:root {
    --font-primary: 'Inter', 'Noto Sans KR', sans-serif;
    --font-display: 'Gmarket Sans', sans-serif;
    /* Assuming Gmarket Sans is loaded */
    --font-special: 'Sandoll Samliphopangche TTF', sans-serif;
    /* Assuming this font is loaded */

    --color-text-primary: #000000;
    --color-text-secondary: #3b3b3b;
    --color-text-light: #ffffff;
    --color-text-highlight: #ecce9f;

    --color-bg-main: #fefcfb;
    --color-bg-header: #ffffff;
    --color-bg-footer: #0f2bff;
    --color-bg-table-header: #43332d;

    --border-color: #d0c8b5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* CSS from section:header */
.site-header {
    background-color: var(--color-bg-header);
    height: 92px;
    display: flex;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    /* Wider container for header */
    margin: 0 auto;
    padding: 0 40px;
}

.logo img {
    width: 105px;
    height: 63px;
    display: block;
}

.offcanvas {
    background-color: #43332D;
}

.offcanvas-header {
    background-color: #fff;
}

.offcanvas-body {
    font-family: 'inter'
}

.offcanvas-body ul li {
    padding: 10px 15px;
    color: var(--brand-color-primary);
}

.offcanvas-body ul.sub-menu {
    display: none;
    padding: 10px 0;
    border-top: 1px solid;
}

.offcanvas-body ul.sub-menu li {
    padding: 5px 0;
    border-bottom: 0;
}

.offcanvas-body ul.sub-menu li a {
    color: #fff
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
        /* Simple hide on mobile, would need JS for a hamburger menu */
    }

    .header-container {
        justify-content: space-between;
    }
}

/* CSS from section:hero */
.hero-banner {
    position: relative;
    height: 275px;
    background-image: url('../images/58c8b483fa06e3c75320a150bf3e5c6dec25e6ac.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-title {
    position: relative;
    z-index: 1;
    color: var(--color-accent);
    font-family: var(--font-float);
    font-weight: 400;
    font-size: 98px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
}

/* CSS from section:pricing-info */
.pricing-info-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 81px;
}

.price-group {
    margin-bottom: 78px;
}

.price-group:last-child {
    margin-bottom: 0;
}

.price-group-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.title-icon {
    position: relative;
    width: 36px;
    height: 36px;
}

.tables-wrapper {
    display: flex;
    gap: 20px;
}

.table-container {
    flex: 1;
    min-width: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    background-color: var(--color-bg-header);
}

.price-table th,
.price-table td {
    border: 1px solid var(--border-color);
    padding: 14px 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
}

.price-table thead th {
    background-color: var(--color-bg-table-header);
    color: var(--color-text-light);
    font-weight: 700;
    border-color: var(--color-bg-table-header);
}

.price-table tbody td {
    height: 47px;
    color: var(--color-text-primary);
    font-weight: 400;
}

.price-table tbody tr:nth-child(odd) td {
    /* background-color: #f9f9f9; */
}

.price-table .note-row td {
    text-align: center;
    height: auto;
    padding: 14px;
}

.price-table td[colspan="3"],
.price-table td[colspan="4"] {
    text-align: center;
}

@media (max-width: 1300px) {
    .tables-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .pricing-info-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .price-group {
        margin-bottom: 50px;
    }

    .price-table th,
    .price-table td {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* CSS from section:floating-elements */
.side-buttons {
    position: fixed;
    right: 20px;
    top: 300px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-button {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: var(--font-special);
    font-weight: 550;
    font-size: 12px;
    gap: 5px;
}

.side-button.booking {
    background-color: #000514;
    color: #ffffff;
    border: 1px solid #000000;
}

.side-button.kakao {
    background-color: #ffcc00;
    color: #051939;
}

.side-button-icon-wrapper {
    width: 41px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-button-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    z-index: 999;
    display: block;
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .side-buttons {
        /*display: none;*/
        top: 100px;
        right: 0;
    }

    .side-button {
        width: 50px;
        height: 50px;
    }

    .side-button-icon-wrapper {
        height: auto;
    }

    .side-button-icon-wrapper img {
        width: 50%;
    }

    .back-to-top {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
}

/* CSS from section:footer */
.site-footer {
    background-color: var(--color-bg-footer);
    padding: 28px 20px;
}

.footer-text {
    color: #e3f2fd;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 12px;
        line-height: 20px;
    }
}

/* 메인 */

Instant Logo Credit: 82.5 Generate Code How’s this? starstarstarstarstar close Generated Code HTML CSS Javascript Copy Code <style >

/* 
    NOTE: The font 'Sandoll Samliphopangche TTF' is a commercial font. 
    A proper webfont license and files are required for it to render correctly.
    A fallback font is used here.
  */
:root {
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-secondary: 'Sandoll Samliphopangche TTF', 'Nanum Gothic', sans-serif;
    --font-accent: 'NanumGothic', sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-primary-blue: #0f2bff;
    --color-text-light: #ffffff;
    --color-text-dark: #3b3b3b;
    --color-text-grey: #a1a1a1;
    --color-accent-gold: #ecce9f;
    --color-accent-yellow: #ffcc00;
    --color-button-border: #ebebff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*회사소개*/

:root {
    --color-primary: #0f2bff;
    --color-accent: #ecce9f;
    --color-text-dark: #02020a;
    --color-text-body: #7b7b7b;
    --color-text-light: #ffffff;
    --color-white: #ffffff;
    --color-background: #fefcfb;
    --color-background-alt: #f6f6f6;
    --color-border: #d9d9d9;
    --font-main: 'Noto Sans KR', sans-serif;
    --font-display: 'Gmarket Sans', sans-serif;
    --font-highlight: 'Tenada', sans-serif;
    --font-float: 'Sandoll Samliphopangche TTF', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-display);
    background-color: var(--color-background);
    color: var(--color-text-body);
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-accent {
    color: var(--color-accent);
}

.text-dark {
    color: var(--color-text-dark);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* CSS from section:header */
.site-header {
    background-color: var(--color-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo img {
    width: 105px;
    height: 63px;
}

.dropdown-icon {
    width: 22px;
    height: 22px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .main-nav {
        display: none;
        /* Simple hide for now, would need JS for a real menu */
    }

    .menu-toggle {
        display: block;
        /* Show hamburger */
    }
}

/* CSS from section:hero */
.hero-section {
    text-align: center;
    padding-top: 120px;
}

.hero-title-image {
    margin: 0 auto 120px;
    max-width: 1023px;
}

.hero-quote {
    font-size: 48px;
    font-weight: 400;
    line-height: 68px;
    margin: 0 0 120px;
    text-align: center;
}

.hero-quote .text-accent {
    font-weight: 700;
}

.video-container video {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
    width: 1280px;
    height: 629px;
}

@media (max-width: 1024px) {

    .video-container {
        width: 100%;
        height: auto;
    }
}

.video-thumbnail {
    width: 1280px;
    height: 720px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.play-button img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

.play-button:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-title-image {
        margin-bottom: 60px;
    }

    .hero-quote {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 60px;
    }

    .video-thumbnail {
        height: auto;
    }
}

/* CSS from section:main */
#main-content {
    margin-top: 120px;
}

@media (max-width: 1023px) {
    #main-content {
        margin-top: 30px;
    }
}

/* CSS from section:about */
.about-section {
    padding-top: 160px;
}

.feature-item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 85px;
}

.feature-icon {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    background-image: url('../images/check-bg.png');
    /* Ellipse background */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-text p {
    font-size: 32px;
    line-height: 68px;
    margin: 0;
    text-align: justify;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    margin-bottom: 105px;
}

.partner-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .partner-logos img {
        height: 15px;
    }
}

.separator {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 0 0 110px;
}

.feature-item:nth-of-type(2) {
    margin-top: 110px;
    margin-bottom: 24px;
}

.car-fleet-image {
    margin-bottom: 90px;
}

.merged-image-container {
    position: relative;
    width: 100%;
}

.merged-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.car-fleet-image {
    padding-top: 63.67%;
    /* 815 / 1280 */
}

.img-layer-1 {
    z-index: 1;
}

.img-layer-2 {
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    width: 103%;
    /* 1318 / 1280 */
}

@media (max-width: 1024px) {
    .about-section {
        padding-top: 80px;
    }

    .feature-item {
        gap: 10px;
        margin-bottom: 60px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-icon img {
        width: 18px;
        height: 18px;
    }

    .feature-text p {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .partner-logos {
        gap: 20px;
        margin-bottom: 60px;
    }

    .separator {
        margin-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .about-pc {
        display: block;
    }

    .about-mb {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-pc {
        display: none;
    }

    .about-mb {
        display: block;
    }
}

/* CSS from section:contact */
.contact-section {
    padding-top: 246px;
    /* 356px - 110px from map margin */
}

.cta-banner {
    background-color: var(--color-background-alt);
    padding: 49px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-logo {
    width: 337px;
    height: 203px;
}

.cta-text {
    font-family: var(--font-highlight);
    font-weight: 800;
    text-align: right;
    margin: 0;
    line-height: 68px;
}

.cta-text .line-1 {
    font-size: 24px;
    color: #7b7b7b;
    display: block;
}

@media (max-width: 768px) {
    .cta-text .line-1 {
        font-size: 20px;
    }
}

.cta-text .line-2 {
    display: block;
}

.cta-text .line-2 .text-dark {
    font-size: 36px;
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    .cta-text .line-2 .text-dark {
        display: block;
    }
}

.cta-text .line-2 .text-accent {
    font-size: 48px;
    color: var(--color-accent);
}

.cta-text .line-3 {
    font-size: 32px;
    color: #7b7b7b;
    display: block;
}

@media (max-width: 768px) {
    .cta-text .line-3 {
        font-size: 20px;
    }
}

.map-section {
    padding-top: 110px;
    padding-bottom: 172px;
}

.map-image {
    margin-bottom: 75px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: #7a7b7c;
}

.contact-info li img {
    width: 24px;
    height: 24px;
}

.contact-mb {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.contact-mb .title {
    color: #43332d;
}

.contact-mb .sub {
    font-size: 14px;
    color: #888;
    font-family: 'inter';
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.contact-mb .contents {
    font-size: 14px;
    color: #888;
    font-family: 'inter';
    font-weight: 400;
    padding: 10px 0;

}

@media (max-width: 1024px) {
    .contact-section {
        padding-top: 80px;
    }

    .cta-container {
        flex-direction: column;
        gap: 30px;
    }

    .cta-text {
        text-align: center;
    }

    .map-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-info ul {
        gap: 20px;
    }
}

/*@media (min-width: 768px) {
    .contact-pc {
        display: block;
    }
    
    .contact-mb {
        display: none;
    }
} 

@media (max-width: 767px) {
    .contact-pc {
        display: none;
    }
    
    .contact-mb {
        display: block;
    }
} */


/* CSS from section:footer */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    padding: 28px 20px;
}

.site-footer p {
    margin: 0;
}

.floating-buttons {
    position: fixed;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.float-btn {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-float);
    font-size: 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.float-btn img {
    margin-bottom: 5px;
}

.reserve-btn {
    background-color: #000514;
    color: var(--color-white);
    border: 1px solid #000000;
}

.reserve-btn img {
    width: 41px;
    height: 46px;
}

.kakao-btn {
    background-color: #ffcc00;
    color: #051939;
}

.kakao-btn img {
    width: 40px;
    height: 41px;
}

.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 26px;
    width: 100px;
    height: 100px;
    z-index: 999;
    transition: opacity 0.3s, visibility 0.3s;
}

.scroll-to-top:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .floating-buttons {
        display: none;
    }

    .scroll-to-top {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}

/* 가격안내 */

.hero-title2 {
    font-size: 36px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title2 {
        font-size: 20px;
    }
}

/* 서비스안내 */

:root {
    --color-primary: #0f2bff;
    --color-accent: #ecce9f;
    --color-text-dark: #3b3b3b;
    --color-text-light: #ffffff;
    --color-text-gray: #7b7b7b;
    --font-main: 'Gmarket Sans', sans-serif;
    --font-secondary: 'Noto Sans KR', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #fefcfb;
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive base */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CSS from section:header */
.site-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo img {
    width: 105px;
    height: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 51px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text-dark);
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--color-accent);
    transition: background-color 0.3s ease;
}

.main-nav a.hovered {
    color: var(--color-accent);
    transition: background-color 0.3s ease;
}

.main-nav a img {
    width: 22px;
    height: 22px;
}

.main-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: #ECCE9F;
    padding: 0;
    border-radius: 7px;

}

.main-nav .sub-menu li {
    width: 100%;
    padding: 7px 15px;
    transition: background-color 0.3s ease;
}

.main-nav .sub-menu li a {
    font-size: 16px;
    color: #fff;
    font-weight: 100;
}

.main-nav .sub-menu li:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.main-nav .sub-menu li:hover a {
    color: #333;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }

    .main-nav ul {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
        /* Hide nav for mobile, requires JS to toggle */
    }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-text-dark);
    }

    .header-container {
        padding: 0 20px;
    }
}

/* CSS from section:hero */
.hero-banner {
    position: relative;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/sub-img.png');
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 200px;
    }

    .hero-title {
        font-size: 28px;
    }
}

/* CSS from section:content */
/* Service Info Section */
.service-info-section {
    padding-bottom: 90px;
}

.section-title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 22px;
}

.service-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.service-details-list p {
    margin: 0;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-gray);
}

.service-details-list .text-highlight {
    color: #43332d;
}

.service-details-list .text-underline {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #43332D;
}

/* Process Flow Section */
.process-flow-section {
    padding-bottom: 140px;
}

.process-flow-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.timeline-graphic {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    z-index: 1;
}

.steps-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: dense;
    align-items: center;
    justify-items: center;
    row-gap: 16px;
}

.step-item {
    position: relative;
    text-align: center;
    width: 126px;
}

.step-1,
.step-3,
.step-5,
.step-7 {
    grid-row: 1;
}

.step-2,
.step-4,
.step-6 {
    grid-row: 2;
}

.step-1 {
    grid-column: 1;
}

.step-2 {
    grid-column: 2;
}

.step-3 {
    grid-column: 3;
}

.step-4 {
    grid-column: 4;
}

.step-5 {
    grid-column: 5;
}

.step-6 {
    grid-column: 6;
}

.step-7 {
    grid-column: 7;
}

.step-graphic {
    position: relative;
    height: 166px;
    margin-bottom: 11.52px;
}

.step-graphic.reversed {
    transform: rotate(180deg);
    margin-bottom: 0;
    margin-top: 11.52px;
}

.step-graphic img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.step-graphic .graphic-bg {
    top: 0;
}

.step-graphic .graphic-header {
    top: 0;
}

.step-graphic.reversed .graphic-header {
    transform: rotate(180deg);
    left: 0;
}

.step-graphic .graphic-icon-bg {
    bottom: 12.84px;
}

.step-graphic .graphic-icon {
    bottom: 21.84px;
}

.step-graphic.reversed .graphic-icon {
    transform: translateX(-50%) rotate(180deg);
}

.graphic-dot {
    bottom: -30px;
}

.graphic-bar {
    bottom: -15px;
    z-index: -1;
}

.step-graphic.reversed .graphic-dot {}

.step-graphic.reversed .graphic-bar {}

.step-label {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text-light);
    width: 100%;
}

.step-title {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    color: #07020d;
    width: 100%;
    margin: 0;
}

.step-label.reversed {
    bottom: 3px;
    top: unset;
}

.step-title.reversed {
    transform: translateX(-50%);
    bottom: 52px;
    top: unset;
}

@media (min-width: 768px) and (max-width: 1200px) {

    .step-item {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .service-info-section {

        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {

    .process-flow-wrapper {
        background-color: #f5f5f5;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        display: inline-block;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .timeline-graphic {
        /*display: none;*/
        transform: rotate(180deg);
        top: 0;
        height: 100%;
        width: 50%;
    }

    .step-graphic.reversed {
        transform: unset;
        margin-top: 0;
        margin-bottom: 11.52px;
    }

    .step-label.reversed {
        bottom: unset;
        top: 3px;
    }

    .step-title.reversed {
        top: 52px;
    }
}

/* CSS from section:floating-widgets */
.floating-widgets-container {
    position: fixed;
    right: 20px;
    bottom: 140px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.floating-button {
    width: 90px;
    height: 90px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: 'Sandoll Samliphopangche TTF', sans-serif;
    font-size: 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.reserve-button {
    background-color: #000514;
    color: #ffffff;
    border: 1px solid #000000;
}

.reserve-button img {
    width: 41px;
    height: 46px;
}

.kakao-button {
    background-color: #ffcc00;
    color: #051939;
}

.kakao-button img {
    width: 40px;
    height: 41px;
}

.back-to-top-button {
    margin-top: 20px;
    width: 100px;
    height: 100px;
}

@media (max-width: 768px) {
    .floating-widgets-container {
        right: 10px;
        bottom: 80px;
    }

    .floating-button {
        width: 70px;
        height: 70px;
    }

    .floating-button img {
        width: 50%;
        height: auto;
    }

    .back-to-top-button {
        width: 60px;
        height: 60px;
    }
}

/* CSS from section:footer */
.site-footer {
    background-color: var(--color-primary);
    padding: 28px 0;
}

.site-footer p {
    margin: 0;
    color: #e3f2fd;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer p {
        font-size: 12px;
        line-height: 20px;
    }
}

/* 차량안내 */

/* CSS for section section:vehicles */
.vehicles-main {
    padding-top: 97px;
    padding-bottom: 140px;
}

.vehicle-group {
    margin-bottom: 100px;
}

.vehicle-group:last-child {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 19px;
}

.title-icon {
    position: relative;
    width: 36px;
    height: 36px;
}

.title-icon .icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.title-icon .icon-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    margin-bottom: 0;
}

.vehicle-tabs ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 27px;
}

.vehicle-tabs li {
    width: 20%;
    text-align: center;
}

.vehicle-tabs li button {
    width: 100%;
}

#sedans .vehicle-tabs li {
    width: 50%;
}

.vehicle-tabs li button {
    display: block;
    padding: 18px 28px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.vehicle-tabs li button.active {
    color: var(--color-text-dark);
    border-bottom-color: var(--color-text-dark);
}

.vehicle-display-card {
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background-color: var(--color-white);
    overflow: hidden;
}

.card-header {
    background-color: #ecce9f;
    height: 70px;
    padding: 0 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--color-text-dark);
}

.card-header .card-logo {
    height: 55px;
}

.card-body {
    display: flex;
}

.gallery {
    position: relative;
    flex-basis: 960px;
    flex-shrink: 0;
}

.gallery .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.gallery .arrow.left {
    left: 0;
}

.gallery .arrow.right {
    right: 0;
}

.gallery .arrow img {
    width: 80px;
    height: 80px;
}

.layout-view {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
}

.layout-view .layout-image {
    height: 50%;
}

.layout-view .layout-logo {}

@media (max-width: 1200px) {
    .card-body {
        flex-direction: column;
    }

    .gallery {
        flex-basis: auto;
    }

    .layout-view {
        padding: 40px 20px;
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .vehicles-main {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .vehicle-tabs ul {
        flex-wrap: wrap;
        justify-content: center;
        display: -webkit-inline-box;
        overflow-x: scroll;
    }

    .vehicle-tabs li {
        width: auto;
    }

    .vehicle-tabs li a {
        padding: 12px 16px;
        font-size: 14px;
    }

    .layout-view {
        flex-direction: row;
        gap: 20px;
    }

    .layout-view .layout-image {
        width: 50%;
        height: auto;
    }

    .layout-view .layout-logo {
        width: 50%;
        height: auto;
    }

    .card-header h3,
    .modal-title {
        font-size: 16px !important;
    }
}

/* 예약하기 */

/* CSS from section:reservation */
.reservation-section {
    padding-top: 100px;
    padding-bottom: 140px;
}

.section-title {
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--text-color-primary);
    margin: 0 0 32px 0;
}

.reservation-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vehicle-card {
    width: 641px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ececec;
}

.card-header {
    background-color: var(--brand-color-primary);
    padding: 25px;
    height: 70px;
}

.card-header h3 {
    margin: 0;
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #02020a;
}

.card-header .recommendation {
    color: #7c3030;
}

.card-body {
    position: relative;
}

.vehicle-image {
    width: 100%;
    display: block;
}

.prime-logo-overlay {
    width: 75px;
}

.card-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
}

.details-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #02020a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: 'Gmarket Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.form-container {
    flex-grow: 1;
    background-color: var(--background-color-grey);
    border-radius: 20px;
    padding: 37px 30px;
}

.reservation-form .form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group.full-width {
    align-items: flex-start;
}

.form-group label {
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color-primary);
    width: 100px;
    flex-shrink: 0;
    line-height: 1.2;
}

.form-group.full-width label {
    padding-top: 8px;
}

.input-wrapper {
    flex-grow: 1;
    position: relative;
    width: 100%;
}

.input-wrapper input[type="text"],
.input-wrapper textarea,
.custom-select {
    width: 100%;
    height: 35px;
    padding: 8px 12px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0f172a;
}

.input-wrapper textarea {
    height: 83px;
    resize: vertical;
}

.input-wrapper.with-icon input {
    padding-right: 35px;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.multi-input {
    display: flex;
    gap: 12px;
    align-items: center;
}

.multi-input.email-group span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.phone-select {
    /*width: 138px;*/
    flex-shrink: 0;
}

.email-select {
    flex-grow: 1;
}

.form-footer {
    margin-top: 28px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

.checkbox-group label {
    font-family: 'Gmarket Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.submit-button {
    width: 100%;
    height: 50px;
    background-color: var(--brand-color-secondary);
    color: var(--brand-color-primary);
    border: none;
    border-radius: 40px;
    font-family: 'Gmarket Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.floating-widgets {
    position: fixed;
    top: 480px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-item {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: 'Sandoll Samliphopangche TTF', sans-serif;
    font-size: 12px;
    gap: 5px;
}

.reserve-widget {
    background-color: #000514;
    color: #ffffff;
    border: 1px solid #000000;
}

.reserve-widget img {
    width: 41px;
    height: 46px;
}

.kakao-widget {
    background-color: #ffcc00;
    color: #051939;
}

.kakao-widget img {
    width: 40px;
    height: 41px;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    z-index: 999;
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

input,
select {
    font-family: 'Inter';
    font-size: 14px !important;
}

option {
    font-size: 14px !important;
}

@media (max-width: 1200px) {
    .reservation-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-card {
        width: 100%;
        max-width: 641px;
    }

    .form-container {
        width: 100%;
        max-width: 641px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .reservation-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label {
        width: auto;
    }

    .floating-widgets {
        top: auto;
        bottom: 120px;
    }

    .back-to-top {
        width: 80px;
        height: 80px;
        right: 20px;
        bottom: 20px;
    }
}

/* CSS from section:popup */

.modal-header {
    background-color: var(--brand-color-primary);
}

.modal-body {
    padding: 0;
}

.modal-content {
    border: 5px solid #fff;
}

.popup-section {
    /* This section would typically be controlled by JS to show/hide */
    display: block;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--overlay-background);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-container {
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-main);
    border: 5px solid var(--color-background-light);
    width: 100%;
    max-width: 861px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 95vh;
}

.popup-header {
    background-color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 30px;
    flex-shrink: 0;
}

.popup-title {
    color: var(--color-text-dark);
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    margin: 0;
}

.popup-close-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: 0;
}

.popup-close-btn img {
    width: 50px;
    height: 50px;
}

.popup-body {
    overflow-y: auto;
}

.popup-main-content {
    display: flex;
}

.image-carousel {
    position: relative;
    width: 618px;
    flex-shrink: 0;
}

.main-image {
    width: 100%;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.carousel-nav.prev {
    left: 1px;
}

.carousel-nav.next {
    right: 1px;
}

.carousel-nav img {
    width: 76px;
    height: 76px;
}

.vehicle-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 38px 15px;
}

.seating-chart {
    width: 175px;
    height: auto;
}

.brand-logo {
    width: 105px;
    height: auto;
}

.popup-gallery {
    background-color: var(--color-background-medium);
    padding: 27px 16px;
    display: flex;
    justify-content: center;
    gap: 0;
    /* Images are touching in the design */
}

.gallery-thumbnail {
    width: 277px;
    height: 235px;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .popup-container {
        max-width: 95vw;
    }

    .popup-main-content {
        flex-direction: column;
    }

    .image-carousel {
        width: 100%;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .vehicle-info {
        flex-direction: row;
        justify-content: space-around;
        padding: 20px;
        width: 100%;
    }

    .popup-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-thumbnail {
        width: calc(33.333% - 7px);
        height: auto;
        aspect-ratio: 277 / 235;
    }
}

@media (max-width: 600px) {
    .popup-header {
        padding: 12px 15px;
    }

    .popup-title {
        font-size: 16px;
    }

    .popup-close-btn img {
        width: 30px;
        height: 30px;
    }

    .carousel-nav img {
        width: 40px;
        height: 40px;
    }

    .vehicle-info {
        padding: 15px;
    }

    .seating-chart {
        width: 120px;
    }

    .brand-logo {
        width: 80px;
    }

    .gallery-thumbnail {
        width: calc(50% - 5px);
    }
}

/* 렌트서비스 */

/* CSS from section:services */
.services-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

.service-block {
    margin-bottom: 100px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h2 {
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.qualifications-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
}

.qualifications-table th,
.qualifications-table td {
    border: 1px solid var(--color-border);
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
}

.qualifications-table th {
    background-color: var(--color-bg-dark);
    color: var(--color-accent);
    font-weight: 700;
    text-align: center;
    width: 33.33%;
    border-bottom: 1px solid var(--color-accent);
}

.qualifications-table tr:last-child th {
    border-bottom: 0;
}

.qualifications-table td {
    color: #000000;
    font-weight: 400;
}

.qualifications-table .subtext {
    color: #888888;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.insurance-cards {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.card {
    background-color: #D0C8B5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 32px;
    flex: 1;
    max-height: 175px;
}

.card-icon-wrapper {
    position: relative;
    width: 96px;
    height: 135px;
    flex-shrink: 0;
}

.card-icon-bg-light,
.card-icon-bg-dark,
.card-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.card-icon-bg-light {
    /* This is the outer beige rect, but the parent .card already has this color. So this is redundant unless it has different properties. */
}

.card-icon-bg-dark {
    background-color: var(--color-bg-dark);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    padding: 10px;
    /* Adjust padding to control icon size */
}

.card-text h3 {
    font-size: 24px;
    font-weight: 400;
    color: #07020d;
    margin: 0 0 10px 0;
}

.card-text p {
    font-size: 16px;
    font-weight: 400;
    color: #5f634f;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1200px) {
    .insurance-cards {
        flex-wrap: wrap;
    }

    .card {
        flex-basis: calc(50% - 5px);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .service-block {
        margin-bottom: 60px;
    }

    .qualifications-table th {
        width: 120px;
        /* Give header a fixed width on mobile */
    }

    .insurance-cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        gap: 15px;
    }
}

/* 월렌트 요금안내 */


/* CSS from section:content */
.main-content {
    padding-top: 100px;
    padding-bottom: 140px;
}

.car-category-section + .car-category-section {
    margin-top: 100px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.title-icon {
    position: relative;
    width: 36px;
    height: 36px;
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--black-color);
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.car-card {
    background-color: var(--background-grey);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #F1F1F1;
}

.car-image-container {
    background-color: var(--white-color);
    border-radius: 20px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 35px;
    background-color: #fff;
}

.car-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.car-info {
    margin-top: auto;
    text-align: right;
}

.car-name {
    font-size: 24px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 22px;
}

.car-price {
    font-size: 24px;
    font-weight: 400;
}

.price-value {
    color: var(--color-primary);
}

.price-unit {
    color: #7B7B7B;
    font-size: 20px;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .car-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .car-category-section + .car-category-section {
        margin-top: 50px;
    }
}

/* CSS from section:widgets */
.floating-actions {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.action-button {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.reserve-button {
    background-color: #000514;
    border: 1px solid #000000;
}

.kakao-button {
    background-color: #ffcc00;
}

.action-icon {
    width: 41px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 5px;
}

.kakao-button .action-icon {
    width: 40px;
    height: 41px;
}

.action-text {
    font-family: 'Sandoll Samliphopangche TTF', sans-serif;
    font-size: 12px;
    line-height: 1;
}

.reserve-button .action-text {
    color: var(--white-color);
}

.kakao-button .action-text {
    color: #051939;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    z-index: 999;
    display: block;
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .floating-widgets {
        display: none;
    }
}

/* 장기렌트vs리스 */

/* CSS from section:comparison */
.comparison-section {
    padding-top: 100px;
}

.comparison-section .section-title span {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #43332D;
}

.table-container {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 12px;
    text-align: center;
    border: 1px solid #d0c8b5;
}

.comparison-table thead th {
    background-color: #43332d;
    color: #ecce9f;
    font-weight: 700;
    border-color: #cbd5e1;
}

.comparison-table tbody td {
    background-color: #ffffff;
    color: #000000;
}

.comparison-table tbody tr td:first-child {
    background-color: #ecce9f;
}

@media (max-width: 768px) {
    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #d0c8b5;
        border-radius: 4px;
        overflow: hidden;
    }

    .comparison-table td {
        display: block;
        text-align: right;
        position: relative;
        padding-left: 50%;
        border: none;
        border-bottom: 1px solid #d0c8b5;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: calc(40% - 24px);
        text-align: center;
        font-weight: bold;
        background-color: #43332D;
        border-radius: 10px;
        padding: 5px 0;
        color: #ECCE9F;
        top: 50%;
        transform: translateY(-50%);
    }

    .comparison-table tbody tr td:first-child {
        background-color: #ecce9f;
        font-weight: bold;
        text-align: center;
        padding-left: 12px;
    }

    .comparison-table tbody tr td:first-child::before {
        display: none;
    }
}

/* CSS from section:process */
.process-section {
    padding-bottom: 100px;
    margin-top: 100px;
}

.process-steps {
    display: flex;
    justify-content: center;
    box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.step-card {
    width: 256px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.step-header {
    height: 75px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-header h3 {
    margin: 0;
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
}

.step-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    text-align: center;
    gap: 40px;
}

.step-body p {
    margin: 0;
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #ffffff;
}

.step-body img {
    width: auto;
    height: 80px;
}

.step-card.step-1 {
    background-color: #ecce9f;
}

.step-card.step-2 {
    background-color: #e5a46b;
}

.step-card.step-3 {
    background-color: #3b2e45;
}

.step-card.step-4 {
    background-color: #58597b;
}

.step-card.step-5 {
    background-color: #e08969;
}

@media (max-width: 1280px) {
    .process-steps {
        flex-wrap: wrap;
        border-radius: 0;
        box-shadow: none;
    }

    .step-card {
        width: calc(33.333% - 10px);
        margin: 5px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 992px) {
    .step-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .step-card {
        width: 100%;
        margin: 10px 0;
    }
}

/* CSS from section:contact */
.contact-section {
    padding-top: 0;
    margin-bottom: 100px;
}

.contact-box {
    background-color: #07020d;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 40px;
}

.contact-icon {
    width: 50px;
    height: 50px;
}

.contact-title {
    font-family: 'Gmarket Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #ffffff;
}

.contact-number {
    font-family: 'NPS font', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #ecce9f;
}

@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 10px;
    }

    .contact-title,
    .contact-number {
        font-size: 24px;
    }

    .table-container {
        box-shadow: none;
    }
}

/* 포트폴리오 */

.table > :not(caption) > * > * {
    background-color: unset;
}

.portfolio-section .table th {
    background-color: #43332D;
    font-weight: 400;
    color: #ECCE9F;
    vertical-align: middle;
}

.portfolio-section .table td {
    border-bottom: 1px solid #ECCE9F;
    color: #333;
}

.page-link {
    color: #ccc;
    font-weight: 100;
    font-family: 'inter';
}

.portfolio-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

.portfolio-sub div {
    font-family: 'Noto Sans KR Bold';
}

.portf-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.portf-img img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-contents {
    font-family: 'Noto Sans KR Bold';
}

@media (max-width: 768px) {

    .portfolio-section {
        padding-top: 30px !important;
        padding-bottom: 30px;
    }

    .portfolio-section h3 {
        font-size: 20px !important;
    }

    .portfolio-title {
        font-size: 18px !important;
    }

    .portfolio-sub div {
        font-size: 14px !important;
    }

    .portfolio-section .table th,
    .portfolio-section .table td {
        font-size: 14px;
    }

    .portf-img {
        width: 100%;
        flex-direction: column;
    }
    
    .portf-img img {
        margin: 0 auto 0.5rem auto;
        max-width: 100%;
    }
}

/* faq */

.faq-section {
    padding-top: 80px;
    padding-bottom: 100px;
}


.faq-section .accordion-button:not(.collapsed) {
    background-color: #43332D;
    color: #ECCE9F;
}

/* 문의하기 */

.contact-section {
    padding-top: 80px;
    padding-bottom: 100px;
}


.contact-section .table th {
    background-color: #43332D;
    font-weight: 400;
    color: #ECCE9F;
    vertical-align: middle;
    text-align: center;
}

.contact-details .table th {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #d9d9d9;
    vertical-align: middle;
    text-align: center;
}

.contact-section .table td {
    border: 1px solid #d9d9d9;
    color: #333;
}

.contact-details .table td {
    border: 1px solid #d9d9d9;
    color: #333;
}

@media (max-width: 480px) {

    .contact-section {
        padding: 30px 0;
        margin-bottom: 0;
    }

    .contact-details .table tr {
        display: grid;
    }

    .contact-section .table th,
    .contact-section .table td {
        font-size: 14px;
    }

    .contact-title {

        /* 기본값으로 설정 */
    }

    .mb-table > div {
        margin-bottom: 10px;
        border-bottom: 1px solid #d9d9d9;
        padding-bottom: 10px;
    }


    .mb-table .title {
        color: #43332d;
    }

    .mb-table .sub {
        font-size: 14px;
        color: #888;
        font-family: 'inter';
        font-weight: 100;
    }
}
