: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;
}

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

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
    padding: 1rem;
}

.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;
}

.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(--color-primary);
    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(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    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;
}

/* Section Badge */
.section-badge {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.section-title {
    color: #2d3748;
    font-weight: 700;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 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;
}

.price-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.price-card-wrapper {
    flex: 0 0 auto;
    width: calc(25% - 15px);
}

.price-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 200px; /* Ukuran yang lebih besar */
    max-height: 200px;
    width: 100%;
    max-width: 100%; /* Menggunakan 100% untuk responsif penuh */
    position: relative;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.2);
}

.price-card-image {
    width: 45%; /* Sedikit lebih lebar */
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.price-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.15)
    );
    z-index: 1;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.price-card:hover .price-card-image img {
    transform: scale(1.15);
}

.price-card-size {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(8, 145, 178, 0.85);
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.price-card:hover .price-card-size {
    background: rgba(2, 132, 199, 0.95);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.price-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55%;
    position: relative;
    z-index: 2;
}

.price-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Standard property for future compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
}

.price-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.price-card-location,
.price-card-date {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.price-card:hover .price-card-location,
.price-card:hover .price-card-date {
    color: #0891b2;
}

.price-card-location i,
.price-card-date i {
    font-size: 0.95rem;
    color: #0891b2;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .price-card-wrapper {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 991.98px) {
    .price-card-wrapper {
        width: calc(50% - 10px);
    }

    .price-card {
        height: 180px;
        max-height: 180px;
    }

    .price-card-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .price-card-wrapper {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .price-cards-container {
        gap: 20px;
    }

    .price-card {
        height: 160px;
        max-height: 160px;
    }

    .price-card-image {
        height: 160px;
    }

    .price-card-title {
        font-size: 1.15rem;
    }

    .price-card-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .price-card {
        height: 150px;
        max-height: 150px;
    }

    .price-card-image {
        height: 150px;
        width: 40%;
    }

    .price-card-content {
        width: 60%;
        padding: 15px;
    }

    .price-card-size {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* ===== NEWS SECTION - FIXED ===== */
.news-section {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(16, 185, 129, 0.05) 100%
    );
    position: relative;
    padding: 5rem 0;
}

.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cccccc' fill-opacity='0.2'%3E%3Ccircle cx='80' cy='10' r='2'/%3E%3Ccircle cx='90' cy='10' r='2'/%3E%3Ccircle cx='80' cy='20' r='2'/%3E%3Ccircle cx='90' cy='20' r='2'/%3E%3Ccircle cx='70' cy='10' r='2'/%3E%3Ccircle cx='70' cy='20' r='2'/%3E%3Ccircle cx='80' cy='30' r='2'/%3E%3Ccircle cx='90' cy='30' r='2'/%3E%3Ccircle cx='70' cy='30' r='2'/%3E%3Ccircle cx='60' cy='10' r='2'/%3E%3Ccircle cx='60' cy='20' r='2'/%3E%3Ccircle cx='60' cy='30' r='2'/%3E%3Ccircle cx='10' cy='70' r='2'/%3E%3Ccircle cx='10' cy='80' r='2'/%3E%3Ccircle cx='10' cy='90' r='2'/%3E%3Ccircle cx='20' cy='70' r='2'/%3E%3Ccircle cx='20' cy='80' r='2'/%3E%3Ccircle cx='20' cy='90' r='2'/%3E%3Ccircle cx='30' cy='70' r='2'/%3E%3Ccircle cx='30' cy='80' r='2'/%3E%3Ccircle cx='30' cy='90' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

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

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280; /* Gray-500 */
    margin-bottom: 1rem;
}

.news-date i {
    color: #3b82f6; /* Blue-500 */
}

.news-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937; /* Gray-800 */
    margin-bottom: 1rem;
    line-height: 1.4;
    flex: 1;
}

.news-content p {
    color: #6b7280; /* Gray-500 */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6; /* Blue-500 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: #1d4ed8; /* Blue-700 */
    gap: 0.75rem;
    text-decoration: none;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.btn-view-all {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    text-decoration: none;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: rotate(90deg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .price-card {
        margin-bottom: 2rem;
    }

    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .price-card,
    .news-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

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

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-info {
        align-self: flex-end;
    }

    .news-image {
        height: 180px;
    }
}

/* ===== RESPONSIVE DESIGN FOR NEWS ===== */
@media (max-width: 767.98px) {
    .news-section {
        padding: 3rem 0;
    }

    .news-card {
        margin-bottom: 2rem;
    }

    .news-content {
        padding: 1.25rem;
    }

    .news-image {
        height: 180px;
    }

    .news-content h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .news-section {
        padding: 2.5rem 0;
    }

    .news-content {
        padding: 1rem;
    }

    .news-image {
        height: 160px;
    }

    .btn-view-all {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 575.98px) {
    .services-section,
    .price-section,
    .news-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .price-card,
    .news-card {
        padding: 1.25rem;
    }
}

/* ===== FOOTER STYLING ===== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #45a5ff 10%, #1e293b 70%, #334155 100%);

    color: white;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.8);
    border-color: rgba(59, 130, 246, 0.8);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Footer Links */
.footer-links {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    border-radius: 1px;
}

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

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-menu a::before {
    content: "";
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-menu a:hover::before {
    background: var(--color-primary);
    transform: scale(1.5);
}

/* Contact Info */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 2.5rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .footer-description {
        max-width: 100%;
    }

    .contact-item {
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ===== BACK TO TOP WITH PROGRESS INDICATOR - FIXED ===== */
.back-to-top-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    cursor: pointer;
}

.back-to-top-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-wrapper:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Progress Ring */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.15s ease-out;
    stroke: #0ea5e9;
    stroke-width: 2;
    stroke-linecap: round;
    fill: transparent;
}

.progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
    fill: transparent;
}

/* Back to Top Button */
.back-to-top-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #0ea5e9;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-button:hover {
    background: rgba(14, 165, 233, 0.95);
    color: white;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.back-to-top-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.back-to-top-button i {
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: none;
}

/* Dark Theme */
.back-to-top-wrapper.dark-theme .back-to-top-button {
    background: rgba(15, 23, 42, 0.95);
    color: #0ea5e9;
}

.back-to-top-wrapper.dark-theme .back-to-top-button:hover {
    background: rgba(14, 165, 233, 0.95);
    color: white;
}

.back-to-top-wrapper.dark-theme .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.2);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4),
            0 0 0 8px rgba(14, 165, 233, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
    }
}

