.video-slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.videoSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 20px;
    animation: slideUpFade 1s ease-out;
}

.slide-content.center {
    align-items: center;
    text-align: center;
}

.slide-content.top-up {
    position: relative;
    top: -50px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  letter-spacing: -1px;
  color: white;
}

.slide-description {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    opacity: 0.95;
    color: white;
    margin: 0;
    padding: 0;

}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 24px;
    height: 24px;
}

/* Custom Pagination */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next svg,
    .swiper-button-prev svg {
        width: 18px;
        height: 18px;
    }
}



/* masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Footer Styles */
.ft-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.ft-logo-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ft-logo {
    width: 150px;
    filter: grayscale(100%);
}

.ft-info {
    line-height: 1.8;
    color: white;
}

.ft-info-line {
    margin-bottom: 0.5rem;
    color: white;
}

.ft-info-line:last-of-type {
    margin-bottom: 0.3rem;
}

.ft-info-line strong {
    color: #999;
}

.ft-info-sub {
    padding-left: 4.5rem;
    color: white;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ft-top-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ft-logo-info {
        width: 100%;
    }
    
    .ft-info-sub {
        padding-left: 0;
    }
}

/* Quick Menu Styles */
#quick-box {
    z-index: 999;
    position: fixed;
    right: -320px;
    bottom: 56px;
    transition: right 0.3s ease-out;
    display: flex;
}

#quick-box.open {
    right: 0;
}

.quick-sidebar {
    width: 64px;
}

#quick-btn {
    margin-bottom: 32px;
    border-radius: 8px 0 0 8px;
    padding: 40px 0 24px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 121, 1, 0.45) 0%, rgba(255, 94, 1, 0.45) 100%), linear-gradient(#FF7901, #FF7901);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#quick-btn:hover {
    background: linear-gradient(180deg, rgba(255, 121, 1, 0.6) 0%, rgba(255, 94, 1, 0.6) 100%), linear-gradient(#FF7901, #FF7901);
}

#quick-btn .btn-text {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    line-height: 1.8;
}

#quick-btn .btn-icon {
    background: #1a1a1a;
    border-radius: 12px;
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
    margin: 0 auto;
}

#quick-btn .btn-icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    color: #FF7901;
    transition: transform 0.3s ease;
}

#quick-btn .btn-icon svg.rotate {
    transform: translate(-50%, -50%) rotate(180deg);
}

#skip {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

#skip li {
    cursor: pointer;
    position: relative;
    background: #000;
    border-radius: 50%;
    border: 1px solid #333;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

#skip li:hover {
    background: #FF7901;
    border-color: #FF7901;
}

#skip li:hover svg {
    color: #000;
}

#skip li a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height: 35px;
}

#skip li svg {
    width: 24px;
    height: 24px;
    color: #FF7901;
    transition: color 0.3s ease;
}

.quick-form-wrapper {
    background: #000;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #333;
    border-radius: 0 0 0 8px;
    width: 320px;
}

.quick-form-wrapper fieldset {
    padding: 0;
    margin: 0;
    border: none;
}

.quick-form-wrapper legend {
    color: white;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.category-select-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.category-select-wrapper .select-button-wrapper {
    position: relative;
    z-index: 30;
}

.category-select-wrapper .icon-menu {
    z-index: 20;
    color: #FF7901;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translate(-50%, -50%);
}

#selected-category {
    padding: 16px;
    z-index: 10;
    background: #000;
    font-weight: 600;
    font-size: 16px;
    color: #FF7901;
    width: 100%;
    border: 2px solid #FF7901;
    border-radius: 12px;
    position: relative;
    text-align: left;
    padding-left: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#selected-category:hover {
    background: rgba(0, 102, 255, 0.1);
}

#arrow-icon {
    z-index: 20;
    color: #FF7901;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 16px;
    top: 50%;
}

#arrow-icon.rotate {
    transform: translateY(-50%) rotate(180deg);
}

#category-list {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 20;
    position: absolute;
    top: 80px;
    left: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #000;
    width: 100%;
    padding: 40px 0 20px;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
    margin: 0;
}

