:root {
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #000000;

    --blue: #2563eb;
    --blue-light: #3b82f6;
    --red: #dc2626;
    --amber: #f59e0b;

    /* Ocean Theme Colors */
    --ocean-deep: #0f172a;
    --ocean-blue: #1e40af;
    --ocean-light: #3b82f6;
    --ocean-teal: #0891b2;
    --ocean-cyan: #06b6d4;

    --font-sans: "Geist", system-ui, -apple-system, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    --radius: 0.375rem;
    --transition: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Top Bar - Ocean Theme - Height diperkecil */
.top-bar {
    background: linear-gradient(
        135deg,
        var(--ocean-deep) 0%,
        var(--ocean-blue) 50%,
        var(--ocean-teal) 100%
    );
    color: var(--white);
    padding: 0.25rem 0;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: wave 3s infinite;
}

@keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.weather {
    display: flex;
    align-items: center;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.weather span {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather span.divider {
    opacity: 0.6;
    margin: 0 var(--space-md);
}

/* Social Media - Elegant Grouping */
.social-media {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--space-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.social-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: var(--space-lg);
    z-index: -1;
}

.social-media a {
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: var(--transition);
}

.social-media a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-media a:hover::before {
    opacity: 1;
}

.social-media .bi {
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-lg) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: var(--space-2xl);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    background-color: var(--amber);
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.logo {
    height: 3.5rem;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav-item {
    position: relative;
}

.navbar .nav-link {
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--blue);
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-link.text-danger {
    color: var(--red) !important;
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-link.text-danger::before {
    background-color: var(--red);
}

.navbar .nav-link.text-danger:hover {
    color: var(--red) !important;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
}

.dropdown-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid currentColor;
    transition: var(--transition);
    opacity: 0.6;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 10rem;
    padding: var(--space-sm);
    margin-top: var(--space-xs);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown.show .dropdown-menu {
    display: block;
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: calc(var(--radius) - 1px);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    color: var(--ocean-blue);
    background-color: rgba(59, 130, 246, 0.05);
    padding-left: calc(var(--space-md) + 0.5rem);
}

.custom-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    background-color: var(--amber);
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.custom-button:hover {
    background-color: #d97706;
    transform: translateY(-1px);
    color: var(--white);
}

.custom-button:active {
    transform: translateY(0);
}

.custom-button i {
    font-size: 1rem;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content {
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-secondary-hero {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-hero:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    color: var(--gray-700);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ocean-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    padding: 2rem;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--gray-700);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
    min-width: max-content;
}

.floating-card i {
    font-size: 1rem;
    color: var(--ocean-blue);
    flex-shrink: 0;
}

.card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--ocean-light), var(--ocean-cyan));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(37, 99, 235, 0.05),
        rgba(8, 145, 178, 0.05)
    );
    border-radius: 50%;
    animation: wave-animation 20s linear infinite;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: -60%;
    right: -50%;
    animation-delay: 5s;
}

.wave-3 {
    bottom: -50%;
    left: -30%;
    animation-delay: 10s;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Navbar Mobile Responsive Fix */
@media (max-width: 991.98px) {
    .navbar {
        padding: var(--space-md) 0;
    }

    .navbar-collapse {
        margin-left: 0;
        margin-top: var(--space-md);
        flex-direction: column;
        align-items: stretch;
        display: none !important;
    }

    .navbar-collapse.show {
        display: flex !important;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: var(--space-md);
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        padding: var(--space-md);
        margin: var(--space-xs) 0;
        text-align: left;
        border-radius: var(--radius);
        background: var(--gray-50);
    }

    .custom-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--gray-100);
        margin-left: var(--space-md);
        width: calc(100% - var(--space-md));
    }

    .dropdown-item {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.875rem;
    }

    .navbar-toggler {
        border: 1px solid var(--gray-300);
        padding: 0.5rem;
        border-radius: var(--radius);
    }

    .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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: calc(100vh - 120px);
        padding: 1rem 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
        animation: none;
    }

    .hero-main-image {
        height: 250px;
    }

    .image-container {
        padding: 0.5rem;
    }

    .hero-image {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 var(--space-sm);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .social-media {
        gap: 0.25rem;
        padding: 0.25rem 0.5rem;
    }

    .social-media a {
        width: 1.75rem;
        height: 1.75rem;
    }

    .social-media .bi {
        font-size: 0.75rem;
    }

    .top-bar {
        padding: 0.2rem 0;
        font-size: 0.7rem;
    }

    .weather {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .hero-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content {
        padding: 0;
    }

    .hero-main-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .head-message-section {
        overflow-x: hidden;
    }

    .head-message-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .head-photo {
        width: 150px;
        height: 150px;
        max-width: 100%;
    }

    .message-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .signature-img {
        max-width: 100%;
    }
}

.nav-link:focus,
.dropdown-item:focus,
.custom-button:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    border: none;
    padding: var(--space-xs);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-decoration-none {
    text-decoration: none;
}

@media print {
    .top-bar,
    .custom-button {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== SECTION STYLING ===== */

/* Section Badge - Consistent across all sections */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.section-badge i {
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Ornamen Ikan dan Gelembung */
.services-ornament-top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 150px;
    z-index: 0;
    opacity: 0.6;
}

.services-ornament-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 180px;
    height: 120px;
    z-index: 0;
    opacity: 0.5;
}

.services-ornament-top svg,
.services-ornament-bottom svg {
    width: 100%;
    height: 100%;
}

/* Services Content */
.services-content {
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-container.color-green {
    background: #10b981;
}

.service-icon-container.color-purple {
    background: #8b5cf6;
}

.service-icon-container.color-blue {
    background: #3b82f6;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h4 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-link {
    color: #f97316;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ea580c;
}

.service-link i {
    font-size: 0.8rem;
}

.status-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #10b981;
}

.status-indicator.inactive {
    background: #ef4444;
}

/* Empty State */
.services-empty-state {
    background: white;
    border: 2px dashed #e5e7eb;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.services-empty-state i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.services-empty-state h4 {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.services-empty-state p {
    color: #9ca3af;
    margin: 0;
}

/* View All Button */
.services-view-all {
    margin-top: 2rem;
}

/* ===== PRICE SECTION ===== */
.price-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.price-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.category-marker {
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #0891b2;
    margin-right: 10px;
    border-radius: 2px;
}

/* ===== BENIH SECTION STYLING ===== */

/* Breadcrumb */
.breadcrumb-simple {
    background: transparent;
    padding: var(--space-md) 0;
}

.breadcrumb-clean {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 var(--space-sm);
    color: var(--gray-400);
}

.breadcrumb-link {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link:hover {
    color: var(--blue);
}

.breadcrumb-item.active {
    color: var(--blue);
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Benih Hero */
.benih-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, #eff6ff 100%);
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.benih-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

/* Search Box Modern */
.search-box-modern {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: transform 0.3s ease;
}

.search-box-modern:hover {
    transform: translateY(-5px);
}

.input-group-modern {
    display: flex;
    align-items: stretch;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group-modern:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--white);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: var(--gray-400);
}

.form-control-modern {
    border: none;
    background: transparent;
    padding: 1rem 0;
    width: 100%;
    font-size: 1rem;
    color: var(--gray-700);
}

.form-control-modern:focus {
    outline: none;
}

.btn-search-modern {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-search-modern:hover {
    background: var(--blue-light);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.results-count {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.btn-reset-filter {
    color: var(--red);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-reset-filter:hover {
    opacity: 0.8;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-image {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-tag .currency {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.price-tag .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
}

.price-tag .unit {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Animations */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 100ms;
}
.delay-200 {
    animation-delay: 200ms;
}

/* Empty State */
.empty-state {
    padding: 4rem 1rem;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.btn-primary-modern {
    background: var(--blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.2s;
}

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

/* Staggered Animation Delays */
.products-section .row > div:nth-child(1) {
    animation-delay: 100ms;
}
.products-section .row > div:nth-child(2) {
    animation-delay: 150ms;
}
.products-section .row > div:nth-child(3) {
    animation-delay: 200ms;
}
.products-section .row > div:nth-child(4) {
    animation-delay: 250ms;
}
.products-section .row > div:nth-child(5) {
    animation-delay: 300ms;
}
.products-section .row > div:nth-child(6) {
    animation-delay: 350ms;
}
.products-section .row > div:nth-child(7) {
    animation-delay: 400ms;
}
.products-section .row > div:nth-child(8) {
    animation-delay: 450ms;
}
.products-section .row > div:nth-child(9) {
    animation-delay: 500ms;
}
.products-section .row > div:nth-child(10) {
    animation-delay: 550ms;
}
.products-section .row > div:nth-child(11) {
    animation-delay: 600ms;
}
.products-section .row > div:nth-child(12) {
    animation-delay: 650ms;
}

/* ===== BENIH SECTION MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .benih-hero {
        border-radius: 0 0 1.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .search-box-modern {
        padding: 1rem;
        margin-top: 1rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        text-align: center;
    }

    .results-count {
        margin-bottom: 0.5rem;
    }

    .btn-reset-filter {
        justify-content: center;
        width: 100%;
        padding: 0.5rem;
        background: rgba(220, 38, 38, 0.05);
        border-radius: 0.5rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn-whatsapp {
        justify-content: center;
    }
}

/* ===== NEWS SECTION (BERITA) ===== */
.news-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.news-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light);
}

.news-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--gray-100);
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--blue);
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 1px solid var(--gray-200);
}

.news-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.news-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s, color 0.2s;
}

.read-more:hover {
    gap: 0.6rem;
    color: var(--blue-light);
}

.btn-view-all {
    background: var(--blue);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

/* Staggered delays for News cards */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }
.delay-900 { animation-delay: 900ms; }

/* News Mobile Responsive */
@media (max-width: 767.98px) {
    .news-card {
        border-radius: 0.75rem;
    }
    .news-image {
        padding-top: 56%;
    }
    .news-content p {
        -webkit-line-clamp: 2;
    }
}
/* Footer */
.footer-section {
    background: linear-gradient(
        135deg,
        var(--ocean-deep) 0%,
        var(--ocean-blue) 50%,
        var(--ocean-teal) 100%
    );
    color: var(--white);
    position: relative;
}
.footer-main {
    padding: 3rem 0;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo .logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}
.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.footer-contact {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
}
.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--white);
}
.contact-item i {
    color: var(--ocean-cyan);
}
.contact-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}
.contact-value {
    display: block;
    color: var(--white);
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.85);
}
.copyright {
    margin: 0;
    font-size: 0.875rem;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: var(--white);
}

/* Back To Top */
.back-to-top-wrapper {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    cursor: pointer;
}
.back-to-top-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top-button {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: var(--ocean-cyan);
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.35);
}
.back-to-top-button i {
    font-size: 1rem;
}
.progress-ring {
    position: absolute;
    inset: 0;
    width: 56px;
    height: 56px;
}
.progress-ring-circle {
    transition: stroke-dashoffset 0.2s ease;
}
.back-to-top-wrapper.pulse .back-to-top-button {
    animation: pulseRing 1.2s ease-in-out infinite;
}
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(8, 145, 178, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0);
    }
}
.back-to-top-wrapper.dark-theme .back-to-top-button {
    background: var(--ocean-light);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.35);
}