.back-to-top-wrapper.pulse .back-to-top-button {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .back-to-top-wrapper {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .back-to-top-button {
        width: 38px;
        height: 38px;
    }

    .back-to-top-button i {
        font-size: 1rem;
    }
}

/* ===== LINK TERKAIT SECTION ===== */
.link-terkait {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.02) 0%,
        rgba(16, 185, 129, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}

.link-terkait::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Partners Slider */
.partners-slider {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Partners Container - Improved centering for navigation buttons */
.partners-container {
    overflow: hidden;
    position: relative;
    min-height: 120px; /* Match partner-item height */
    display: flex;
    align-items: center; /* Center content vertically */
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.partner-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    gap: 0.5rem;
}

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

.partner-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

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

.partner-item:hover .partner-name {
    color: var(--ocean-blue);
}

/* Navigation Buttons - Positioned at center of card height */
.slider-nav {
    position: absolute;
    top: 50%; /* Center relative to partners-container */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    color: var(--gray-600);
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
    margin: 8px;
}

.slider-nav:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border-color: var(--ocean-blue);
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.05);
    transition: all 0.1s ease;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
}

/* Partners Slider - Ensure proper structure */
.partners-slider {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 4rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

/* Responsive Design - Maintain center positioning */
@media (max-width: 768px) {
    .partners-container {
        min-height: 100px; /* Match mobile partner-item height */
    }

    .partner-item {
        min-width: 140px;
        height: 100px;
        padding: 0.75rem;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin: 6px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .partners-slider {
        padding: 2rem 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-container {
        min-height: 90px;
    }

    .partner-item {
        min-width: 120px;
        height: 90px;
        padding: 0.5rem;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
        margin: 4px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .partners-slider {
        padding: 1.5rem 2.5rem 1rem;
    }
}

/* ===== MODERN BERITA SECTION STYLING ===== */

/* ===== MODERN BREADCRUMB STYLING ===== */
/* ===== SIMPLE BREADCRUMB STYLING ===== */
/* ===== SIMPLE BREADCRUMB STYLING ===== */
.breadcrumb-simple {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.breadcrumb-simple::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 60 60"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>')
        repeat;
}

.breadcrumb-clean {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Menghilangkan garis miring - hapus bagian ::after */
/* .breadcrumb-item:not(:last-child)::after sudah dihapus */

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ocean-blue);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--ocean-deep);
    background: rgba(var(--ocean-blue-rgb), 0.1);
    transform: translateY(-1px);
}

.breadcrumb-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: var(--gray-600);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    background: rgba(var(--ocean-blue-rgb), 0.08);
}

.breadcrumb-item.active i {
    color: var(--ocean-blue);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .breadcrumb-simple {
        padding: 0.75rem 0;
    }

    .breadcrumb-clean {
        gap: 0.25rem;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
        gap: 0.375rem;
    }

    .breadcrumb-link {
        padding: 0.375rem 0.5rem;
        gap: 0.375rem;
    }

    .breadcrumb-item.active {
        padding: 0.375rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-item span {
        display: none;
    }

    .breadcrumb-link {
        padding: 0.5rem;
    }

    .breadcrumb-item.active {
        padding: 0.5rem;
    }
}
/* ===== PAGINATION STYLING - OCEAN THEME ===== */
.pagination-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
}

.pagination {
    --bs-pagination-padding-x: 1rem;
    --bs-pagination-padding-y: 0.75rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-color: var(--gray-600);
    --bs-pagination-bg: var(--white);
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: var(--gray-300);
    --bs-pagination-border-radius: var(--radius);
    --bs-pagination-hover-color: var(--white);
    --bs-pagination-hover-bg: var(--ocean-blue);
    --bs-pagination-hover-border-color: var(--ocean-blue);
    --bs-pagination-focus-color: var(--white);
    --bs-pagination-focus-bg: var(--ocean-light);
    --bs-pagination-focus-border-color: var(--ocean-light);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    --bs-pagination-active-color: var(--white);
    --bs-pagination-active-bg: var(--ocean-blue);
    --bs-pagination-active-border-color: var(--ocean-blue);
    --bs-pagination-disabled-color: var(--gray-400);
    --bs-pagination-disabled-bg: var(--gray-100);
    --bs-pagination-disabled-border-color: var(--gray-300);

    gap: 0.5rem;
    justify-content: center;
}

.page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    border-radius: var(--radius) !important;
    overflow: hidden;
}