#category-list.show {
    display: block;
    opacity: 1;
}


#category-list li {
    padding: 0;
    text-align: center;
    cursor: pointer;
}

#category-list li button {
    transition: all 0.3s ease;
    width: 100%;
    color: #666;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

#category-list li button:hover {
    color: #FF7901;
}

.quick-input-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.quick-input-wrapper {
    position: relative;
}

.quick-input-wrapper label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.quick-input-wrapper label span {
    color: white;
}

.quick-input-wrapper label .required {
    color: #FF7901;
}

.quick-input-wrapper input {
    font-size: 14px;
    font-weight: 700;
    color: white;
    padding-left: 96px;
    padding-right: 20px;
    background: #1a1a1a;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.quick-input-wrapper textarea {
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    padding: 10px;
    border: none;
}

.quick-input-wrapper input:focus {
    border-color: #FF7901;
}

.quick-input-wrapper input::placeholder {
    color: #666;
}

.privacy-check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.privacy-check label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    display: block;
}

.privacy-check input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.quick-submit-wrapper {
    width: 100%;
}

#quick_contact_submit_btn {
    transition: all 0.3s ease;
    background: var(--primary-color);
    border-radius: 8px;
    padding: 20px 48px;
    border: 1px solid var(--primary-color);
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

#quick_contact_submit_btn:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

#quick_contact_submit_btn .btn-submit-text {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    color: white;
    padding-right: 24px;
}

#quick_contact_submit_btn .btn-submit-text svg {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Quick Menu - 모바일에서는 숨김 */
@media (max-width: 768px) {
    #quick-box {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .quick-sidebar {
        width: 56px;
    }
    
    #quick-btn {
        padding: 32px 0 20px;
    }
    
    #quick-btn .btn-text {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .quick-form-wrapper {
        width: 280px;
        padding: 16px;
    }
    
    #quick-box {
        right: -280px;
    }
}

/* Team Swiper Styles */
.team-swiper {
    padding: 0 50px 60px;
    position: relative;
}

.team-swiper .swiper-slide {
    height: auto;
}

.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
    color: #FF7901;
    background: rgba(0, 102, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
    background: #FF7901;
    color: #fff;
}

.team-swiper .swiper-button-next::after,
.team-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.team-swiper .swiper-pagination {
    bottom: 20px;
}

.team-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #666;
    opacity: 1;
    transition: all 0.3s ease;
}

.team-swiper .swiper-pagination-bullet-active {
    background: #FF7901;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .team-swiper {
        padding: 0 30px 50px;
    }
    
    .team-swiper .swiper-button-next,
    .team-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .team-swiper .swiper-button-next::after,
    .team-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}




/* ========================
   Scroll Cards Section
======================== */
.cs_scroll_cards_section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* 스크롤 인디케이터 */
.cs_scroll_indicator {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cs_indicator_line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
}

.cs_indicator_progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #FF7901 0%, #ff5e01 100%);
    transition: height 0.3s ease;
}

.cs_indicator_items {
    position: relative;
    z-index: 1;
}

.cs_indicator_item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    padding-bottom: 400px;
    position: relative;
    left: 13px;
    z-index: 5;
}

.cs_indicator_item:last-of-type {
    padding-bottom: 0;
}

.cs_indicator_item.active {
    opacity: 1;
}

.cs_indicator_dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cs_indicator_item.active .cs_indicator_dot {
    width: 16px;
    height: 16px;
    background: #FF7901;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
}

.cs_indicator_text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.cs_indicator_item.active .cs_indicator_text {
    color: #FF7901;
    font-size: 16px;
}

/* 카드 스타일 */
.cs_cards_wrapper {
    padding-left: 30px;
}

.cs_scroll_card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cs_scroll_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cs_card_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cs_scroll_card:hover .cs_card_bg {
    transform: scale(1.1);
}

.cs_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
}

.cs_scroll_card:hover .cs_card_overlay {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.cs_card_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.cs_card_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    transition: all 0.3s ease;
}

