/**
 * Modern Homepage Styles
 * @package Foreign_Trade_Pro
 */

/* ==========================================================================
   Hero Slider - Modern Enhancement
   ========================================================================== */
.hero-slider-section {
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slide-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(14, 165, 233, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.slide-title {
    font-size: 68px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: slideInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-button {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.slide-button .btn-primary {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
    position: relative;
    overflow: hidden;
}

.slide-button .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.slide-button .btn-primary:hover::before {
    left: 100%;
}

.slide-button .btn-secondary {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.slider-nav button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-nav button:hover {
    background: rgba(14, 165, 233, 0.9);
    border-color: #0EA5E9;
    transform: scale(1.15);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Stats Bar - Modern Enhancement
   ========================================================================== */
.stats-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   About Section - Modern Enhancement
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* New layout: Title at top, Image and Content side by side */

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Top section header */
.about-wrapper > .section-header {
    text-align: center;
    margin-bottom: 0;
}

.about-wrapper > .section-header .section-label {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-wrapper > .section-header .section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.about-wrapper > .section-header .section-label:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.5);
}

.about-wrapper > .section-header .section-label:hover::before {
    left: 100%;
}

.about-wrapper > .section-header .section-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #0EA5E9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -1.5px;
}

/* Image and content container */
.about-wrapper-content {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 60px;
    align-items: start;
}

.about-wrapper.no-image .about-wrapper-content {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.about-content .about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 45px;
}

.about-content .about-text p {
    margin-bottom: 20px;
}

.about-content .about-text p:last-child {
    margin-bottom: 0;
}

.about-content .company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-content .stat-item-about {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.about-content .stat-item-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-content .stat-item-about .stat-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.about-content .stat-item-about .stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: none;
}

.about-content .about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-content .btn-about-outline,
.about-content .btn-about-solid {
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.about-content .btn-about-outline {
    background: white;
    border: 3px solid #0EA5E9;
    color: #0EA5E9;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
}

.about-content .btn-about-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    transition: left 0.4s;
    z-index: -1;
}

.about-content .btn-about-outline:hover {
    color: white;
    border-color: #0EA5E9;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.45);
}

.about-content .btn-about-outline:hover::before {
    left: 0;
}

.about-content .btn-about-outline:hover i {
    transform: translateX(5px);
}

.about-content .btn-about-outline i {
    transition: transform 0.3s;
}

.about-content .btn-about-solid {
    background: linear-gradient(135deg, #14B8A6 0%, #0EA5E9 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    position: relative;
}

.about-content .btn-about-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284c7 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.about-content .btn-about-solid:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}

.about-content .btn-about-solid:hover::before {
    opacity: 1;
}

.about-wrapper .about-image {
    position: relative;
}

.about-wrapper .about-image .image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%) border-box;
}

.about-wrapper .about-image .image-wrapper:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 80px rgba(14, 165, 233, 0.3);
}

.about-wrapper .about-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.about-wrapper .about-image .image-wrapper:hover::before {
    opacity: 1;
}

.about-wrapper .about-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-wrapper .about-image .image-wrapper:hover img {
    transform: scale(1.08);
}

.about-wrapper .about-image .image-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #14B8A6 0%, #0EA5E9 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    animation: floatDecoration 7s ease-in-out infinite;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) translateX(10px) rotate(10deg);
    }
}

/* ==========================================================================
   Advantages Section - Marquee Scrolling Effect
   ========================================================================== */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.advantages-section::before,
.advantages-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.advantages-section::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}

.advantages-section::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-modern h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header-modern p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Marquee Container */
.advantages-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Track */
.advantages-track {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.advantages-track:hover {
    animation-play-state: paused;
}

/* Keyframes for Marquee - Adjusted for 3 sets */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* Advantage Card - Enhanced Modern Style */
.advantage-card {
    flex: 0 0 380px;
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.3);
    border-color: #0EA5E9;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #ccfbf1 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    background: white;
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.advantage-icon i {
    font-size: 36px;
    color: #0EA5E9;
    transition: all 0.5s;
}

.advantage-card:hover .advantage-icon i {
    color: #14B8A6;
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}

.advantage-card:hover h3 {
    color: white;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   Featured Products - Accordion Style (Full Width)
   ========================================================================== */
.featured-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

/* Accordion Container - Full Width */
.products-modern-grid {
    display: flex;
    width: 100%;
    height: 600px;
    margin-bottom: 50px;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
}

/* Individual Accordion Item */
.product-modern-card {
    position: relative;
    flex: 1;
    min-width: 100px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}

/* Expand on Hover */
.product-modern-card:hover {
    flex: 3;
}

/* Image Section - Full Height */
.product-modern-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1e293b;
}

.product-modern-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.6s;
}

.product-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modern-card:hover .product-modern-image img {
    transform: scale(1.1);
}

