
/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    cursor: pointer;
}

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

.floating-btn-text {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn-wa:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.floating-btn-call {
    background: linear-gradient(135deg, #0088cc 0%, #005f99 100%);
}

.floating-btn-call:hover {
    background: linear-gradient(135deg, #005f99 0%, #004466 100%);
}

/* Animation for buttons */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }

    50% {
        transform: scale(1.05) translateY(0);
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-btn {
    animation: bounce-in 0.6s ease-out;
}

.floating-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.2s;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-btn-wa {
    animation: bounce-in 0.6s ease-out, pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .floating-btn i {
        font-size: 26px;
    }

    .floating-btn-text {
        display: none;
    }
}

/* Cek Tagihan Section - New Design */
.cek-tagihan-wrapper-new {
    background: #ffffff;
    min-height: 320px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.cek-tagihan-bg-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    opacity: 0.6;
}

.cek-tagihan-bg-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(59, 130, 246, 0.03) 50%, transparent 60%);
    background-size: 40px 40px;
}

.cek-tagihan-bg-new::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Geometric Shapes */
.cek-tagihan-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -30px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 50%;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    border-radius: 20px;
    top: 50%;
    right: 5%;
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

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

/* Content Styling */
.cek-tagihan-content-new {
    position: relative;
    z-index: 2;
}

.bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.1);
}

.text-primary {
    color: #3b82f6 !important;
}

/* Input Styling */
.cek-tagihan-form-new {
    max-width: 100%;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 22px;
    z-index: 3;
    pointer-events: none;
}

.cek-tagihan-input-new {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 20px 16px 52px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.cek-tagihan-input-new:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    outline: none;
}

.cek-tagihan-input-new::placeholder {
    color: #cbd5e1;
}

