/* Home Page Specific Styles */

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f8f9fa !important;
    position: relative;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-content {
    padding: 2rem;
    background: transparent;
}

.about-section .section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0078D4;
}

.about-section .section-text {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;    
    margin-bottom: 2rem;
}

.about-section .about-image {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section .about-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section .section-title {
        font-size: 2rem;
    }
    
    .about-section .section-text {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f3f3f3;
}

.services-swiper {
    padding: 2rem 0;
    margin: 0 -1rem;
    width: 100%;
}

.services-swiper .swiper-slide {
    width: calc(25% - 2rem) !important;
    margin: 0 1rem;
    height: auto;
}

.service-card, .project-card, .card.h-100, .service-card.h-100, .project-card.h-100 {
    height: 250px;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img-wrapper,
.project-card .card-img-wrapper {
    position: relative;
    width: 100%;
    padding: 0 !important;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 16/9;
    min-height: 180px;
    max-height: 260px;
}

.service-card .card-img,
.project-card .card-img {
    width: 100%;
    height:  200px;     /*auto;*/
    object-fit: cover;
    padding: none !important;
    margin: 0;
    display: block;
}

.service-card .card-content,
.project-card .card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-neutral-900);
}

.service-card .card-text {
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    margin-bottom: 1.5rem;
}

.service-card .btn-outline-primary,
.project-card .btn-outline-primary {
    color: #2563eb !important;
    border: 2px solid #2563eb !important;
    background-color: transparent !important;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: none !important;
}

.service-card .btn-outline-primary:hover,
.project-card .btn-outline-primary:hover,
.service-card .btn-outline-primary:focus,
.project-card .btn-outline-primary:focus {
    background-color: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
    outline: none;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f3f3f3;
}

.why-choose-image {
    transition: transform 0.3s ease;
}

.why-choose-image:hover {
    transform: scale(1.02);
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Why Choose Us Section - Bar Card Design */
.why-choose-section .section-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.why-choose-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    padding: 0.75rem 1.5rem;
    height: 100px;
    width: 100%;
    max-width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #f0f4fa;
}

.why-choose-card:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,0.13);
    transform: translateY(-2px) scale(1.01);
}

.why-choose-card .icon-wrapper {
    width: 56px;
    height: 56px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.why-choose-card .icon-wrapper i {
    color: #fff;
    font-size: 1.7rem;
}

.why-choose-card .card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.why-choose-card .card-title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: left;
    line-height: 1.2;
    color: #1a1a1a;
}

.why-choose-card .card-text {
    font-size: 0.97rem;
    color: #444;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .why-choose-card {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        align-items: flex-start;
    }
    .why-choose-card .icon-wrapper {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .why-choose-card .card-content {
        align-items: flex-start;
    }
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background-color: #f8f9fa !important;
    position: relative;
}

.projects-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-section .section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.projects-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0078D4;
}

.projects-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.projects-swiper {
    padding: 2rem 0;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
}

.projects-swiper .swiper-slide {
    width: calc(33.333% - 2rem) !important;
    margin: 0 1rem;
    height: auto;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card .card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.project-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-img {
    transform: scale(1.05);
}

.project-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.project-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-card .btn-outline-primary {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card .btn-outline-primary:hover {
    background: #0078D4;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .projects-swiper .swiper-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media (max-width: 576px) {
    .projects-swiper .swiper-slide {
        width: calc(100% - 2rem) !important;
    }
    
    .projects-section .section-title {
        font-size: 2rem;
    }
}

/* CTA Section */
section.cta-section {
    background: linear-gradient(135deg, #142850 0%, #4fc3f7 100%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('/static/img/pattern.png') repeat; 
    opacity: 0.08;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: #fff;
    color: #142850;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(20,40,80,0.08);
    transition: background 0.2s, color 0.2s;
}

.cta-buttons .btn-light:hover {
    background: #223a5f;
    color: #fff;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: #fff;
}

.cta-section .section-title {
    text-shadow: 0 2px 8px rgba(20,40,80,0.12);
}

/* Certification Grid */
.certification-logos {
    margin-top: 3rem;
}

.certification-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 0 auto;
    max-width: 500px;
    padding: 0;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.certification-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.15rem;
    display: block;
}

.certification-name {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

/* Swiper Customization */
.swiper {
    padding: 1rem 0;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary-600);
    background: var(--color-neutral-50);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary-600);
    color: var(--color-neutral-50);
}

.swiper-pagination-bullet {
    background: var(--color-primary-600);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-swiper .swiper-slide,
    .projects-swiper .swiper-slide {
        width: calc(33.333% - 2rem) !important;
    }
}

@media (max-width: 992px) {
    .services-swiper .swiper-slide,
    .projects-swiper .swiper-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media (max-width: 576px) {
    .services-swiper .swiper-slide,
    .projects-swiper .swiper-slide {
        width: calc(100% - 2rem) !important;
    }
    
    .service-card .card-content,
    .project-card .card-content {
        padding: 1rem;
    }
}

@media (max-width: 991.98px) {
    .cta-title {
        font-size: 2rem;
    }

    .certification-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .certification-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .certification-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .certification-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 2rem 0.5rem;
    }
}

/* Tambahan: contoh class untuk img team agar tidak inline style */
.team-img-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 0;
    border-radius: 0;
}

