/* ===================================
   Navigation Styles
   =================================== */

.navbar-custom {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(78, 205, 196, 0.2);
}

.navbar-custom .navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-custom .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-custom.scrolled .nav-link {
    color: #000 !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: calc(100% - 2rem);
}

/* ===================================
   Global Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #4ecdc4;
    --secondary-color: #ff6b6b;
    --accent-color: #45b7d1;
    --dark-bg: #111;
    --text-muted: #5a6c7d;
    --text-dark: #2c3e50;
    --border-color: rgba(78, 205, 196, 0.2);
    --box-shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --navbar-height: 82px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: var(--navbar-height);
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

/* Background Utilities */
.bg-dark-custom {
    background: var(--dark-bg) !important;
}

.philosophy-bg {
    background: linear-gradient(135deg, #f8f9ff, #fff3e0);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('/img/main/main-01.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
}

.img-hero {
    height: 80px;
}

@keyframes grain-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(1deg); 
    }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===================================
   Service Cards
   =================================== */

.service-card-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
}

.service-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark);
    border-color: rgba(78, 205, 196, 0.4) !important;
}

.service-card-custom:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    /* Icon display fixes */
    line-height: 1;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: white;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    /* Ensure icons are visible */
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Fallback for when Bootstrap Icons don't load */
.service-icon i:before {
    font-family: 'bootstrap-icons' !important;
    /* speak: none; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Specific icon fallbacks */
.service-icon .bi-bullseye:before {
    content: "\f0e7";
}

.service-icon .bi-camera-video:before {
    content: "\f1c2";
}

.service-icon .bi-gear:before {
    content: "\f3e5";
}

/* Icon fallback styles */
.icon-fallback {
    font-size: 2rem;
    line-height: 1;
    display: none;
    color: white;
}

/* Force icon visibility */
.service-icon i {
    min-width: 1em;
    min-height: 1em;
}

.service-card-custom:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
    background: var(--accent-color);
}

/* Service Icon Base Styles */
.service-icon-planning,
.service-icon-production,
.service-icon-management {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Individual Icon Backgrounds */
.service-icon-planning {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.6));
}
.service-icon-production {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8), rgba(233, 30, 99, 0.6));
}
.service-icon-management {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(69, 183, 209, 0.6));
}

.service-emoji {
    font-size: 3.5rem;
    transition: all 0.3s ease;
    filter: grayscale(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.service-card-custom:hover .service-emoji {
    transform: scale(1.15) rotate(8deg);
    filter: grayscale(0) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.2) saturate(1.3);
}

.service-card-custom:hover .service-icon-planning,
.service-card-custom:hover .service-icon-production,
.service-card-custom:hover .service-icon-management {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Services Preview
   =================================== */
.services-preview {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234ecdc4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.detail-tag {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .detail-tag {
    background: rgba(78, 205, 196, 0.3);
    border-color: rgba(78, 205, 196, 0.5);
}

.service-icon-music,
.service-icon-management,
.service-icon-media,
.service-icon-other {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon-music {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.6));
}
.service-icon-management {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8), rgba(233, 30, 99, 0.6));
}
.service-icon-media {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(69, 183, 209, 0.6));
}
.service-icon-other {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.8), rgba(255, 152, 0, 0.6));
}

.service-item:hover .service-icon-music,
.service-item:hover .service-icon-management,
.service-item:hover .service-icon-media,
.service-item:hover .service-icon-other {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===================================
   News Cards
   =================================== */
.news-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    transform: translateY(-5px);
}

.news-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(78, 205, 196, 0.4);
}

.news-image {
    height: 200px;
    background: #4ecdc4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.news-card-link:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    color: #333;
}

.news-date {
    color: #4ecdc4;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #2c3e50;
    height: 53px;
}

.news-title a {
    text-decoration: none;
    color: #2c3e50;
}

