/**
 * Custom Homepage Styles
 * Modern and Clean Design
 */

/* Logo Bigger - 150px with Proper Alignment */
header .logo img {
    max-height: none !important;
    height: 60px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease;
    display: block;
}

header.sticky .logo img {
    height: 35px !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

/* Logo Container - Vertical Center */
header .logo {
    display: flex;
    align-items: center;
    padding-right: 30px;
    min-height: 90px;
}

header.sticky .logo {
    min-height: auto;
}

header .logo a {
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Header Container - Proper Alignment */
header {
    position: relative;
}

header .container {
    display: flex;
    align-items: center;
}

header .row {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Nav Wrapper - Vertical Center */
header .nav-wrapper {
    display: flex;
    align-items: center;
    min-height: 90px;
}

header.sticky .nav-wrapper {
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Sticky Header Compact */
header.sticky {
    padding: 0;
    border-bottom: none !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

header.sticky .container {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

header.sticky .row {
    display: flex;
    align-items: center;
}

header.sticky nav {
    display: flex;
    align-items: center;
}

header.sticky nav ul {
    margin: 0;
    padding: 15px 0;
}

header nav {
    width: 100%;
}

/* Logo Responsive */
@media (max-width: 991px) {
    header .logo {
        justify-content: center;
        margin-bottom: 15px;
        padding-right: 0;
        min-height: auto;
    }
    
    header .logo img {
        height: 100px !important;
        padding: 8px 0 !important;
    }
    
    header .nav-wrapper {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    header .logo {
        justify-content: flex-start;
        min-height: auto;
    }
    
    header .logo img {
        height: 80px !important;
        padding: 8px 0 !important;
    }
    
    header.sticky .logo img {
        height: 50px !important;
        padding: 5px 0 !important;
    }
}

/* Navbar Center */
header .nav-wrapper ul.sf-menu {
    text-align: center;
}

/* Hero Section - No Background */
.hero-section {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

/* Remove background gradient */
.hero-section::before {
    display: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .row {
    align-items: center;
}

/* Hero Left Content - Narrower */
.hero-content {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.hero-text {
    width: 100%;
}

.hero-tagline {
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-title span {
    color: #0066cc;
    display: block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-block;
    padding: 14px 32px;
    background: #ff6b35;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-hero:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.btn-secondary-hero {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    gap: 10px;
}

.hero-features .feature-item i {
    font-size: 20px;
    color: #0066cc;
}

.hero-features .feature-item span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Hero Right Video - Wider & Full */
.hero-video {
    padding-left: 20px;
    position: relative;
}

.video-container-full {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container-full iframe,
.video-container-full video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Video Unmute Button */
.video-unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 102, 204, 0.9);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.video-unmute-btn:hover {
    background: rgba(0, 102, 204, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.video-unmute-btn i {
    font-size: 16px;
}

.video-unmute-btn.muted {
    background: rgba(255, 107, 53, 0.9);
}

.video-unmute-btn.muted:hover {
    background: rgba(255, 107, 53, 1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.video-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.training-placeholder {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.training-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.training-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Responsive Hero Section */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    
    .hero-content {
        padding-right: 15px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-video {
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Service Section Improvements */
.service-v1 {
    padding: 80px 0;
    background: #ffffff;
}

.service-v1 .heading {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-v1 .heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.service-v1 .heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.service-v1 .ser-item {
    margin-bottom: 30px;
}

/* Service Card - New Design */
.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
    overflow: visible;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Service Icon */
.service-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: #0066cc;
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

/* Service Buttons - Horizontal Layout */
.service-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Training Dropdown Wrapper */
.training-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

/* Service Buttons Container */
.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 0 0;
    width: 100%;
}

/* Base button styles */
.service-buttons .btn-outline,
.service-buttons .btn-solid,
.service-buttons .btn-dropdown {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
    height: 40px;
    min-width: 120px;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.2;
}

/* Button states */
.service-buttons .btn-outline {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.service-buttons .btn-outline:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-buttons .btn-solid {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.service-buttons .btn-solid:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Dropdown button */
.service-buttons .btn-dropdown {
    position: relative;
    padding-right: 35px;
    cursor: pointer;
    background: #1a1a1a;
    color: #fff;
    text-align: left;
}

.service-buttons .btn-dropdown:hover {
    background: #333;
}

.service-buttons .btn-dropdown i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.training-dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.training-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
    border: 1px solid #eee;
}

.training-dropdown-wrapper:hover .training-dropdown-menu {
    display: block;
}

.training-dropdown-item {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.training-dropdown-item:last-child {
    border-bottom: none;
}

.training-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.training-dropdown-item i {
    margin-right: 8px;
    color: #1a1a1a;
    width: 15px;
    text-align: center;
}

/* Button layout rules */
.service-buttons > * {
    flex: 1 1 auto;
    min-width: 120px;
}

/* Single button */
.service-buttons > *:only-child {
    flex: 0 0 100%;
}

/* Two buttons */
.service-buttons > *:first-child:nth-last-child(2),
.service-buttons > *:first-child:nth-last-child(2) ~ * {
    flex: 1 1 calc(50% - 10px);
}

/* Three buttons */
.service-buttons > *:first-child:nth-last-child(3),
.service-buttons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
    flex: 1 1 calc(50% - 10px);
}

.service-buttons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
    flex: 1 1 100%;
}

/* Four or more buttons */
.service-buttons > *:first-child:nth-last-child(n+4),
.service-buttons > *:first-child:nth-last-child(n+4) ~ * {
    flex: 1 1 calc(50% - 10px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .service-buttons > * {
        flex: 1 1 100% !important;
    }
}

/* Button Dropdown Style */
.btn-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-dropdown i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.training-dropdown-wrapper:hover .btn-dropdown i,
.training-dropdown-wrapper.active .btn-dropdown i {
    transform: rotate(180deg);
}

.service-buttons .btn-outline:hover {
    background: #000;
}

/* Training Dropdown Menu - Dropup (muncul ke atas) */
.training-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: block;
}

.training-dropdown-wrapper:hover .training-dropdown-menu,
.training-dropdown-wrapper.active .training-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.training-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.training-dropdown-item:last-child {
    border-bottom: none;
}

.training-dropdown-item i {
    font-size: 13px;
    color: #0066cc;
    width: 18px;
    text-align: center;
}

.training-dropdown-item:hover {
    background: #f8f9fa;
    color: #0066cc;
    padding-left: 20px;
}

.training-dropdown-item:hover i {
    transform: scale(1.1);
}

.service-buttons .btn-solid {
    padding: 12px 18px;
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.service-buttons .btn-solid:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive Service Cards */
@media (max-width: 768px) {
    .service-buttons {
        flex-direction: row;
        gap: 6px;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .training-dropdown-wrapper {
        flex: 0 0 auto;
    }
    
    .service-buttons .btn-outline,
    .service-buttons .btn-solid {
        font-size: 10px;
        padding: 8px 12px;
        flex: 0 0 auto;
        min-width: auto;
        width: auto;
        height: auto;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .training-dropdown-menu {
        min-width: 200px;
    }
    
    .service-content h3 {
        font-size: 16px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .service-buttons {
        gap: 5px;
        align-items: center;
    }
    
    .training-dropdown-wrapper {
        flex: 0 0 auto;
    }
    
    .service-buttons .btn-outline,
    .service-buttons .btn-solid {
        font-size: 9px;
        padding: 6px 10px;
        border-radius: 4px;
        flex: 0 0 auto;
        width: auto;
        height: auto;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .service-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ========================================
   NEW SECTIONS STYLING
======================================== */

/* Section Heading Global */
.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   1. GROUP BISNIS KAMI SECTION
======================================== */
.business-group-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.business-item {
    margin-bottom: 30px;
}

.business-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.business-icon {
    width: 70px;
    height: 70px;
   
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.business-icon i {
    font-size: 32px;
    color: #fff;
}

.business-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.business-card > p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.business-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 16px;
}

/* ========================================
   2. MENGAPA MEMILIH KAMI SECTION
======================================== */
.why-choose-us-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-item {
    margin-bottom: 30px;
}

.why-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.why-card:hover {
    background: #fff;
    border-color: #0066cc;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    line-height: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #0066cc;
    transform: scale(1.1);
}

.why-icon i {
    font-size: 32px;
    color: #0066cc;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   3. PENTINGNYA ISO 9001 SECTION
======================================== */
.iso-importance-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.iso-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 10px;
}

/* ISO Benefit Cards - Grid Layout */
.iso-item {
    margin-bottom: 30px;
}

.iso-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.iso-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ff6b35 0%, #e55a2b 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.iso-benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.iso-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.iso-benefit-card:hover::before {
    height: 100%;
}

.iso-benefit-card:hover::after {
    width: 300px;
    height: 300px;
}

/* ISO Card Icon */
.iso-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 1;
}

.iso-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iso-benefit-card:hover .iso-card-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.iso-benefit-card:hover .iso-card-icon::before {
    opacity: 1;
}

.iso-card-icon i {
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.iso-benefit-card:hover .iso-card-icon i {
    transform: scale(1.1);
}

/* ISO Card Content */
.iso-benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.iso-benefit-card:hover h3 {
    color: #ff6b35;
}

.iso-benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.iso-benefit-card:hover p {
    color: #555;
}

/* Responsive ISO Section */
@media (max-width: 768px) {
    .iso-benefit-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .iso-card-icon {
        margin: 0 auto 20px;
    }
}

/* ========================================
   4. TRAINING ISO SECTION
======================================== */
.training-iso-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.training-content {
    padding-right: 40px;
}

.training-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.training-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.training-content > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Training Features */
.training-features {
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-col i {
    color: #28a745;
    font-size: 18px;
}

.feature-col span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Training Info Boxes */
.training-info-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 150px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 24px;
    color: #0066cc;
}

.info-box div {
    display: flex;
    flex-direction: column;
}

.info-box strong {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.info-box span {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Training Buttons */
.training-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-training-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-training-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #fff;
}

.btn-training-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-training-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Training Image */
.training-image {
    position: relative;
    padding-left: 40px;
}

.training-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.training-placeholder {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.training-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.training-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.training-stats {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ========================================
   RESPONSIVE NEW SECTIONS
======================================== */
@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 28px;
    }
    
    .business-card,
    .why-card {
        margin-bottom: 20px;
    }
    
    .training-content {
        padding-right: 15px;
        margin-bottom: 40px;
    }
    
    .training-content h2 {
        font-size: 26px;
    }
    
    .training-image {
        padding-left: 15px;
    }
    
    .training-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .training-info-boxes {
        flex-direction: column;
    }
    
    .info-box {
        min-width: auto;
    }
    
    .training-buttons {
        flex-direction: column;
    }
    
    .btn-training-primary,
    .btn-training-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Slider Improvements */
.main-slider .slider .bxslider li {
    min-height: 500px;
}

.main-slider .slider .content .inner .text h2 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.main-slider .slider .content .inner .text p {
    font-size: 18px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 25px;
}

.main-slider .slider .btn-flat {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background: #ff6b35;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.main-slider .slider .btn-flat:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Team Member Section */
.team-member-v1 {
    padding: 80px 0;
    background: #fff;
}

.team-member-v1 .heading {
    margin-bottom: 50px;
    text-align: center;
}

.team-member-v1 .heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.team-member-v1 .heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.team-member-v1 .heading p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* Counter Section */
.why-us {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-us .overlay {
    background: rgba(26, 26, 26, 0.85);
}

.why-us-counter {
    position: relative;
    z-index: 2;
}

.why-us-counter .counter {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-us-counter .title {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

/* News Section */
.news-v1 {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-v1 .heading {
    margin-bottom: 50px;
    text-align: center;
}

.news-v1 .heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.news-v1 .heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.news-v1 .heading p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.news-v1 .item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.news-v1 .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-v1 .item .thumb .photo {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-v1 .item .text {
    padding: 20px;
}

.news-v1 .item .text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-v1 .item .text h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.news-v1 .item .text h3 a:hover {
    color: #ff6b35;
}

/* Testimonial Section */
.testimonial-v1 {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonial-v1 .overlay {
    background: rgba(255, 107, 53, 0.92);
}

.testimonial-v1 .heading {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-v1 .heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-v1 .heading p {
    font-size: 16px;
    color: #fff;
}

.testimonial-v1 .testimonial-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Partner Section */
.partner-v1 {
    padding: 80px 0;
    background: #fff;
}

.partner-v1 .heading {
    margin-bottom: 50px;
    text-align: center;
}

.partner-v1 .heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.partner-v1 .heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.partner-v1 .heading p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.partner-v1 .item .inner {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.partner-v1 .item .inner:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.partner-v1 .item .inner img {
    max-height: 80px;
    width: auto;
    display: inline-block;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-v1 .item .inner:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Page Banner - Full & Proper */
.page-banner {
    min-height: 400px;
    padding-top: 150px !important;
    padding-bottom: 150px !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-banner .overlay {
    opacity: 0.5 !important;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .page-banner {
        min-height: 300px;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

@media (max-width: 480px) {
    .page-banner {
        min-height: 250px;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

/* Newsletter Section */
.newsletter-area {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter-area .overlay {
    background: rgba(26, 26, 26, 0.88);
}

.newsletter-headline {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.newsletter-headline h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-headline p {
    font-size: 16px;
    color: #fff;
}

.newsletter-submit {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-submit form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-submit input[type="text"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
}

.newsletter-submit input[type="submit"] {
    padding: 15px 40px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit input[type="submit"]:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-v1 .heading h2,
    .team-member-v1 .heading h2,
    .news-v1 .heading h2,
    .testimonial-v1 .heading h2,
    .partner-v1 .heading h2 {
        font-size: 28px;
    }
    
    .main-slider .slider .content .inner .text h2 {
        font-size: 32px;
    }
    
    .newsletter-submit form {
        flex-direction: column;
    }
    
    .newsletter-submit input[type="text"],
    .newsletter-submit input[type="submit"] {
        width: 100%;
    }
}

.hero-section,
.service-v1,
.business-group-section,
.why-choose-us-section,
.team-member-v1,
.why-us,
.news-v1,
.testimonial-v1,
.partner-v1 {
    padding: 50px 0 !important;
    font-family: inherit;
}

/* === MOBILE SERVICE BUTTONS FIX === */
@media (max-width: 576px) {
    .service-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 8px 12px 8px;
        box-sizing: border-box;
    }
    
    .service-buttons > * {
        width: 100% !important;
        height: 50px !important;
        flex: none !important;
        box-sizing: border-box;
        margin: 0 !important;
    }
    
    .service-buttons .btn-outline,
    .service-buttons .btn-solid,
    .service-buttons .btn-dropdown {
        width: 100% !important;
        height: 100% !important;
        font-size: 12px !important;
        padding: 0 12px !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.2 !important;
    }
    
    .training-dropdown-wrapper,
    .consultation-wrapper {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    
    /* Pastikan semua tombol sama tinggi dan lebar */
    .service-buttons > *:first-child:nth-last-child(1),
    .service-buttons > *:first-child:nth-last-child(2),
    .service-buttons > *:first-child:nth-last-child(2) ~ *,
    .service-buttons > *:first-child:nth-last-child(3),
    .service-buttons > *:first-child:nth-last-child(3) ~ *:nth-child(2),
    .service-buttons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
        width: 100% !important;
        height: 50px !important;
        flex: none !important;
    }
}
