/* css/메인페이지.css */

/* Main Banner */
.main-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.banner-label {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.btn-banner {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fff;
    letter-spacing: 0.5px;
}

.btn-banner:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Banner Controls */
.banner-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #fff;
    width: 60px;
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.banner-prev,
.banner-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    word-break: keep-all;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--lq-accent-primary);
    box-shadow: 0 0 10px rgba(217, 96, 59, 0.18);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lq-accent-primary) 0%, var(--lq-accent-primary-dark) 100%);
    color: #fff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    word-break:keep-all;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #faf8f8;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-showcase {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    padding:10px;
}

.product-showcase:hover { 
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: #df5337;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--lq-accent-primary);
}

.product-content {
    padding: 20px 0px 0px;
    display: flex;
    flex-direction: column;
    flex:1;
}

.product-wrap {
    flex:1;
    padding:0 20px;
}

.product-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--lq-accent-primary-light);
    color: var(--lq-accent-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 12px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-price {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-bottom: 24px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.price-value {
    text-align: right;
}

.price-original {
    display: block;
    font-size: 13px;
    line-height:1.2;
    color: #999;
    text-decoration: line-through; 
}

.price-current {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #df5337;
}

.btn-product {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--lq-accent-primary);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--lq-accent-primary);
}

.btn-product:hover {
    background: var(--lq-accent-primary-dark);
    border-color: var(--lq-accent-primary-dark);
    transform: translateY(-2px); 
}

.section-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: var(--lq-accent-primary);
    border: 2px solid var(--lq-accent-primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: var(--lq-accent-primary);
    color: #fff;  
}

/* Rental Section */
.rental-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lq-accent-primary) 0%, var(--lq-accent-primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rental-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.rental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rental-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.rental-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.rental-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.rental-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.rental-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 16px;
}

.rental-benefits svg {
    flex-shrink: 0;
}

.rental-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-rental {
    padding: 16px 32px;
    background: #fff;
    color: var(--lq-accent-primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #fff;
}

.btn-rental:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.rental-note {
    font-size: 14px;
    opacity: 0.9;
}

.rental-card {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-plan {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.card-discount {
    padding: 6px 12px;
    background: #df5337;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.card-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.card-price-label {
    font-size: 20px;
    color: #666;
}

.card-price-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--lq-accent-secondary);
}

.card-price-unit {
    font-size: 20px;
    color: #666;
}

.card-features {
    list-style: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}

.card-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.card-features li:last-child {
    border-bottom: none;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #faf8f8;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    background: #fff;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.08); 
    border-color: #e8e8e8;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating span {
    color: #FFB800;
    font-size: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info {
    display: flex;
    flex-direction: column; 
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.author-business {
    font-size: 13px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background:url(https://d1gwlf1t9hpxea.cloudfront.net/static/images/user/bt-bg.png);
    /* background: #674e48; */
    color: #fff;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary,
.btn-cta-secondary {
    justify-content: center;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-primary {
    background: var(--lq-accent-primary);
    color: #fff;
    border: 2px solid var(--lq-accent-primary);
}

.btn-cta-primary:hover {
    background: var(--lq-accent-primary-dark);
    border-color: var(--lq-accent-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 96, 59, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


.footer {margin-top:0;}


/* Responsive */
@media (max-width: 1200px) {
    .rental-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 1024px) {

    .features-grid {gap:15px;}

    .products-showcase {gap:15px;}

    .banner-title {font-size:60px;}

    .btn-banner {
        padding:10px 25px;
    }

    .section-title {font-size:36px;}

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


}


@media (max-width: 768px) {

    .features {
        padding:80px 0;
    }

    .banner-title {font-size:60px;}

    .btn-banner {
        font-size:14px;
        padding:7px 15px;
    }


    .main-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .banner-title {
        font-size: 42px;
        margin-bottom:30px;
    }
    
    .banner-label {
        font-size: 14px;
    }
    
    .banner-controls {
        padding: 0 20px;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        display: none;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .products-showcase,
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-card {
        padding: 30px;
    }
    
    .card-price-value {
        font-size: 42px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    .banner-label {margin-bottom:10px;}

    .section-subtitle {font-size:16px;}

    .cta-description {font-size:16px;}


}

@media (max-width: 480px) {

    .cta-description {font-size:15px;}

    .cta-title {
        font-size:26px;
    }


    .section-title {
        font-size:26px;
        line-height:1.5;
    }


    .section-subtitle {font-size:15px;}

    .main-banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .banner-content {
        padding: 0 20px 20px;
    }
    
    .banner-title {
        font-size: 32px;
        margin-bottom:20px;
    }

    .btn-banner {padding:5px 10px; font-size:13px;border-radius:5px;}

    .features,
    .products-section,
    .rental-section,
    .testimonial-section,
    .cta-section {
        padding: 60px 0;
    }
}