.news-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.partners-preview {
    padding: 5rem 2rem 5rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-description {
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
} */

.partner-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

/* .partner-logo:hover .partner-img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
} */

/* ===================================
   Custom Buttons
   =================================== */

.btn-gradient {
    background: var(--primary-color);
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
    color: white;
    background: var(--accent-color);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-danger {
    background: var(--secondary-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    background: #e55555;
    color: white;
}

/* ===================================
   Animation Classes
   =================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ===================================
   Section Styles
   =================================== */

/* Philosophy Section */
.philosophy-bg {
    position: relative;
    overflow: hidden;
}

.philosophy-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

/* Contact Section */
.contact-preview {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: relative;
    overflow: hidden;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 107, 107, 0.1) 75%), 
                linear-gradient(45deg, rgba(255, 107, 107, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 107, 107, 0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.1;
}

.contact-preview .section-title-light {
    color: white;
    position: relative;
    z-index: 2;
}

/* ===================================
   Responsive Design
   =================================== */

/* Large screens */
@media (min-width: 1200px) {
    .navbar-custom .navbar-brand img {
        height: 55px;
    }
    
    .hero-section h1 {
        font-size: 4.5rem;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Medium screens */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Small screens */
@media (max-width: 767.98px) {
    .navbar-custom .navbar-brand img {
        height: 45px;
    }
    
    .hero-section {
        height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    /* .hero-section h2 {
        font-size: 1.5rem;
    } */
    
    .service-card-custom {
        margin-bottom: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .partner-logo {
        height: 80px;
    }

    .page-header-section {
        padding-top: 3rem;
        top: -10px;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    /* .hero-section h2 {
        font-size: 1.25rem;
    } */

    .img-hero {
        height: 50px;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* ===================================
   Accessibility Improvements
   =================================== */

/* Focus states */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .service-icon,
    .partner-logo,
    .news-img {
        animation: none;
        transition: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .text-gradient {
        color: #000 !important;
        font-weight: 900;
    }
    
    .service-card-custom,
    .news-card-custom,
    .partner-logo {
        border: 2px solid #000;
    }
    
    .btn-gradient,
    .btn-outline-primary,
    .btn-danger {
        background: #000 !important;
        color: #fff !important;
        border-color: #000 !important;
    }
}

/* ===================================
   Print Styles
   =================================== */

/* @media print {
    .navbar,
    .btn {
        display: none;
    }
    
    .hero-section {
        height: auto;
        background: none;
        color: #000;
    }
    
    .text-gradient {
        color: #000 !important;
        font-weight: 900;
    }
    
    .bg-dark-custom {
        background: #fff !important;
        color: #000 !important;
    }
    
    .text-white {
        color: #000 !important;
    }
} */
.section-title-light {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* More News Button */
.more-news-section {
    text-align: center;
    margin-top: 3rem;
}

.more-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #4ecdc4;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.more-news-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.more-news-btn:hover::before {
    left: 100%;
}

.more-news-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.more-news-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* More Services Button */
.more-services-section {
    text-align: center;
    margin-top: 3rem;
}

.more-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #4ecdc4;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.more-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.more-services-btn:hover::before {
    left: 100%;
}

.more-services-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.section-title-dark {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 25px;
    color: #5a6c7d;
    /* font-size: 0.9rem; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #4ecdc4;
    color: white;
    border-color: transparent;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-excerpt {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: end;
    align-items: center;
    color: #7b8794;
    font-size: 0.9rem;
}

.read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4ecdc4;
}

.archive-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 25px;
    color: #5a6c7d;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border-color: transparent;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.archive-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.1);
    cursor: pointer;
}

.archive-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.archive-image {
    height: 180px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.archive-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.archive-info {
    padding: 1.5rem;
}

.archive-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.archive-date {
    color: #7b8794;
    font-size: 0.9rem;
}

.fan-section {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.8), rgba(255, 243, 224, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    text-align: center;
}

.fan-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.fan-section p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fan-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    background: rgba(255, 255, 255, 0.8);
    color: #5a6c7d;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.page-btn.active,
.page-btn:hover {
    background: #4ecdc4;
    color: white;
    border-color: transparent;
}

/* More Contact Button */
.more-contact-section {
    text-align: center;
    margin-top: 3rem;
}

.more-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.more-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.more-contact-btn:hover::before {
    left: 100%;
}

.more-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

/* Swiper Styles */
.partner-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent; /* Make slide background transparent */

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide .partner-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination {
    position: relative !important;
    padding-top: 25px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffffff !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   Styles from Business
   =================================== */

main.contents {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    color: var(--text-dark);
}

/* .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
} */

.breadcrumb-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #e3f2fd, #f8f9ff);
    border-bottom: 1px solid var(--border-color);
    /* Apply same styles as original breadcrumb */
    background-image: url('img/bg/bg_contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-section .breadcrumb-item a {
    color: #4ecdc4 !important;
}

.breadcrumb-section .text-gradient {
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.breadcrumb-section .text-muted {
    color: #eee !important;
}

.fg-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--box-shadow-light);
}

.fg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.25);
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: white;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.business-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--box-shadow-light);
    height: 100%;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.25);
}

.business-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.achievement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--box-shadow-light);
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.25);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section {
    background: #4ecdc4;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.btn-fg-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-fg-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-fg-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: var(--transition);
}

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

footer {
    background: #000;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .news-filters,
    .archive-categories,
    .fan-actions {
        /* flex-direction: column; */
        align-items: center;
    }

    .filter-btn,
    .category-btn {
        text-align: center;
    }
    
    /* Services Preview Mobile Styles */
    .services-preview {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-music,
    .service-icon-management,
    .service-icon-media,
    .service-icon-other {
        width: 80px;
        height: 80px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-details {
        gap: 0.3rem;
    }
    
    .detail-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
/* ===================================
   Styles from Company
   =================================== */

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow-light);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vision-card, .mission-card {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 184, 0.1));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(78, 205, 196, 0.2);
}

.ceo-section {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.ceo-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.history-section {
    background: #F8F9FA;
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-color);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
}

.timeline-year {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.partners-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .ceo-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item::after, .timeline-item:nth-child(even)::after {
        left: 22px;
    }
}
/* ===================================
   Styles from contact
   =================================== */

.inquiry-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.inquiry-type {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.8), rgba(255, 243, 224, 0.6));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.inquiry-type:hover,
.inquiry-type.selected {
    background: linear-gradient(135deg, rgba(248, 249, 255, 1), rgba(255, 243, 224, 0.9));
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-dark);
}

.inquiry-type.selected {
    border-color: var(--secondary-color);
}

.inquiry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inquiry-type h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.inquiry-type p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.6), rgba(255, 243, 224, 0.4));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.contact-form ul li {
    list-style-type: none;
    margin: 10px 0 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group label span {
    font-size: 0.75rem;
}

.required {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
    /* height: 120px; */
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group .input_confirm {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.submit-section {
    text-align: center;
    margin-top: 2rem;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.6), rgba(255, 243, 224, 0.3));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9), rgba(255, 243, 224, 0.6));
}