body {
    background-color: #e7eaf0;
}

.services-section,
.projects-section,
.about-section,
.why-choose-section,
.cta-section {
    background-color: #f3f3f3 !important;
}

.team-section {
    background-color: #f3f3f3 !important;
    padding: 5rem 0;
}

/* Button Light */
.btn-light {
    background: #fff !important;
    color: #142850 !important;
    border: 2px solid #142850 !important;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-light:hover, .btn-light:focus {
    background: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
    outline: none;
}

/* Button Outline Primary */
.btn-outline-primary {
    color: #2563eb !important;
    border: 2px solid #2563eb !important;
    background-color: transparent !important;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: none !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
    outline: none;
}

/* Button Primary */
.btn-primary {
    background: #2563eb !important;
    color: #fff !important;
    border: 2px solid #2563eb !important;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
    background: #142850 !important;
    color: #fff !important;
    border-color: #142850 !important;
    box-shadow: 0 2px 8px rgba(20,40,80,0.15);
    outline: none;
}

.hero-section.home-hero {
    min-height: 100vh !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.hero-section.home-hero .hero-image {
    min-height: 100vh !important;
    height: 100vh !important;
}
@media (max-width: 991.98px) {
    .hero-section.home-hero {
        min-height: 100vh !important;
        height: auto !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .hero-section.home-hero .hero-image {
        min-height: 100vh !important;
        height: 100vh !important;
    }
}
@media (max-width: 767.98px) {
    .hero-section.home-hero {
        min-height: 100vh !important;
        height: auto !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .hero-section.home-hero .hero-image {
        min-height: 100vh !important;
        height: 100vh !important;
    }
}

/* Navbar Customization */
.navbar {
    /* padding-top: 0.25rem !important; */
    /* padding-bottom: 0.25rem !important; */
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar:hover,
.navbar.scrolled {
    transform: translateY(0);
}

.navbar .container-fluid {
    /* padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; */
}

.navbar .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    gap: 0.5rem;
}

.navbar .navbar-brand img {
    height: 65px !important; 
    max-height: 65px !important;
    width: auto;
}

.navbar .brand-text h3,
.navbar .brand-text {
    font-size: 1.75rem !important;
    margin-bottom: 0;
    line-height: 1.2;
}

.navbar .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .navbar .navbar-brand img {
        height: 40px !important;
        max-height: 40px !important;
    }
    .navbar .brand-text h3,
    .navbar .brand-text {
        font-size: 1rem !important;
    }
    .navbar .nav-link {
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important;
        font-size: 0.9rem;
    }
}

/* Home Hero Section Styles */
.home-section-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.home-section-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
}

.home-section-image img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-section-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px;
}

.home-section-content .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Running Text Styles */
.hero-running-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(3px);
    padding: 0.6rem 0;
    overflow: hidden;
    z-index: 2;
}

.running-text-container {
    width: 100%;
    overflow: hidden;
}

.running-text-wrapper {
    display: flex;
    animation: runningText 40s linear infinite;
    white-space: nowrap;
}

.running-text-item {
    color: #fff;
    text-decoration: none;
    padding: 0 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.running-text-item:hover {
    color: #ffc107;
    transform: scale(1.05);
}

.running-text-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@keyframes runningText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-section .section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonial-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0078D4;
}