/* Badge */
.product-modern-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    z-index: 10;
}

/* Info Section - Overlay at Bottom Inside Image */
.product-modern-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.6s;
}

.product-modern-card:hover .product-modern-info {
    padding: 30px;
    gap: 15px;
}

/* Category */
.product-modern-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Horizontal Title - Inside Image at Bottom */
.product-modern-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    transition: all 0.6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-modern-card:hover .product-modern-title {
    font-size: 24px;
    -webkit-line-clamp: 3;
}

.product-modern-title a {
    color: white;
    transition: color 0.3s;
}

.product-modern-title a:hover {
    color: #14B8A6;
}

/* Button */
.btn-view-modern {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    text-align: center;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(15px);
    align-self: flex-start;
}

.product-modern-card:hover .btn-view-modern {
    opacity: 1;
    transform: translateY(0);
}

.btn-view-modern:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.view-all-products {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #0EA5E9;
    color: #0EA5E9;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    transform: translateY(-3px) translateX(5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* ==========================================================================
   News Section - Accordion Style (Full Width)
   ========================================================================== */
.news-section {
    padding: 100px 0;
    background: white;
}

/* Accordion Container - Full Width */
.news-accordion-grid {
    display: flex;
    width: 100%;
    height: 550px;
    margin-bottom: 50px;
    gap: 0;
    overflow: hidden;
}

/* Individual Accordion Item */
.news-accordion-card {
    position: relative;
    flex: 1;
    min-width: 100px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Expand on Hover */
.news-accordion-card:hover {
    flex: 3;
}

/* Image Section - Full Height */
.news-accordion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1e293b;
}

.news-accordion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    transition: opacity 0.6s;
}

.news-accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-accordion-card:hover .news-accordion-image img {
    transform: scale(1.1);
}

/* Info Section - Overlay at Bottom Inside Image */
.news-accordion-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.6s;
}

.news-accordion-card:hover .news-accordion-info {
    padding: 30px;
    gap: 15px;
}

/* Date Meta */
.news-accordion-info .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.news-accordion-info .news-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-accordion-info .news-date i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 5px;
}

/* Horizontal Title - Inside Image at Bottom */
.news-accordion-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    transition: all 0.6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-accordion-card:hover .news-accordion-title {
    font-size: 22px;
    -webkit-line-clamp: 3;
}

.news-accordion-title a {
    color: white;
    transition: color 0.3s;
}

.news-accordion-title a:hover {
    color: #14B8A6;
}

/* Button */
.btn-read-more {
    padding: 11px 26px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    text-align: center;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(15px);
    align-self: flex-start;
    display: inline-block;
}

.news-accordion-card:hover .btn-read-more {
    opacity: 1;
    transform: translateY(0);
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

/* ==========================================================================
   Message Board Section - Modern Enhancement
   ========================================================================== */
.message-board-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.message-board-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.message-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.message-board-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.message-board-form .form-group {
    margin-bottom: 25px;
}

.message-board-form label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 15px;
}

.message-board-form input,
.message-board-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8fafc;
}

.message-board-form input:focus,
.message-board-form textarea:focus {
    outline: none;
    border-color: #0EA5E9;
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.btn-submit-message {
    padding: 18px 40px;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-submit-message:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.45);
}

/* ==========================================================================
   CTA Section - Modern Enhancement
   ========================================================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: 60px 60px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern-primary,
.btn-modern-secondary {
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    border: none;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.btn-modern-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.5);
    color: white;
}

.btn-modern-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
    color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .section-header-modern h2,
    .about-wrapper > .section-header .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-wrapper-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content .company-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content .about-buttons {
        flex-direction: column;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .products-modern-grid {
        flex-direction: column;
        height: auto;
    }
    
    .product-modern-card {
        min-height: 350px;
    }
    
    .product-modern-title {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }
    
    .product-modern-card:hover .product-modern-title {
        font-size: 18px;
    }
    
    .btn-view-modern {
        opacity: 1;
        transform: translateY(0);
    }
    
    .news-accordion-grid {
        flex-direction: column;
        height: auto;
    }
    
    .news-accordion-card {
        min-height: 320px;
    }
    
    .news-accordion-title {
        font-size: 15px;
        -webkit-line-clamp: 3;
    }
    
    .news-accordion-card:hover .news-accordion-title {
        font-size: 17px;
    }
    
    .btn-read-more {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Advantages Marquee Mobile */
    .advantages-section::before,
    .advantages-section::after {
        width: 50px;
    }
    
    .advantages-track {
        animation-duration: 30s;
    }
    
    .advantage-card {
        flex: 0 0 300px;
        padding: 35px 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-card h3 {
        font-size: 20px;
    }
    
    .advantage-card p {
        font-size: 14px;
    }
    
    .message-form-wrapper {
        padding: 30px 20px;
    }
    
    .message-board-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