/* Button Styling */
.btn-cek-tagihan-new {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cek-tagihan-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cek-tagihan-new:hover::before {
    left: 100%;
}

.btn-cek-tagihan-new:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-cek-tagihan-new:active {
    transform: translateY(0);
}

.btn-cek-tagihan-new:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

/* Illustration Area */
.cek-tagihan-illustration {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    min-height: 320px;
}

.illustration-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.water-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.water-icon {
    font-size: 120px;
    color: #3b82f6;
    opacity: 0.15;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #3b82f6;
    font-size: 24px;
    animation: float-element 4s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.float-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1.3s;
}

.float-3 {
    bottom: 20%;
    right: 25%;
    animation-delay: 2.6s;
}

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

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .cek-tagihan-wrapper-new {
        min-height: auto;
    }
    
    .cek-tagihan-content-new {
        padding: 2rem !important;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
    
    .cek-tagihan-illustration {
        display: none !important;
    }
    
    .cek-tagihan-input-new {
        font-size: 16px;
    }
    
    .btn-cek-tagihan-new {
        padding: 14px 24px;
    }
}

@media (max-width: 767.98px) {
    .cek-tagihan-content-new {
        padding: 1.5rem !important;
    }
    
    .cek-tagihan-content-new h2 {
        font-size: 1.75rem !important;
    }
    
    .cek-tagihan-content-new p {
        font-size: 0.95rem !important;
    }
    
    .cek-tagihan-input-new {
        padding: 14px 18px 14px 48px;
        font-size: 15px;
    }
    
    .input-icon {
        font-size: 20px;
        left: 16px;
    }
}

/* Remove old styles or keep for backward compatibility */
/* Old .cek-tagihan-wrapper styles can be kept or removed */

/* Pengumuman Slider - Equal Padding */
.col-12.px-0.px-md-3.px-lg-4 {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .col-12.px-0.px-md-3.px-lg-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .col-12.px-0.px-md-3.px-lg-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Company Profile Video - Full Width & Height */
.col-lg-5.d-flex.align-items-stretch {
    padding: 0 !important;
    margin: 0 !important;
}

.col-lg-5.d-flex.align-items-stretch > div {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.col-lg-5.d-flex.align-items-stretch iframe {
    border-radius: 12px;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Ensure YouTube Section Card Body Uses Full Height */
.col-lg-8 .card-body.h-100 {
    display: flex;
    flex-direction: column;
}

.col-lg-8 .row.flex-grow-1 {
    flex: 1;
    min-height: 0;
    margin: 0;
}

/* Remove padding from YouTube video column */
.col-lg-5.d-flex.align-items-stretch {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure parent row has proper spacing */
.col-lg-8 .row.gx-4 {
    margin-left: 0;
    margin-right: 0;
}

.col-lg-8 .row.gx-4 > [class*="col-"] {
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-lg-8 .row.gx-4 > .col-lg-5 {
    padding-left: 0.5rem;
    padding-right: 0;
}

/* Info & Aplikasi Section Styles */
.info-card,
.banner-card,
.app-card {
    transition: all 0.4s ease;
    min-height: 360px;
}

.info-card:hover,
.banner-card:hover,
.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left-color: #2980b9;
}

.info-item.cursor-pointer {
    cursor: pointer;
}

.info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4fc;
    border-radius: 8px;
}

.info-icon i {
    font-size: 18px;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a5f;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.text-navy {
    color: #1e3a5f;
}

.banner-card {
    overflow: hidden;
    cursor: pointer;
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card img {
    transition: transform 0.4s ease;
    object-fit: contain !important;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.banner-card:hover img {
    transform: scale(1.03);
}

.app-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card img {
    transition: transform 0.4s ease;
    object-fit: contain !important;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.app-card:hover img {
    transform: scale(1.03);
}

.app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    margin: 1rem;
}

@media (max-width: 991.98px) {
    .app-overlay {
        margin: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .app-overlay {
        margin: 0.75rem;
    }
}

.app-card:hover .app-overlay {
    opacity: 1;
}

.app-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.app-card:hover .app-overlay-content {
    transform: translateY(0);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {

    .info-card,
    .banner-card,
    .app-card {
        min-height: 300px;
    }

    .banner-card,
    .app-card {
        padding: 0.875rem;
    }

    .info-item {
        padding: 0.875rem;
    }

    .info-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {

    .info-card,
    .banner-card,
    .app-card {
        min-height: 280px;
    }

    .banner-card,
    .app-card {
        padding: 0.75rem;
    }
}

/* Pasang Baru Section Styles */
.pasang-baru-card {
    min-height: 350px;
    transition: all 0.4s ease;
}

.pasang-baru-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2) !important;
}

.pasang-baru-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 50%, #0d47a1 100%);
    z-index: 1;
}

.pasang-baru-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
}

.pasang-baru-content {
    position: relative;
}

.pasang-baru-illustration {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-circle 3s ease-in-out infinite;
}

.illustration-circle-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.illustration-circle-2 {
    width: 280px;
    height: 280px;
    animation-delay: 1s;
}

.illustration-circle-3 {
    width: 360px;
    height: 360px;
    animation-delay: 2s;
}

.illustration-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.illustration-icon i {
    font-size: 4rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-circle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

.btn-white {
    background: white;
    color: #1e88e5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
    .pasang-baru-card {
        min-height: 300px;
    }

    .pasang-baru-content {
        text-align: center;
    }

    .pasang-baru-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .pasang-baru-card {
        min-height: auto;
    }

    .pasang-baru-content h2 {
        font-size: 1.75rem;
    }

    .pasang-baru-content .lead {
        font-size: 1rem;
    }
}

/* Jajaran Direksi & Komisaris Section Styles */
.jajaran-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    position: relative;
}

.jajaran-section-alt {
    background: linear-gradient(135deg, #0f2744 0%, #1a3d5c 50%, #0f2744 100%);
}

.batik-background {
    position: absolute;
    inset: 0;
    background-image: url('{{ asset('images/batik.png') }}');
    background-size: 400px 400px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 1;
}

.batik-background-alt {
    opacity: 0.1;
}

.jajaran-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

.jajaran-card-direksi {
    max-width: 380px;
}

.jajaran-card-komisaris {
    max-width: 320px;
}

.jajaran-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.jajaran-photo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f4fc 0%, #d4e9f7 100%);
}

.jajaran-photo-wrapper-komisaris {
    padding-top: 120%;
    background: #f8fbff;
}

.jajaran-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.jajaran-card-komisaris .jajaran-photo {
    object-fit: contain;
    object-position: center;
    padding: 12px;
}

.jajaran-card:hover .jajaran-photo {
    transform: scale(1.05);
}

.jajaran-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jajaran-card:hover .jajaran-photo-overlay {
    opacity: 1;
}

.jajaran-info {
    padding: 2rem;
    text-align: center;
}

.jajaran-card-komisaris .jajaran-info {
    padding: 1.5rem;
}

.jajaran-name {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.jajaran-card-komisaris .jajaran-name {
    font-size: 1.15rem;
}

.jajaran-position {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.jajaran-desc {
    color: #60697b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

/* Swiper pagination for jajaran sections */
.jajaran-section .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.jajaran-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* Ensure swiper-wrapper uses flexbox for order property to work */
.jajaran-section .swiper-wrapper {
    display: flex;
}

@media (max-width: 767.98px) {

    .jajaran-card-direksi,
    .jajaran-card-komisaris {
        max-width: 100%;
    }

    .jajaran-info {
        padding: 1.5rem;
    }

    .jajaran-card-komisaris .jajaran-info {
        padding: 1.25rem;
    }

    .jajaran-name {
        font-size: 1.2rem;
    }

    .jajaran-card-komisaris .jajaran-name {
        font-size: 1.05rem;
    }

    /* Reorder Utama items to appear first on mobile */
    /* Swiper wrapper already uses flexbox, so order property will work */
    .jajaran-section .swiper-slide.jajaran-utama {
        order: -1;
    }
}

/* Infografis Section Styles */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
}

.infografis-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, .03) 10px, rgba(255, 255, 255, .03) 20px);
    z-index: 1;
}

.infografis-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.infografis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.infografis-card:hover::before {
    left: 100%;
}

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

.infografis-icon-wrapper {
    margin-bottom: 1.5rem;
}

.infografis-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.infografis-card:hover .infografis-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.infografis-icon i {
    font-size: 3rem;
    color: white;
}

.infografis-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.infografis-subtitle {
    color: #60697b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.infografis-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.infografis-action i {
    font-size: 1.25rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.infografis-card:hover .infografis-action {
    background: #3498db;
}

.infografis-card:hover .infografis-action i {
    color: white;
    transform: scale(1.2);
}

.infografis-card-link:hover .infografis-action i {
    transform: translateX(5px);
}

/* Modal Styles */
.modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-body img {
    border-radius: 0 0 16px 16px;
}

@media (max-width: 991.98px) {
    .infografis-card {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }

    .infografis-icon {
        width: 80px;
        height: 80px;
    }

    .infografis-icon i {
        font-size: 2.5rem;
    }

    .infografis-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .infografis-card {
        min-height: 220px;
    }
}

/* Mitra Section Styles */
.mitra-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.mitra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.mitra-card .card-body {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.mitra-logo {
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.mitra-card:hover .mitra-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .mitra-card .card-body {
        min-height: 150px !important;
        padding: 2rem !important;
    }

    .mitra-logo {
        max-height: 80px !important;
    }
}

/* Kantor Pelayanan Section Styles */
.kantor-pelayanan-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 50%, #1a2332 100%);
    opacity: 0.95;
}

.kantor-pelayanan-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.kantor-pelayanan-card {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.kantor-info-panel {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #1a5276 100%);
    position: relative;
    overflow: hidden;
}

.kantor-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.kantor-info-panel::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.text-white-80 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 991.98px) {
    .kantor-info-panel {
        order: 2;
    }

    #landing-map {
        min-height: 350px !important;
    }
}

.custom-infowindow {
    max-width: 250px;
    color: black;
}

.custom-infowindow img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.custom-infowindow .content {
    padding: 12px;
}

.custom-infowindow h6 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #343f52;
}

.custom-infowindow p {
    font-size: 12px;
    color: #60697b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.custom-infowindow .btn-directions {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 11px;
    padding: 5px;
}
.cursor-pointer { cursor: pointer; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
}

/* ============================================
   MOBILE OPTIMIZATION - Additional Styles
   ============================================ */

/* Font Size Optimizations for Mobile */
@media (max-width: 767.98px) {
    /* Hero Section Title */
    .fs-35 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    /* Display Classes */
    .display-3 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .display-4 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    /* Section Headings */
    h2.display-3,
    h3.display-4 {
        margin-bottom: 1rem !important;
    }
    
    /* Lead Text */
    .lead {
        font-size: 1rem !important;
    }
    
    .lead.fs-lg {
        font-size: 0.95rem !important;
    }
    
    /* Info Pekerjaan Text */
    .info-title {
        font-size: 0.875rem !important;
    }
    
    /* Button Optimizations */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .btn-cek-tagihan {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }
    
    /* Padding Optimizations */
    .p-8 {
        padding: 1.5rem !important;
    }
    
    .p-md-10 {
        padding: 1.75rem !important;
    }
    
    .py-12 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-md-14 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Margin Optimizations */
    .mx-8 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    
    .my-10 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .mb-10 {
        margin-bottom: 2rem !important;
    }
    
    .mb-11 {
        margin-bottom: 2.5rem !important;
    }
    
    /* Container Padding */
    .container-fluid.px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Cek Tagihan Section */
    .cek-tagihan-content h2 {
        font-size: 1.75rem !important;
    }
    
    .cek-tagihan-content p {
        font-size: 0.95rem !important;
    }
    
    /* Pasang Baru Section */
    .pasang-baru-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .pasang-baru-content .lead {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Berita Section */
    .post-title {
        font-size: 1rem !important;
    }
    
    .post-category {
        font-size: 0.75rem !important;
    }
    
    /* Jajaran Section */
    .jajaran-name {
        font-size: 1.1rem !important;
    }
    
    .jajaran-desc {
        font-size: 0.875rem !important;
    }
    
    /* Infografis Section */
    .infografis-title {
        font-size: 1.1rem !important;
    }
    
    .infografis-subtitle {
        font-size: 0.85rem !important;
    }
    
    /* Kantor Pelayanan Section */
    .kantor-info-content h3 {
        font-size: 1.5rem !important;
    }
    
    .kantor-info-content h4 {
        font-size: 1.25rem !important;
    }
    
    .kantor-info-content .lead {
        font-size: 0.95rem !important;
    }
    
    /* Map Section */
    #landing-map {
        min-height: 300px !important;
    }
    
    /* Modal Optimizations */
    .modal-xl,
    .modal-mobile-responsive {
        max-width: 95% !important;
        margin: 0.5rem auto !important;
    }
    
    .modal-dialog {
        margin: 0.5rem !important;
    }
    
    .modal-mobile-responsive {
        width: 100%;
        max-width: 95%;
    }
    
    .modal-body {
        padding: 1rem !important;
    }
    
    .modal-body.p-0 {
        padding: 0 !important;
    }
    
    .modal-header {
        padding: 1rem !important;
    }
    
    .modal-title {
        font-size: 1.1rem !important;
    }
    
    /* Tab Navigation in Modal */
    .nav-tabs .nav-link {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.5rem !important;
    }
    
    /* Table in Modal - Make it scrollable */
    .table-responsive {
        font-size: 0.75rem !important;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.5rem 0.25rem !important;
        white-space: nowrap;
    }
    
    /* Badge Sizes */
    .badge {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.65rem !important;
    }
    
    /* Info Item Spacing */
    .info-item {
        padding: 0.625rem !important;
    }
    
    .info-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .info-icon i {
        font-size: 16px !important;
    }
    
    /* Swiper Pagination */
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 991.98px) {
    .fs-35 {
        font-size: 2rem !important;
    }
    
    .display-3 {
        font-size: 2.25rem !important;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
    }
    
    .modal-xl {
        max-width: 90% !important;
    }
    
    #landing-map {
        min-height: 400px !important;
    }
}

/* Small Mobile Devices (max-width: 575px) */
@media (max-width: 575.98px) {
    .fs-35 {
        font-size: 1.5rem !important;
    }
    
    .display-3 {
        font-size: 1.75rem !important;
    }
    
    .display-4 {
        font-size: 1.5rem !important;
    }
    
    .display-5 {
        font-size: 1.25rem !important;
    }
    
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .p-8 {
        padding: 1rem !important;
    }
    
    .py-12 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .modal-xl {
        max-width: 98% !important;
        margin: 0.25rem auto !important;
    }
    
    .modal-dialog {
        margin: 0.25rem !important;
    }
    
    #landing-map {
        min-height: 250px !important;
    }
    
    .table-responsive {
        font-size: 0.7rem !important;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.4rem 0.2rem !important;
    }
}

/* Touch-friendly improvements */
@media (max-width: 767.98px) {
    /* Increase touch target sizes */
    .btn,
    .nav-link,
    .info-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve readability */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Improve form inputs */
    .form-control,
    .form-control-lg {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for stacked elements */
    .d-flex.flex-column {
        gap: 0.75rem !important;
    }
}

/* Cek Tagihan Section Styles */
.cek-tagihan-wrapper {
    position: relative;
    min-height: 280px;
}

.cek-tagihan-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e8f4fc 0%, #d4e9f7 50%, #c5e0f2 100%);
    background-image:
        radial-gradient(circle at 2px 2px, rgba(100, 149, 175, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
}

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

.cek-tagihan-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    color: rgba(100, 149, 175, 0.25);
    z-index: 1;
    transform: rotate(-15deg);
}

.cek-tagihan-icon svg {
    width: 100%;
    height: 100%;
}

.cek-tagihan-icon-left-top {
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
}

.cek-tagihan-icon-left-bottom {
    bottom: 15%;
    left: 8%;
    transform: rotate(10deg);
    width: 60px;
    height: 60px;
}

.cek-tagihan-icon-right-top {
    top: 15%;
    right: 5%;
    transform: rotate(15deg);
}

.cek-tagihan-icon-right-bottom {
    bottom: 15%;
    right: 8%;
    transform: rotate(-10deg);
    width: 60px;
    height: 60px;
}

.cek-tagihan-input-wrapper {
    width: 100%;
    max-width: 400px;
}

.cek-tagihan-input {
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.cek-tagihan-input:focus {
    border-color: #7cb8d9;
    box-shadow: 0 0 0 4px rgba(124, 184, 217, 0.15);
}

.cek-tagihan-input::placeholder {
    color: #a0aec0;
}

.btn-cek-tagihan {
    background: linear-gradient(135deg, #7cb8d9 0%, #5ba3cc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 14px 32px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cek-tagihan:hover {
    background: linear-gradient(135deg, #5ba3cc 0%, #4a92bb 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 163, 204, 0.35);
}

.btn-cek-tagihan:disabled {
    opacity: 0.7;
    transform: none;
}

/* Water Drops Decoration */
.water-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.water-drop {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: drop-float 4s ease-in-out infinite;
}

.drop-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 8%;
    animation-delay: 0s;
}

.drop-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.drop-3 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.drop-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 12%;
    animation-delay: 1.5s;
}

@keyframes drop-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.25;
    }
}

/* Header Section */
.cek-tagihan-header {
    position: relative;
    z-index: 2;
}

.badge-service {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 1);
    display: inline-block;
}

.cek-tagihan-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.cek-tagihan-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Form Card */
.cek-tagihan-form-wrapper {
    position: relative;
    z-index: 2;
}

.cek-tagihan-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 650px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Form Styling */
.cek-tagihan-form-v2 {
    width: 100%;
}

.form-group-v2 {
    margin-bottom: 1.75rem;
}

.form-label-v2 {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.form-label-v2 i {
    color: #3b82f6;
    font-size: 1.125rem;
}

.input-wrapper-v2 {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-control-v2 {
    width: 100%;
    padding: 18px 100px 18px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.form-control-v2:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-control-v2::placeholder {
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.input-counter {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(226, 232, 240, 0.8);
    padding: 4px 12px;
    border-radius: 8px;
}

.form-hint {
    display: block;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-hint i {
    color: #3b82f6;
}

/* Submit Button */
.btn-submit-v2 {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-submit-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-submit-v2:hover::before {
    left: 100%;
}

.btn-submit-v2:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.btn-submit-v2:active {
    transform: translateY(-1px);
}

.btn-submit-v2:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit-v2 i {
    font-size: 1.25rem;
}

/* Error Alert */
.alert-danger-v2 {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.alert-danger-v2 i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .cek-tagihan-wrapper-v2 {
        min-height: auto;
    }
    
    .cek-tagihan-form-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .water-drop {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .cek-tagihan-title {
        font-size: 2rem;
    }
    
    .cek-tagihan-subtitle {
        font-size: 1rem;
    }
    
    .cek-tagihan-form-card {
        padding: 1.75rem;
        border-radius: 16px;
    }
    
    .form-control-v2 {
        padding: 16px 90px 16px 20px;
        font-size: 1rem;
    }
    
    .input-counter {
        right: 16px;
        font-size: 0.8125rem;
        padding: 3px 10px;
    }
    
    .btn-submit-v2 {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .form-label-v2 {
        font-size: 0.9375rem;
    }
    
    .cek-tagihan-header {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Animation untuk fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cek-tagihan-form-card {
    animation: fadeInUp 0.6s ease-out;
}