/* ===== LAYANAN SECTION STYLING ===== */
.layanan-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, #eff6ff 100%);
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.layanan-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.service-card-modern {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light);
}

.service-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--gray-100);
}

.service-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-modern:hover .service-card-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-read-more-modern {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.btn-read-more-modern:hover {
    gap: 0.75rem;
    color: var(--blue-light);
}

/* Layanan Mobile Responsive */
@media (max-width: 767.98px) {
    .layanan-hero {
        border-radius: 0 0 1.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card-modern {
        max-width: 100%;
    }
}

/* ===== LAYANAN DETAIL STYLING ===== */
.service-detail h1 {
    line-height: 1.3;
}

.service-featured-image {
    position: relative;
    overflow: hidden;
}

.service-featured-image img {
    transition: transform 0.5s ease;
}

.service-featured-image:hover img {
    transform: scale(1.02);
}

.service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-content h2,
.service-content h3 {
    color: var(--gray-900);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content ul,
.service-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.sidebar-widget {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.btn-whatsapp-share {
    background-color: #25d366;
    color: white;
    border: none;
    transition: all 0.2s;
}

.btn-whatsapp-share:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.btn-facebook-share {
    background-color: #1877f2;
    color: white;
    border: none;
    transition: all 0.2s;
}

.btn-facebook-share:hover {
    background-color: #0d65d9;
    color: white;
    transform: translateY(-2px);
}

/* ===== TAUTAN PENTING SECTION ===== */
.link-terkait {
    background: var(--white);
    position: relative;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light);
}

.partner-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}

.partner-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--blue);
}
/* Styling untuk SKM Section */
.skm-section {
    background-color: #f8f9fa;
}

.skm-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.skm-badge {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.skm-score {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.skm-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.skm-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.skm-content {
    padding: 0 1rem;
}

.skm-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0056b3;
}

.skm-description p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(
        120deg,
        rgba(0, 123, 255, 0.2),
        rgba(0, 123, 255, 0.1)
    );
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: #0056b3;
}

.btn-skm {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-skm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

@media (max-width: 992px) {
    .skm-badge {
        margin-bottom: 1.5rem;
    }
}