.faq-question h4 {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .inquiry-types,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

.fs-15 {
    font-size: 1.5rem;
}
.fs-17 {
    font-size: 1.7rem;
}

.navbar-custom .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 80%;
}

.breadcrumb-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-enhanced .breadcrumb-item {
    font-weight: 500;
    font-size: 0.95rem;
}

.breadcrumb-enhanced .breadcrumb-item a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-enhanced .breadcrumb-item a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.breadcrumb-enhanced .breadcrumb-item.active {
    color: #495057;
    font-weight: 600;
}

.breadcrumb-enhanced .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: bold;
    font-size: inherit;
    line-height: 24px;
}

.page-header-section {
    position: relative;
    padding: 4rem 0 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.page-header-section h1,
.page-header-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    max-width: 100%;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-text-base {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #191919;
    padding: 10px 28px 8px;
    border: 2px solid #646464;
    background-color: #FFFFFF;
    border-radius: 50px;
    transition: all 0.2s ease-in-out !important;
}

.margin-top-m {
    margin-top: 1.75rem !important;
}


.plr-20 {
    padding: 0px 20px;
}
@media (max-width: 991.98px) {
    .navbar-custom .nav-link::after {
        left: 1rem !important;
        transform: none !important;
    }

    .navbar-custom .nav-link:hover::after,
    .navbar-custom .nav-link.active::after {
        width: 25% !important;
    }

    main.contents {
        padding: 3rem 0.5rem;
    }
}

/* Pagination */
.pagination-container ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-container li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-container li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination-container li a.active, .pagination-container li a:hover {
    background: #4ecdc4 !important;
    color: white !important;
}