/* Base Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #004999;
    --primary-light: #e6f0fa;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    --gray-light: #e9ecef;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.alert {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Additional Styles for Enhanced Homepage */

/* Hero Split Layout */
.hero-split {
    min-height: 80vh;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
}

.hero-text {
    flex: 1;
    background: white;
}

.hero-image {
    flex: 1;
    position: relative;
}

@media (max-width: 991.98px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        min-height: 400px;
    }
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    background: rgba(0, 102, 204, 0.1);
}

.price-badge {
    display: inline-block;
    background-color: #ffdd57;
    color: #212529;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

/* Service Cards Enhancements */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
}

.service-icon i {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-body {
    padding: 1.5rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-price {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-footer {
    padding: 1rem;
    text-align: center;
}


.service-badge {
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
}

/* Background Classes for Service Icons */
.bg-primary-light {
    background: rgba(46, 126, 207, 0.1);
    color: var(--primary);
}

.bg-success-light {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.bg-warning-light {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

/* Animation Enhancements */
.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

.animate__delay-3s {
    animation-delay: 1.5s;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transform: perspective(1000px) rotateY(-10deg);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-content {
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-price {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Features Section */
.features-section {
    background-color: var(--light);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-desc {
    color: var(--secondary);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.05);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.service-body {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
}


.service-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

/* About Section */
.about-section {
    background-color: var(--light);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.experience-badge span {
    font-size: 2rem;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.8rem;
    font-weight: 500;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-features {
    margin: 2rem 0;
}

.about-features .feature-item {
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-features .feature-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
}

/* Testimonial Section */
.testimonial-slider {
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 102, 204, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.author-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Slider Navigation */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--primary);
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        justify-content: center;
    }

    .about-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        right: -10px;
    }

    .experience-badge span {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 80px;
        right: 20px;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Scroll Margin for Anchor Links */
#layanan,
#tentang,
#testimoni {
    scroll-margin-top: 100px;
}

/* Animasi untuk Kartu Layanan */
.layanan-item {
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.layanan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Warna hover */
.bg-primary:hover {
    background-color: #0056b3 !important;
}

.bg-success:hover {
    background-color: #218838 !important;
}

.bg-warning:hover {
    background-color: #d39e00 !important;
}

/*status*/
.progress-detail {
    margin-top: 20px;
}

.progress-steps {
    position: relative;
    padding-left: 20px;
}

.progress-step {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.progress-step .step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.progress-step.active .step-icon {
    animation: pulse 1.5s infinite;
}

.progress-step .step-content {
    padding-top: 5px;
}

.progress-step h6 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.progress-step p {
    line-height: 1.4;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}