/* ===== VARIABLES ===== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ===== NAVBAR BLUE STYLE ===== */
.navbar {
    padding: 15px 0;
    background: linear-gradient(135deg, #0c49a5 0%, #0b5ed7 100%) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Navbar saat scroll */
.sticky-nav {
    padding: 10px 0 !important;
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Logo - TIDAK diubah jadi putih */
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
    display: flex;
    align-items: center;
}

/* Logo tetap warna asli */
.navbar-brand img {
    height: 50px !important;
    width: auto !important;
    /* filter: brightness(0) invert(1); DIHAPUS - biarkan warna asli logo */
}

/* Hamburger Menu */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.25);
    color: white !important;
    font-weight: 600;
}

/* Customer Login Button */
.navbar .btn-primary {
    background-color: white !important;
    color: #0d6efd !important;
    border-color: white !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
}

.navbar .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(13, 110, 253, 0.95);
        border-radius: 10px;
        margin-top: 15px;
        padding: 15px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        margin: 3px 0;
    }
    
    .navbar .btn-primary {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

/* Active State */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link.active::after {
        left: 15px;
        right: 15px;
        bottom: 5px;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 160px 0 100px !important;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.experience-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-section .btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

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

/* Hero Image Slider */
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title.center-title {
    text-align: center;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== PRODUCTS SECTION ===== */
#products {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
    background-color: #f8f9fa;
}

.product-card {
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary) !important;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--info));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.icon-wrapper i {
    font-size: 1.8rem;
}

/* Products Table */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table {
    margin-bottom: 0;
    background: white;
}

.table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.table th {
    font-weight: 600;
    color: white;
    border: none;
    padding: 16px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.table td {
    padding: 16px;
    vertical-align: middle;
    border-color: #f1f1f1;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* ===== FEATURES SECTION ===== */
#features {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: white;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--success));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.feature-card ul li i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.satusehat-link {
    color: var(--success);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.satusehat-link:hover {
    color: var(--primary-dark);
}

/* ===== SOLUTIONS SECTION ===== */
#solutions {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-point {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.solution-point .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.solution-point .content h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.solution-point .content p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

#solutions img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

#solutions img:hover {
    transform: scale(1.02);
}

/* ===== INTEGRATION SECTION ===== */
#integration {
    padding: 100px 0 !important;
    background: white;
}

.integration-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.integration-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.integration-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--info)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.integration-item h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.integration-item p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Integration CTA */
.integration-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integration-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>') center/cover;
    opacity: 0.5;
}

.integration-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.integration-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.integration-cta .btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.integration-cta .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT SECTION ===== */
#about {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-point {
    margin-bottom: 30px;
}

.about-point h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.about-point h5 i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.about-point p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
    padding-left: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
    font-style: normal;
}

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 100px 0 !important;
    background: white;
}

.contact-method {
    padding: 30px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-method i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.contact-method h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-method p {
    color: var(--secondary);
    margin: 0;
}

.contact-method a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-cta {
    margin-top: 50px;
    text-align: center;
}

.contact-cta .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.contact-cta .text-muted {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--info));
}

.footer-col {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
}

.footer-title i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    font-size: 0.9rem;
    width: 20px;
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary);
    margin-top: 3px;
    min-width: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.copyright-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.bottom-link:hover {
    color: var(--primary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 140px 0 80px !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .feature-card,
    .integration-item {
        padding: 30px 20px;
    }
    
    .copyright-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .floating-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -50px;
    }
    
    .floating-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -25px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .feature-card,
    .integration-item,
    .contact-method {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .integration-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .experience-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .feature-card h4,
    .integration-item h5 {
        font-size: 1.2rem;
    }
    
    .integration-cta {
        padding: 40px 20px;
    }
    
    .integration-cta h3 {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0a58ca);
}

/* ===== NAVBAR SPACER ===== */
#navSpacer {
    height: 80px;
    display: block;
}
/* =========================================================
   FOOTER COPYRIGHT – RAPIN & MOBILE 2 KOLOM
   ========================================================= */
/* //path/assets/css/footer.css */

/* BASE */
.copyright-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #e5e7eb;
    font-size: 0.9rem;
}

.copyright-text {
    margin: 0;
    opacity: 0.85;
}

/* LINKS */
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links .separator {
    opacity: 0.4;
}

.footer-bottom-links .bottom-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom-links .bottom-link:hover {
    color: #93c5fd;
}

/* =======================
   MOBILE FIX – 2 KOLOM
   ======================= */
@media (max-width: 768px) {

    .copyright-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        text-align: center;
        padding: 20px 0;
    }

    /* COPYRIGHT FULL WIDTH */
    .copyright-text {
        grid-column: span 2;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* LINKS GRID */
    .footer-bottom-links {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        margin-top: 8px;
    }

    /* HIDE SEPARATOR */
    .footer-bottom-links .separator {
        display: none;
    }

    /* LINK STYLE MOBILE */
    .footer-bottom-links .bottom-link {
        background: rgba(255,255,255,0.08);
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 0.8rem;
    }
}
/* =========================================================
   FIX JARAK ANTAR SECTION TERLALU JAUH
   ========================================================= */
/* //path/assets/css/base.css */

/* 1. STOP DOUBLE PADDING (SECTION + CONTAINER) */
section.py-5 > .container.py-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* 2. NORMALISASI SECTION */
section {
    margin: 0 !important;
}

/* 3. SET JARAK SECTION IDEAL */
section.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* 4. KURANGI JARAK KHUSUS ANTAR SECTION BESAR */
#products {
    padding-bottom: 2rem !important;
}

#features {
    padding-top: 2rem !important;
    padding-bottom: 2.5rem !important;
}

#solutions,
#integration {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* 5. RAPATIN JARAK JUDUL */
.section-title {
    margin-bottom: 0.75rem !important;
}

.section-title + p,
.section-title + .text-muted {
    margin-bottom: 1.5rem !important;
}

/* 6. MOBILE LEBIH RAPAT */
@media (max-width: 768px) {
    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}
/* =========================================================
   NAVBAR COLLAPSE – 2 KOLOM (MOBILE)
   ========================================================= */
/* //path/assets/css/header.css atau main.css */

/* MOBILE ONLY */
@media (max-width: 991.98px) {

    /* WRAPPER */
    #navbarNav {
        background: linear-gradient(135deg, #1e6df0, #2563eb);
        border-radius: 16px;
        padding: 16px;
        margin-top: 10px;
    }

    /* UL JADI GRID 2 KOLOM */
    #navbarNav .navbar-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        align-items: stretch;
    }

    /* ITEM */
    #navbarNav .nav-item {
        width: 100%;
    }

    /* LINK */
    #navbarNav .nav-link {
        color: #ffffff !important;
        background: rgba(255,255,255,0.12);
        border-radius: 10px;
        padding: 12px 14px;
        text-align: left;
        font-weight: 500;
    }

    /* HOVER / TAP */
    #navbarNav .nav-link:hover,
    #navbarNav .nav-link:active {
        background: rgba(255,255,255,0.22);
        color: #ffffff;
    }

    /* CUSTOMER LOGIN FULL WIDTH */
    #navbarNav .nav-item:last-child {
        grid-column: span 2;
        margin-top: 8px !important;
    }

    #navbarNav .btn {
        width: 100%;
        border-radius: 12px;
        font-weight: 600;
    }
}