.cs_scroll_card:hover .cs_card_title {
    color: #ed9524;
}

.cs_card_desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.cs_scroll_card:hover .cs_card_desc {
    opacity: 1;
    transform: translateY(0);
}

.cs_card_btn {
    display: inline-block;
    padding: 10px 25px;
    background: #FF7901;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.cs_scroll_card:hover .cs_card_btn {
    opacity: 1;
    transform: translateY(0);
}

.cs_card_btn:hover {
    background: #0052cc;
    color: white;
    transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 991px) {
    .cs_scroll_indicator {
        display: none;
    }
    
    .cs_cards_wrapper {
        padding-left: 0;
    }
    
    .cs_scroll_card {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .cs_scroll_card {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .cs_card_title {
        font-size: 22px;
    }
    
    .cs_card_desc {
        font-size: 14px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .cs_card_btn {
        opacity: 1;
        transform: translateY(0);
    }
}



 /* Stats Counter Styles  */
.stats-counter-section {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 50px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #f5c842;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.counter {
    font-family: 'Arial', sans-serif;
}

.stat-unit {
    font-size: 24px;
    font-weight: 400;
    margin-left: 5px;
}

.stats-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* 태블릿 */
@media screen and (max-width: 1024px) {
    .stats-counter-section {
        bottom: 0px;
        padding: 0 30px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-title {
        font-size: 16px;
    }
}

/* 모바일 */
@media screen and (max-width: 768px) {
    .stats-counter-section {
        bottom: 0px;
        padding: 0 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-unit {
        font-size: 18px;
    }

    .stat-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .stats-note {
        font-size: 12px;
        margin-top: 15px;
    }
}



/* history-section */
.history-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.history-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.history-timeline {
    position: relative;
    padding-left: 50px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF7901 0%, #ed9524 50%, rgba(0, 102, 255, 0.2) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.history-item {
    position: relative;
    margin-bottom: 60px;
    /* padding-left: 40px; */
    opacity: 0;
    transition: all 0.3s ease;
}

.history-item:hover {
    transform: translateX(10px);
}

.history-item[data-aos] {
    opacity: 1;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(255, 174, 0, 0.2), 0 4px 12px rgba(255, 174, 0, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.history-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 166, 0, 0.3), 0 6px 20px rgba(0, 102, 255, 0.5);
}

.history-year {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.history-item:hover .history-year {
    transform: scale(1.05);
}

.history-content-wrapper {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* border-left: 4px solid #FF7901; */
}

.history-item:hover .history-content-wrapper {
    box-shadow: 0 8px 30px rgba(255, 191, 0, 0.15);
    border-left-width: 6px;
}

.history-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.history-content:last-child {
    margin-bottom: 0;
}

.history-content::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #FF7901;
    font-size: 18px;
    font-weight: bold;
}

.history-item:hover .history-content {
    color: #1a1a1a;
    padding-left: 28px;
}

.history-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    bottom: -30px;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, #FF7901 0%, transparent 100%);
}

.history-header {
    text-align: center;
    margin-bottom: 80px;
}

.history-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.history-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.history-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.history-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .history-section {
        padding: 80px 0;
    }

    .history-section .inner {
        padding: 0 5px;
    }

    .history-header {
        margin-bottom: 60px;
    }

    .history-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .history-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .history-timeline {
        padding-left: 50px;
    }

    .history-timeline::before {
        left: 15px;
        width: 2px;
    }

    .history-item {
        /* padding-left: 30px; */
        margin-bottom: 50px;
    }

    .history-item::before {
        /* left: 7px; */
        left: -43px;
        top: 10px;
        width: 18px;
        height: 18px;
        border: 3px solid #fff;
    }

    .history-year {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .history-content-wrapper {
        padding: 20px;
        border-radius: 12px;
        border-left-width: 3px;
    }

    .history-content {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .history-content::before {
        font-size: 16px;
    }

    .history-item:not(:last-child)::after {
        left: 7px;
        width: 18px;
    }
}
/* ========================
   Vision & Mission Section
======================== */
.vision-mission-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.vision-mission-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.vision-mission-section .section-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-mission-section .section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.visionSwiper {
    width: 100%;
    padding-bottom: 80px;
}

.vm-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-height: 600px;
    /* padding: 40px; */
}

.vm-slide-content.reverse {
    direction: rtl;
}

.vm-slide-content.reverse > * {
    direction: ltr;
}

.vm-text-column {
    /* padding: 40px; */
}

.vm-number {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.vm-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.vm-description {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.vm-description p {
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.vm-description p:last-child {
    margin-bottom: 0;
}

.vm-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #FF7901;
    border-radius: 50%;
}

.vm-description p strong {
    display: block;
    color: #FF7901;
    font-weight: 700;
    margin-bottom: 8px;
}

.vm-image-column {
    height: 100%;
    min-height: 600px;
}

.vm-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    position: relative;
    overflow: hidden;
}

.vm-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
}

.vm-button-next,
.vm-button-prev {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    color: #FF7901;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vm-button-next:hover,
.vm-button-prev:hover {
    background: #FF7901;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.3);
}

.vm-button-next::after,
.vm-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.vm-pagination {
    bottom: -80px !important;
}

.vm-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.vm-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

@media (max-width: 1024px) {
    .vision-mission-section {
        padding: 80px 0;
    }

    .vision-mission-container {
        padding: 0 10px;
    }

    .vm-slide-content {
        gap: 40px;
        min-height: 500px;
        /* padding: 30px; */
    }

    .vm-text-column {
        padding: 30px;
    }

    .vm-number {
        font-size: 60px;
    }

    .vm-title {
        font-size: 32px;
    }

    .vm-description {
        font-size: 16px;
    }

    .vm-image-column {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .vision-mission-section .section-title {
        font-size: 36px;
    }

    .vision-mission-section .section-subtitle {
        font-size: 13px;
    }

    .vision-mission-container {
        padding: 0 5px;
    }

    .vision-mission-section .section-header {
        margin-bottom: 60px;
    }

    .visionSwiper {
        padding-bottom: 60px;
    }

    .vm-slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        /* padding: 20px; */
    }

    .vm-slide-content.reverse {
        direction: ltr;
    }

    .vm-text-column {
        padding: 20px;
    }

    .vm-number {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .vm-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .vm-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .vm-description p {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .vm-description p::before {
        top: 10px;
        width: 5px;
        height: 5px;
    }

    .vm-image-column {
        min-height: 300px;
        order: -1;
    }

    .vm-image {
        border-radius: 15px;
    }

    .vm-button-next,
    .vm-button-prev {
        width: 50px;
        height: 50px;
    }

    .vm-button-next::after,
    .vm-button-prev::after {
        font-size: 20px;
    }

    .vm-pagination .swiper-pagination-bullet {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 4px;
    }
}


/* ========================
    Badge Styles
======================== */
.vs-badge {
     display: inline-block;
     padding: 10px 20px;
     font-size: 1.8rem;
     font-weight: 600;
     line-height: 1;
     text-align: center;
     white-space: nowrap;
     vertical-align: baseline;
     border-radius: 4px;
     transition: all 0.3s ease;
}

.vs-badge.primary {
     background: linear-gradient(#FF7901, #ed9524);
     color: white;
}

.vs-badge.success {
     background: #28a745;
     color: white;
}

.vs-badge.warning {
     background: #ffc107;
     color: #1a1a1a;
}

.vs-badge.danger {
     background: #dc3545;
     color: white;
}

.vs-badge.info {
     background: #17a2b8;
     color: white;
}

.vs-badge.light {
     background: #f8f9fa;
     color: #1a1a1a;
     border: 1px solid #e0e0e0;
}

.vs-badge.dark {
     background: #1a1a1a;
     color: white;
}

.vs-badge.pill {
     border-radius: 50px;
}

.vs-badge.dot {
     width: 8px;
     height: 8px;
     padding: 0;
     border-radius: 50%;
}

.vs-badge:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* ========================
   Homepage Sections
======================== */

/* Homepage Second Container - 문의 안들어오는 3가지 이유 */
.hp-second-container {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hp-second-container::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hp-section-header {
    margin-bottom: 80px;
}

.hp-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hp-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin-top: 15px;
}

.hp-reason-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hp-reason-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}


.hp-reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.15);
}

.hp-reason-card:hover::before {
    transform: scaleX(1);
}

.hp-reason-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.hp-reason-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hp-reason-title strong {
    color: #FF7901;
    display: block;
}

.hp-reason-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.hp-bottom-cta {
    margin-top: 100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(184, 78, 30, 0.3);
}

.hp-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hp-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hp-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #FF7901;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #FF7901;
}

/* Homepage Third Container - ���� ��� */
.hp-third-container {
    padding: 120px 0;
    background: white;
}

.hp-case-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.hp-case-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.hp-case-card:hover {
    border-color: #FF7901;
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(0, 102, 255, 0.15);
}

.hp-case-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 40px;
}

.hp-case-stats {
    display: flex;
    /* flex-direction: column; */
    gap: 40px;
}

.hp-stat-item {
    position: relative;
}

.hp-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 15px;
}

.hp-stat-sub {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-left: 8px;
}

.hp-stat-percent {
    display: inline-block;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
}

.hp-stat-percent.hp-up {
    background: rgba(211, 150, 52, 0.15);
    color: var(--primary-color);
}

.hp-stat-percent.hp-up::before {
    content: '';
    margin-right: 5px;
}

.hp-stat-percent.hp-down {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.hp-stat-percent.hp-down::before {
    content: '';
    margin-right: 5px;
}

/* Homepage Fourth Container - ���� ��� ������ */
.hp-fourth-container {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.hp-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hp-portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    z-index: 10;
}

.hp-portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hp-portfolio-item:hover .hp-portfolio-img {
    transform: scale(1.2);
}

.hp-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.hp-portfolio-item:hover .hp-portfolio-overlay {
    transform: translateY(0);
}

.hp-portfolio-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Homepage Fifth Container - ���� Ư¡ */
.hp-fifth-container {
    padding: 120px 0;
    background: white;
}

.hp-feature-items {
    margin-top: 80px;
}

.hp-feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hp-feature-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hp-feature-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

.hp-feature-desc small {
    color: #999;
    font-size: 14px;
}

.hp-feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hp-feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hp-feature-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 102, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hp-main-title {
        font-size: 36px;
    }
    
    .hp-reason-card {
        min-height: 320px;
        padding: 40px 30px;
    }
    
    .hp-reason-number {
        font-size: 60px;
    }
    
    .hp-reason-title {
        font-size: 22px;
    }
    
    .hp-cta-title {
        font-size: 26px;
    }
    
    .hp-stat-value {
        font-size: 28px;
    }
    
    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hp-feature-title {
        font-size: 28px;
    }
    
    .hp-feature-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hp-second-container,
    .hp-third-container,
    .hp-fourth-container,
    .hp-fifth-container {
        padding: 80px 0;
    }
    
    .hp-section-header {
        margin-bottom: 50px;
    }
    
    .hp-main-title {
        font-size: 28px;
    }
    
    .hp-subtitle {
        font-size: 16px;
    }
    
    .hp-reason-card {
        min-height: auto;
        padding: 35px 25px;
    }
    
    .hp-reason-number {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hp-reason-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hp-reason-desc {
        font-size: 15px;
    }
    
    .hp-bottom-cta {
        margin-top: 60px;
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .hp-cta-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .hp-cta-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hp-cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
    
    .hp-case-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .hp-case-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
    
    .hp-stat-value {
        font-size: 24px;
    }
    
    .hp-stat-sub {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .hp-stat-percent {
        font-size: 16px;
        padding: 6px 16px;
    }
    
    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .hp-portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    }
    
    .hp-portfolio-title {
        font-size: 14px;
    }
    
    .hp-feature-items {
        margin-top: 50px;
    }
    
    .hp-feature-content {
        padding: 20px;
    }
    
    .hp-feature-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .hp-feature-desc {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .hp-feature-image {
        padding: 10px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hp-portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================
   Homepage Sections
======================== */

/* Homepage Second Container - 문의 ?�들?�오??3가지 ?�유 */
.hp-second-container {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hp-second-container::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hp-section-header {
    margin-bottom: 80px;
}

.hp-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hp-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin-top: 15px;
}

.hp-reason-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hp-reason-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.hp-reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.15);
}

.hp-reason-card:hover::before {
    transform: scaleX(1);
}

.hp-reason-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.hp-reason-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hp-reason-title strong {
    color: #FF7901;
    display: block;
}

.hp-reason-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.hp-bottom-cta {
    margin-top: 100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(184, 78, 30, 0.3);
}

.hp-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hp-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hp-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #FF7901;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #FF7901;
}

/* Homepage Third Container - ?�공 ?��? */
.hp-third-container {
    padding: 120px 0;
    background: white;
}

.hp-case-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.hp-case-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.hp-case-card:hover {
    border-color: #FF7901;
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(0, 102, 255, 0.15);
}

.hp-case-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 40px;
}

.hp-case-stats {
    display: flex;
    /* flex-direction: column; */
    gap: 40px;
}

.hp-stat-item {
    position: relative;
}

.hp-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 15px;
}

.hp-stat-sub {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-left: 8px;
}

.hp-stat-percent {
    display: inline-block;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
}

.hp-stat-percent.hp-up {
    background: rgba(211, 150, 52, 0.15);
    color: var(--primary-color);
}

.hp-stat-percent.hp-up::before {
    content: '';
    margin-right: 5px;
}

.hp-stat-percent.hp-down {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.hp-stat-percent.hp-down::before {
    content: '';
    margin-right: 5px;
}

/* Homepage Fourth Container - ?�공 ?��? 갤러�?*/
.hp-fourth-container {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.hp-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hp-portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    z-index: 10;
}

.hp-portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hp-portfolio-item:hover .hp-portfolio-img {
    transform: scale(1.2);
}

.hp-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.hp-portfolio-item:hover .hp-portfolio-overlay {
    transform: translateY(0);
}

.hp-portfolio-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Homepage Fifth Container - ?�비???�징 */
.hp-fifth-container {
    padding: 120px 0;
    background: white;
}

.hp-feature-items {
    margin-top: 80px;
}

.hp-feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hp-feature-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hp-feature-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

.hp-feature-desc small {
    color: #999;
    font-size: 14px;
}

.hp-feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hp-feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hp-feature-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 102, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hp-main-title {
        font-size: 36px;
    }

    .hp-reason-card {
        min-height: 320px;
        padding: 40px 30px;
    }

    .hp-reason-number {
        font-size: 60px;
    }

    .hp-reason-title {
        font-size: 22px;
    }

    .hp-cta-title {
        font-size: 26px;
    }

    .hp-stat-value {
        font-size: 28px;
    }

    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-feature-title {
        font-size: 28px;
    }

    .hp-feature-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hp-second-container,
    .hp-third-container,
    .hp-fourth-container,
    .hp-fifth-container {
        padding: 80px 0;
    }

    .hp-section-header {
        margin-bottom: 50px;
    }

    .hp-main-title {
        font-size: 28px;
    }

    .hp-subtitle {
        font-size: 16px;
    }

    .hp-reason-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .hp-reason-number {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .hp-reason-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hp-reason-desc {
        font-size: 15px;
    }

    .hp-bottom-cta {
        margin-top: 60px;
        padding: 40px 25px;
        border-radius: 20px;
    }

    .hp-cta-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hp-cta-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hp-cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }

    .hp-case-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .hp-case-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .hp-stat-value {
        font-size: 24px;
    }

    .hp-stat-sub {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .hp-stat-percent {
        font-size: 16px;
        padding: 6px 16px;
    }

    .hp-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .hp-portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    }

    .hp-portfolio-title {
        font-size: 14px;
    }

    .hp-feature-items {
        margin-top: 50px;
    }

    .hp-feature-content {
        padding: 20px;
    }

    .hp-feature-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hp-feature-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .hp-feature-image {
        padding: 10px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hp-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* SubFooter Styles */
.subfooter {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.subfooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF7901 0%, #ed9524 50%, #FF7901 100%);
}

.subfooter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.subfooter-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.subfooter-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subfooter-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 30px;
}

.subfooter-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF7901 0%, #ed9524 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.subfooter-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    color: white;
}

.subfooter-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.subfooter-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subfooter-links ul li {
    margin-bottom: 15px;
}

.subfooter-links ul li a {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.subfooter-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF7901;
}

.subfooter-links ul li a:hover {
    color: #FF7901;
    padding-left: 20px;
}

.subfooter-links ul li a:hover::before {
    opacity: 1;
}

.subfooter-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.subfooter-bottom p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .subfooter-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .subfooter-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .subfooter {
        padding: 60px 0 30px;
    }

    .subfooter-container {
        padding: 0 20px;
    }

    .subfooter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .subfooter-info h3 {
        font-size: 24px;
    }

    .subfooter-info p {
        font-size: 15px;
    }

    .subfooter-cta {
        padding: 14px 35px;
        font-size: 15px;
    }

    .subfooter-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}



/* SubFooter Fragment Styles */
.SubFooter_FooterContent__QKgwd {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.SubFooter_FooterContent__QKgwd::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.SubFooter_TextWrapper__jDNd7 {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.SubFooter_TextWrapper__jDNd7 h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.SubFooter_TextWrapper__jDNd7 p {
    font-size: 20px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.SubFooter_TextWrapper__jDNd7 p span {
    color: #FF7901;
    font-weight: 700;
}

.SubFooter_ButtonWrapper__bBMTP {
    position: relative;
    z-index: 1;
}

.BasicButton_button__JoB5c {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FF7901 0%, #ff5e01 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 121, 1, 0.4);
}

.BasicButton_button__JoB5c:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 121, 1, 0.5);
}

.BasicButton_button__JoB5c img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.BasicButton_button__JoB5c:hover img {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .SubFooter_FooterContent__QKgwd {
        padding: 80px 20px;
    }

    .SubFooter_TextWrapper__jDNd7 {
        margin-bottom: 40px;
    }

    .SubFooter_TextWrapper__jDNd7 h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .SubFooter_TextWrapper__jDNd7 p {
        font-size: 16px;
    }

    .BasicButton_button__JoB5c {
        padding: 16px 40px;
        font-size: 16px;
    }

    .BasicButton_button__JoB5c img {
        width: 16px;
        height: 16px;
    }
}

/* Chart.js Styles for Success Cases */
.hp-case-chart-wrapper {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hp-case-chart-wrapper canvas {
    max-height: 260px;
}

@media (max-width: 768px) {
    .hp-case-chart-wrapper {
        height: auto;
        padding: 15px;
    }
    
    .hp-case-chart-wrapper canvas {
        max-height: 220px;
    }
}



/* 비디오 포트폴리오 세션 */
.video-portfolio-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 121, 1, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 121, 1, 0.15);
}

.video-wrapper-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
    overflow: hidden;
    background: #000;
}

