:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --light-bg: #f8fafc;
    --dark-text: #1f2937;
    --gradient-primary: linear-gradient(
        135deg,
        #1e3a8a 0%,
        #3b82f6 75%,
        #10b981 100%
    );
    --gradient-secondary: linear-gradient(115deg, #10b981 40%, #3b82f6 100%);
    --shadow-light: 0 2px 8px rgba(30, 58, 138, 0.06);
    --shadow-medium: 0 8px 24px rgba(30, 58, 138, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif !important;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Navbar */
.navbar {
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: var(--primary-color) !important;
    padding: 0.6rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 8px;
    font-size: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.3rem;
    transition: color 0.3s, transform 0.2s;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section - Minimalist */
.hero-minimalist {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%),
        radial-gradient(circle at top right, #1e40af, transparent 50%),
        radial-gradient(circle at bottom left, #10b981, transparent 50%);
    color: white;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.company-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: #3b82f6;
    font-size: 0.85rem;
}

.minimalist-content h1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-main {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-call {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    justify-content: center;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.badge-item i {
    color: #10b981;
    font-size: 1rem;
}

.minimalist-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.card-stack {
    position: relative;
    width: 250px;
    height: 250px;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: 140px;
}

.card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    display: block;
}

.card h6 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    animation: floatCard1 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(3deg);
    animation: floatCard2 4s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    transform: rotate(2deg);
    animation: floatCard3 4s ease-in-out infinite 2s;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@keyframes floatCard1 {
    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@keyframes floatCard2 {
    0%,
    100% {
        transform: translateY(-50%) rotate(3deg) translateY(0);
    }

    50% {
        transform: translateY(-50%) rotate(3deg) translateY(-10px);
    }
}

@keyframes floatCard3 {
    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-10px);
    }
}

/* Section Styling */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--accent-color)
    );
    margin: 10px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Cards - Hover Subtle dan Modern */
.service-card,
.project-card,
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    /* padding: 1.5rem; */
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before,
.project-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-card {
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.service-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Project Cards */
.project-card {
    padding: 0;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 1.25rem;
}

.project-card h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.project-card .text-muted {
    font-size: 0.85rem;
}

/* Features */
.feature-box {
    text-align: center;
    padding: 1.25rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-box h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}

/* Statistics */
.stats-box {
    text-align: center;
    padding: 1.25rem;
}

.stat-animated {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Steps */
.process-step {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(30, 58, 138, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.process-step:hover::before {
    opacity: 0.03;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.1);
}

.process-step .service-icon {
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.process-step h6,
.process-step p {
    position: relative;
    z-index: 1;
}

/* Testimonial */
.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.swiper {
    padding-bottom: 40px !important;
}

.swiper-pagination-bullet {
    background: var(--accent-color) !important;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
}

/* About Section */
.about-stats {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: transform 0.3s ease;
}

.about-stats:hover {
    transform: translateY(-5px);
}

/* FAQ */
.accordion-item {
    border: 1px solid rgba(30, 58, 138, 0.1);
    margin-bottom: 0.75rem;
    border-radius: 10px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    background: #fff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(
        90deg,
        rgba(59, 130, 246, 0.1),
        rgba(16, 185, 129, 0.1)
    );
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(59, 130, 246, 0.3);
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

/* Contact Form */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.15);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-right: 0.75rem;
}

/* Footer */
footer {
    /* background: linear-gradient(90deg, #1f2937 85%, #3b82f6 100%); */
    background: #1f2937;
    color: #f8fafc;
    padding: 3rem 0 1.25rem;
}

.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(248, 250, 252, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 0.9rem;
}

.footer-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 12px;
}

.footer-link:hover::before {
    width: 8px;
}

.social-icon {
    color: #f8fafc;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    text-align: center;
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.85rem;
}

/* Buttons */
.cta-btn {
    background: var(--gradient-secondary);
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-btn::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.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    color: #fff;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-minimalist {
        padding: 120px 0 80px;
    }

    .minimalist-content h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .minimalist-visual {
        height: 400px;
        margin-top: 0;
    }

    .card-stack {
        width: 300px;
        height: 300px;
    }

    .card {
        width: 160px;
        padding: 2rem;
    }

    .card i {
        font-size: 2.5rem;
    }

    .card h6 {
        font-size: 1rem;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .service-card,
    .project-card,
    .testimonial-card {
        /* padding: 2rem; */
        border-radius: 16px;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h5 {
        font-size: 1.25rem;
    }

    .project-card img {
        /* height: 220px; */
        height: 100%;
    }

    .project-card-content {
        padding: 1.5rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.8rem;
    }

    .stats-box {
        padding: 1.5rem;
    }

    .stat-animated {
        font-size: 3rem;
    }

    .process-step {
        padding: 2rem;
        border-radius: 16px;
    }

    .author-avatar img {
        width: 60px;
        height: 60px;
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.25rem 1.5rem;
    }

    .form-control,
    .form-select {
        padding: 0.875rem 1.25rem;
    }

    footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 0.875rem 2.2rem;
        font-size: 1rem;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .minimalist-content h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .minimalist-visual {
        height: 350px;
    }

    .card-stack {
        width: 280px;
        height: 280px;
    }

    .card {
        width: 150px;
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .minimalist-content h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-group {
        justify-content: center;
    }

    .btn-main,
    .btn-call {
        width: auto;
        min-width: 200px;
    }

    .trust-badges {
        justify-content: center;
    }

    .minimalist-visual {
        height: 280px;
    }

    .card-stack {
        transform: scale(0.9);
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand i {
        font-size: 1.3rem;
    }

    .hero-minimalist {
        padding: 90px 0 50px;
        text-align: center;
    }

    .minimalist-content h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-main,
    .btn-call {
        width: 100%;
        max-width: 280px;
    }

    .trust-badges {
        justify-content: center;
    }

    .badge-item {
        font-size: 0.8rem;
    }

    .minimalist-visual {
        height: 250px;
    }

    .card-stack {
        transform: scale(0.8);
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .service-card,
    .project-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-card h5 {
        font-size: 1rem;
    }

    .project-card img {
        height: 160px;
    }

    .stats-box {
        padding: 1rem;
    }

    .stat-animated {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .feature-box {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .process-step {
        padding: 1.25rem;
    }

    .author-avatar img {
        width: 45px;
        height: 45px;
    }

    .testimonial-rating {
        font-size: 0.9rem;
    }

    .accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }

    .form-control,
    .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-info-item {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .contact-info-item i {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }

    footer {
        padding: 2.5rem 0 1rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .social-icon {
        font-size: 1.1rem;
        margin: 0 0.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
    }

    #back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Very small devices (less than 400px) */
@media (max-width: 400px) {
    .minimalist-content h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .card-stack {
        transform: scale(0.7);
    }

    .minimalist-visual {
        height: 220px;
    }

    .btn-main,
    .btn-call {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* Fix for very tall mobile devices */
@media (max-height: 700px) and (max-width: 767px) {
    .hero-minimalist {
        min-height: 90vh;
        padding: 80px 0 40px;
    }
}

/* Fix for landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-minimalist {
        min-height: 120vh;
        padding: 90px 0 40px;
    }

    .minimalist-visual {
        display: none;
    }
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

#ahli-kami {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%); */
    position: relative;
    overflow: hidden;
}

#ahli-kami:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    top: -100px;
    right: -100px;
}

#ahli-kami:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.05);
    bottom: -80px;
    left: -80px;
}

.expert-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    padding: 0px 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.expert-img:hover {
    transform: translateY(-10px);
}

.expert-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
    z-index: 3;
}

.expert-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon-ahli {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.feature-content p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    #ahli-kami {
        padding: 60px 0;
    }

    .expert-img {
        max-width: 300px;
        margin-bottom: 30px;
    }

    .section-title:after {
        margin: 10px auto;
    }
}

/* Hero Section Gallery */
.gallery-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%),
        radial-gradient(circle at top right, #1e40af, transparent 50%),
        radial-gradient(circle at bottom left, #10b981, transparent 50%);
    color: white;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    text-align: center;
}

.gallery-hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gallery-subtitle {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    margin-bottom: 25px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 20px;
    color: white;
}

.gallery-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-location {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.9;
}

.gallery-location i {
    margin-right: 5px;
}

/* Responsive Design untuk Gallery */
@media (max-width: 768px) {
    .gallery-hero {
        min-height: 50vh;
        padding: 100px 0 40px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-hero h1 {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .gallery-hero h1 {
        font-size: 1.6rem;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-title {
        font-size: 1rem;
    }
}