.page-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.page-link:hover::before,
.page-link:focus::before {
    opacity: 1;
}

.page-link:hover,
.page-link:focus {
    color: var(--white) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.page-item.active .page-link {
    background: linear-gradient(
        135deg,
        var(--ocean-blue),
        var(--ocean-teal)
    ) !important;
    border-color: transparent !important;
    color: var(--white) !important;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: var(--font-weight-semibold);
    background: rgba(30, 64, 175, 0.05);
    border-color: rgba(30, 64, 175, 0.2);
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background: var(--ocean-blue) !important;
    color: var(--white) !important;
}

/* Pagination Info */
.pagination-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* Responsive Pagination */
@media (max-width: 767.98px) {
    .pagination {
        --bs-pagination-padding-x: 0.75rem;
        --bs-pagination-padding-y: 0.5rem;
        --bs-pagination-font-size: 0.8rem;
        gap: 0.25rem;
    }

    .page-link {
        min-width: 2rem;
        height: 2rem;
    }

    .pagination-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .page-link {
        min-width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }

    /* Hide page numbers on very small screens, keep only prev/next */
    .page-item:not(:first-child):not(:last-child):not(.active) {
        display: none;
    }
}
/* Share List Styling */
.share-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-item {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.75rem;
}

.share-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.share-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
}

.share-link:hover {
    color: var(--gray-900);
    transform: translateX(5px);
}

.share-link i:first-child {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    color: var(--gray-600);
}

.share-link.whatsapp:hover i:first-child {
    color: #25d366;
}

.share-link.facebook:hover i:first-child {
    color: #1877f2;
}

.share-link.twitter:hover i:first-child {
    color: #000000;
}

.share-link.copy:hover i:first-child {
    color: var(--ocean-blue);
}

.share-link span {
    flex: 1;
    font-size: 1rem;
}