.video-wrapper-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-portfolio-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-portfolio-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-portfolio-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .video-portfolio-section {
        padding: 80px 0;
    }

    .video-portfolio-info {
        padding: 25px;
    }

    .video-portfolio-title {
        font-size: 20px;
    }

    .video-portfolio-desc {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .video-portfolio-section {
        padding: 60px 0;
    }

    .cs_section_heading_in h2 {
        font-size: 28px !important;
    }

    .cs_section_heading_in p {
        font-size: 16px !important;
    }

    .video-portfolio-info {
        padding: 20px;
    }

    .video-portfolio-title {
        font-size: 18px;
    }
}

/* Organization Chart Styles */
.organization-chart-section {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}

.org-chart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.org-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 3px solid transparent;
    position: relative;
}

.org-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

/* 대표이사 스타일 */
.org-ceo {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: white;
    min-width: 280px;
    border-color: var(--primary-color);
}

.org-ceo .org-icon {
    color: white;
}

/* 이사 스타일 */
.org-director {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    min-width: 250px;
    border-color: #f093fb;
}

.org-director .org-icon {
    color: white;
}

/* 팀 스타일 */
.org-team {
    background: white;
    border-color: #e0e7ff;
    min-width: 200px;
    margin: 10px;
}

.org-team:hover {
    border-color: var(--primary-color);
}