.testimonial-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.1) 50%, 
        rgba(0,0,0,0) 100%);
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.1) 50%, 
        rgba(0,0,0,0) 100%);
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 20px 0;
    margin: 0 -1rem;
}

.testimonial-swiper {
    padding: 1rem;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
}

.testimonial-swiper .swiper-slide {
    width: calc(33.333% - 2rem) !important;
    margin: 0 1rem;
    height: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
    z-index: 1;
}

.testimonial-quote-icon i {
    color: #ffffff;
    font-size: 20px;
}

.testimonial-content {
    margin-top: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #323130;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 2px;
}

.testimonial-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info {
    flex-grow: 1;
    min-width: 0;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #323130;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #0078d4;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #605e5c;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-rating {
    color: #ffb900;
    font-size: 0.9rem;
    margin-top: 5px;
}

.testimonial-rating i {
    margin-right: 2px;
}

/* Swiper Navigation Styles */
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: #0078d4;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-button-next:after,
.testimonial-swiper .swiper-button-prev:after {
    font-size: 18px;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
    background: #0078d4;
    color: #ffffff;
    transform: scale(1.1);
}

/* Swiper Pagination Styles */
.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #0078d4;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0078d4;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-swiper .swiper-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section .section-title {
        font-size: 2rem;
    }

    .testimonial-section .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 350px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-swiper .swiper-button-next,
    .testimonial-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .testimonial-swiper .swiper-button-next:after,
    .testimonial-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-swiper .swiper-slide {
        width: calc(100% - 2rem) !important;
    }

    .testimonial-section .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        margin: 10px 5px;
    }
}

/* Company Stats Styles */
.company-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 2rem 0;
    justify-content: space-between;
}

.stat-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: #0078D4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.stat-icon i {
    color: #fff;
    font-size: 1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.15rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .company-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stat-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .company-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-card {
        width: 100%;
        min-width: 100%;
    }
}

/*
====================================================
GLOBAL CTA SECTION STYLES
----------------------------------------------------
Gunakan <section class="cta-section"> di semua halaman untuk CTA utama.
Background dan warna teks akan konsisten di seluruh website.
Jika ingin style berbeda di halaman tertentu, tambahkan class khusus (misal: cta-team).
====================================================
*/
section.cta-section {
    background: linear-gradient(135deg, #142850 0%, #4fc3f7 100%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section .section-title,
.cta-section .section-subtitle,
.cta-section .cta-title,
.cta-section .cta-description {
    color: #fff;
}

/* End Global CTA Section Styles */

.navbar .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
}

.home-section-content .hero-title {
    color: #fff !important;
}

.article-meta .badge,
.article-meta span.badge,
.article-meta > .badge {
    display: inline-block !important;
    width: auto !important;
    max-width: 300px;
    min-width: 0;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    vertical-align: middle;
    white-space: normal;
    box-sizing: border-box;
    flex: none !important;
}

.article-meta {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 0.25rem 0.5rem;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.35em 0.75em;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background-color: #6c757d;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
    vertical-align: middle;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    transition: background 0.2s, color 0.2s;
}

.badge.bg-primary {
    background: linear-gradient(90deg, #2563eb 0%, #2563eb 100%) !important;
    color: #fff !important;
}

.badge.bg-danger {
    background: linear-gradient(90deg, #e74c3c 0%, #e74c3c 100%) !important;
    color: #fff !important;
}

.badge.bg-success {
    background: linear-gradient(90deg, #00c853 0%, #00c853 100%) !important;
    color: #fff !important;
}

.badge.bg-info {
    background: linear-gradient(90deg, #00bcd4 0%, #00bcd4 100%) !important;
    color: #fff !important;
}

.badge.bg-warning {
    background: linear-gradient(90deg, #ffc107 0%, #ffc107 100%) !important;
    color: #212529 !important;
}

.badge.bg-secondary {
    background: linear-gradient(90deg, #6c757d 0%, #6c757d 100%) !important;
    color: #fff !important;
}

/* Responsive badge size for mobile */
@media (max-width: 576px) {
    .badge {
        font-size: 0.8rem;
        padding: 0.3em 0.6em;
    }
}

/* Ensure badge in .article-meta is not stretched */
.article-meta .badge {
    min-width: 0;
    max-width: 100%;
    width: auto;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    box-sizing: border-box;
    flex: none !important;
} 