.share-arrow {
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.share-link:hover .share-arrow {
    color: var(--gray-600);
    transform: translate(2px, -2px);
}

/* Copy button feedback */
.share-link.copy.copied {
    color: #10b981;
}

.share-link.copy.copied i:first-child {
    color: #10b981;
}

/* Responsive */
@media (max-width: 767.98px) {
    .share-link {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .share-link i:first-child {
        font-size: 1.1rem;
    }

    .share-link span {
        font-size: 0.9rem;
    }
}
/* Article Meta Styling */
.article-meta {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem !important;
}

.meta-item {
    font-size: 0.875rem;
    color: #6c757d;
    transition: color 0.2s ease;
}

.meta-item i {
    font-size: 1rem;
    opacity: 0.8;
}

.meta-divider {
    font-weight: bold;
    opacity: 0.5;
}

/* Hover effects */
.meta-item:hover {
    color: #495057;
}

.meta-item:hover i {
    opacity: 1;
    color: #007bff;
}

/* Sticky Share Section */
.sticky-share {
    position: sticky;
    top: 2rem;
    z-index: 100;
    background: var(--white);
    /* border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    padding: 1.5rem;
    margin-top: 2rem;
    /* border: 1px solid var(--gray-200); */
    transition: box-shadow 0.3s ease;
}

.sticky-share h5 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Responsive sticky behavior */
@media (max-width: 991.98px) {
    .sticky-share {
        position: static;
        margin-top: 2rem;
        box-shadow: none;
        border: none;
        padding: 1rem 0;
        background: transparent;
    }

    .sticky-share:hover {
        box-shadow: none;
    }
}

@media (max-width: 767.98px) {
    .sticky-share {
        margin-top: 1.5rem;
        padding: 0.75rem 0;
    }

    .sticky-share h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .article-meta {
        padding: 0.5rem 0;
    }
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--ocean-blue);
}

/* Product Image Container - 50% dari tinggi card */
.product-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: var(--gray-50);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    color: var(--white);
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-btn i {
    color: var(--gray-600);
    font-size: 14px;
    transition: color 0.3s ease;
}

.wishlist-btn:hover i {
    color: var(--red);
}

.wishlist-btn.active i {
    color: var(--red);
}

/* Product Content - sisa 50% dari tinggi card */
.product-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0; /* Penting untuk flex shrinking */
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4em; /* Fixed height untuk 2 baris */
}

.product-size {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 1.2em; /* Fixed height */
}

.product-size i {
    color: var(--ocean-teal);
    font-size: 12px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin: 2px 0;
    height: 1.5em; /* Fixed height */
}

.product-price::before {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
    height: 36px; /* Fixed height untuk buttons */
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-teal));
    color: var(--white);
    border: none;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    height: 36px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-quick-view {
    background: var(--white);
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
}

.btn-quick-view:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card {
        height: 280px; /* Sedikit lebih kecil di tablet */
    }

    .product-image {
        height: 140px;
    }

    .product-content {
        padding: 10px;
        gap: 5px;
    }

    .product-title {
        font-size: 0.85rem;
        height: 2.2em;
    }

    .product-price {
        font-size: 0.9rem;
    }

    .btn-add-cart {
        font-size: 0.7rem;
        height: 32px;
    }

    .product-actions {
        height: 32px;
    }

    .btn-quick-view {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .product-card {
        height: 260px; /* Lebih kecil di mobile */
    }

    .product-image {
        height: 130px;
    }

    .product-content {
        padding: 8px;
    }

    .product-actions {
        flex-direction: column;
        height: auto;
        gap: 4px;
    }

    .btn-quick-view {
        width: auto;
        height: 28px;
        padding: 6px 10px;
    }

    .btn-add-cart {
        height: 28px;
    }
}
.skm-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.skm-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    z-index: 0;
}

.skm-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.skm-card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.05);
    z-index: -1;
}

.skm-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border-radius: 12px;
    color: white;
    height: 100%;
    min-height: 200px;
}

.skm-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.score-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.score-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.skm-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1px;
}

.skm-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.skm-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4e73df, #224abe);
    border-radius: 2px;
}

.skm-description p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.highlight {
    background: linear-gradient(
        90deg,
        rgba(78, 115, 223, 0.15),
        rgba(78, 115, 223, 0)
    );
    color: #224abe;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.btn-skm {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.btn-skm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.4);
    color: white;
}

@media (max-width: 991px) {
    .skm-badge {
        min-height: auto;
        padding: 25px;
    }

    .skm-card {
        padding: 30px;
    }
}
