/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    /* Primary Colors */
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #758bff;
    
    /* Secondary Colors */
    --secondary-color: #2ec4b6;
    --secondary-dark: #21a99d;
    --secondary-light: #3fdcce;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    
    /* Accent Colors */
    --accent-1: #ff5e7d;
    --accent-2: #ffb86c;
    --accent-3: #10b981;
    
    /* Font */
    --body-font: 'Noto Sans KR', sans-serif;
    --heading-font: 'Montserrat', 'Noto Sans KR', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-lg-6 {
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
    
    .order-lg-1 {
        order: 1;
    }
    
    .order-lg-2 {
        order: 2;
    }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products-section {
    background-color: var(--white);
    overflow: hidden;
}

.products-container {
    position: relative;
    padding: 10px;
}

.swiper-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.products-button-prev, .products-button-next,
.companies-button-prev, .companies-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.products-button-prev:hover, .products-button-next:hover,
.companies-button-prev:hover, .companies-button-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.products-swiper {
    overflow: visible;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .view-product {
    transform: translateY(0);
}

.view-product:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-company {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 12px;
}

.product-price {
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Companies Section
--------------------------------------------------------------*/
.companies-section {
    background-color: var(--gray-100);
    overflow: hidden;
}

.companies-container {
    position: relative;
    padding: 10px;
}

.company-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.company-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.company-logo img {
    max-height: 60px;
    max-width: 100%;
}

.company-logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--gray-200);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--gray-600);
}

.company-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 18px;
    margin-bottom: 10px;
}

.company-location {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.company-location i {
    margin-right: 5px;
}

.company-business {
    background-color: var(--gray-200);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.company-intro {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-link {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.company-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.company-link:hover {
    color: var(--primary-dark);
}

.company-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Inquiry Section
--------------------------------------------------------------*/
.inquiry-section {
    padding: 80px 0;
    background-color: var(--white);
}

.inquiry-container {
    background-color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.inquiry-content {
    padding: 60px;
    color: var(--white);
    width: 50%;
}

.inquiry-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.inquiry-content p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.inquiry-content .primary-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.inquiry-content .primary-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.inquiry-image {
    width: 50%;
    position: relative;
}

.inquiry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .inquiry-container {
        flex-direction: column;
    }
    
    .inquiry-content, .inquiry-image {
        width: 100%;
    }
    
    .inquiry-content {
        padding: 40px;
    }
    
    .inquiry-image {
        height: 300px;
    }
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-section {
    background-color: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-image {
    position: relative;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
    color: var(--primary-color);
    line-height: 1;
}

.news-date .month {
    font-size: 12px;
    color: var(--gray-600);
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.news-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-dark);
}

.news-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: 100px 0;
    background-color: var(--white);
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-container .primary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-container .primary-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.cta-container .secondary-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.cta-container .secondary-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding-top: 80px;
}

.footer a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-800);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-links h5, .footer-contact h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid var(--gray-800);
}

.copyright, .business-info {
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        padding-right: 0;
    }
    
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.primary-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.secondary-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.4);
}

.outline-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.login-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
}

.login-btn:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.signup-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2);
}

.signup-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: var(--transition);
}

.loader {
    width: 80px;
    height: 80px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 201;
    stroke-dashoffset: 201;
    animation: loader 2s linear infinite;
}

@keyframes loader {
    0% {
        stroke-dashoffset: 201;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -201;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    transition: var(--transition);
}

.desktop-menu {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition);
    position: relative;
}

.nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover:before, .nav-link.active:before {
    width: 100%;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background-color: var(--gray-800);
    display: block;
    margin: 6px 0;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    transition: var(--transition-slow);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-container {
    padding: 30px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-menu {
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--primary-color);
}

.mobile-menu .nav-menu {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 30px;
}

.mobile-menu .nav-item {
    margin: 10px 0;
}

.mobile-menu .nav-link {
    font-size: 16px;
    display: block;
    padding: 8px 0;
}

.mobile-menu .auth-buttons {
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu .login-btn, .mobile-menu .signup-btn {
    width: 100%;
    margin: 8px 0;
    text-align: center;
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-inner {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .outline-btn {
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .outline-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.swiper-button-prev, .swiper-button-next {
    position: static;
    width: 80px;
    height: 40px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 16px;
}

.swiper-pagination {
    position: static;
    width: auto;
    margin: 0 20px;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--white);
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.hero-scroll-down a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    animation: scrollDown 2s infinite;
}

.hero-scroll-down a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .primary-btn, .hero-buttons .outline-btn {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Categories Section
--------------------------------------------------------------*/
.categories-section {
    background-color: var(--gray-100);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-item {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-item a {
    display: block;
    padding: 30px;
    color: var(--gray-800);
}

.category-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.category-item:hover .category-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.category-item:hover h3 {
    color: var(--primary-color);
}

.category-item p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.category-arrow {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-item:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--white);
}

.stat-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Service Sections
--------------------------------------------------------------*/
.service-section {
    padding: 100px 0;
}

.b2b-section {
    background-color: var(--white);
}

.b2c-section {
    background-color: var(--gray-100);
}

.service-content {
    padding-right: 30px;
}

.service-features {
    margin-top: 30px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-feature:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.service-image {
    padding-left: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    opacity: 0.1;
    z-index: 1;
}

.b2c-section .image-shape {
    background-color: var(--secondary-color);
}

@media (max-width: 992px) {
    .service-content, .service-image {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .image-wrapper img {
        height: auto;
    }
}