/* 아이콘 스타일 */
.org-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
}

.org-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: white;
}

/* 텍스트 스타일 */
.org-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.org-subtitle {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.org-team-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0 6px 0;
}

.org-team-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 연결선 */
.org-connector {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
}

.org-connector-vertical {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #764ba2 100%);
    border-radius: 2px;
}

.org-connector-horizontal {
    width: 100%;
    max-width: 1200px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--primary-color) 0%, #f093fb 50%, var(--primary-color) 100%); */
    border-radius: 2px;
    margin: 0 auto 40px;
    position: relative;
}

.org-connector-horizontal::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #f093fb;
}

/* 부서 그리드 */
.org-departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 반응형 */
@media (max-width: 1200px) {
    .org-departments {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .organization-chart-section {
        padding: 50px 0;
    }

    .org-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .org-ceo, .org-director {
        min-width: 220px;
    }

    .org-card {
        padding: 25px 20px;
    }

    .org-title {
        font-size: 20px;
    }

    .org-team-title {
        font-size: 16px;
    }

    .org-team-desc {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .organization-chart-section {
        padding: 40px 0;
    }

    .org-departments {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .org-ceo, .org-director {
        min-width: 200px;
    }

    .org-card {
        padding: 20px 15px;
    }

    .org-icon {
        width: 60px;
        height: 60px;
    }

    .org-icon-small {
        width: 45px;
        height: 45px;
    }

    .org-title {
        font-size: 18px;
    }

    .org-subtitle {
        font-size: 14px;
    }

    .org-team-title {
        font-size: 15px;
    }

    .org-connector-vertical {
        height: 30px;
    }

    .org-connector-horizontal {
        margin: 0 auto 30px;
    }
}

/* Review Section Styles */
.review-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.review-title-content {
    margin-bottom: 60px;
}

.review-subtitle {
    color: #666;
    margin-top: 15px;
}

.review-subtitle span {
    font-weight: 600;
}

.review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.review-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffd700;
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.review-info {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: auto;
}

.review-author {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-detail {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.review-button-wrapper {
    margin-top: 60px;
}

/* Service Section Styles */
.main-service-section {
    background: #ffffff;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item-card {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* background: linear-gradient(90deg, #007bff 0%, #0056b3 100%); */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item-card:hover::before,
.service-active::before {
    transform: scaleX(1);
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--primary-color);
}

.service-active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.service-head {
    margin-bottom: 25px;
}

.service-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.service-content {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.service-main-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-main-title span {
    color: var(--primary-color);
    display: block;
    font-size: 20px;
}

.service-text-wrapper {
    margin-bottom: 30px;
}

.service-text-wrapper p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-text-wrapper p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #FF7901 0%, #ff5e01 100%);
    
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-list-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(255, 174, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
    background: #f8f9ff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px;
    margin-top: 15px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #FF7901 0%, #ff5e01 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 121, 1, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 121, 1, 0.5);
}

.btn-primary-large i {
    transition: transform 0.3s ease;
}

.btn-primary-large:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .review-section,
    .main-service-section,
    .faq-section {
        padding: 80px 0;
    }

    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .review-image {
        height: 220px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-main-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .review-section,
    .main-service-section,
    .faq-section {
        padding: 60px 0;
    }

    .review-content {
        padding: 25px 20px;
    }

    .review-image {
        height: 200px;
    }

    .service-item-card {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-main-title {
        font-size: 18px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .btn-primary-large {
        padding: 16px 35px;
        font-size: 16px;
    }
}


