/* ========== GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #222;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    text-align: center;
    background: #5E84C5;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #5E84C5;
    color: #5E84C5;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: #5E84C5;
    color: white;
    transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
    background: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover,
.menu a.active {
    color: #5E84C5;
    font-weight: 600;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
}

.dropbtn:hover,
.dropdown:hover .dropbtn {
    color: #5E84C5;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 8px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #5E84C5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #f9f9f9;
    padding: 10px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.mobile-menu.show {
    display: block;
}

/* ========== HERO ========== */
.hero {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    text-align: left;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-hero-primary {
    background: #5E84C5;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #3a5a8c;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: white;
    color: #5E84C5;
    transform: translateY(-3px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.page-header-content {
    max-width: 650px;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin-bottom: 20px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* ========== BERANDA ========== */
.about-home {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #5E84C5;
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.experience-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-card p {
    font-size: 14px;
    opacity: 0.9;
}

.about-label {
    display: inline-block;
    color: #5E84C5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content h2 .highlight {
    color: #5E84C5;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #5E84C5;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #5E84C5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.no-proyek {
    text-align: center;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 12px;
    color: #666;
}

.lokasi-kantor {
    padding: 80px 0;
    background: white;
}

.lokasi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lokasi-info {
    padding-right: 20px;
}

.lokasi-info .section-header-center {
    margin-bottom: 30px;
}

.lokasi-info .section-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.lokasi-info .section-title .highlight {
    color: #5E84C5;
}

.lokasi-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.lokasi-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.lokasi-icon {
    width: 50px;
    height: 50px;
    background: rgba(94, 132, 197, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lokasi-icon i {
    font-size: 22px;
    color: #5E84C5;
}

.lokasi-detail h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a2a3a;
}

.lokasi-detail p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.lokasi-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.lokasi-detail a:hover {
    color: #5E84C5;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5E84C5;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-map:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
    gap: 12px;
}

.lokasi-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* ========== PROYEK ========== */
.proyek {
    padding: 80px 0;
    background: white;
}

.proyek-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.proyek-label {
    display: inline-block;
    color: #5E84C5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.proyek-title {
    font-size: 36px;
    font-weight: 700;
}

.lihat-semua {
    color: #5E84C5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lihat-semua:hover {
    gap: 12px;
    color: #3a5a8c;
}

.proyek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proyek-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.proyek-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.proyek-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.proyek-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.proyek-card:hover .proyek-image img {
    transform: scale(1.05);
}

.badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.status-tersedia {
    background: #d4edda;
    color: #155724;
}

.status-sold-out {
    background: #f8d7da;
    color: #721c24;
}

.status-coming-soon {
    background: #d4d5ed;
    color: #004085;
}

.proyek-body {
    padding: 20px;
}

.proyek-lokasi {
    color: #5E84C5;
    font-size: 14px;
    margin-bottom: 10px;
}

.proyek-lokasi i {
    margin-right: 5px;
}

.proyek-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.proyek-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.proyek-info span {
    font-size: 13px;
    color: #666;
}

.proyek-info i {
    margin-right: 5px;
    color: #5E84C5;
}

.proyek-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proyek-footer h4 {
    font-size: 18px;
    color: #5E84C5;
    font-weight: 700;
}

.btn-detail {
    display: inline-block;
    background: transparent;
    color: #5E84C5;
    padding: 8px 20px;
    border: 2px solid #5E84C5;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #5E84C5;
    color: white;
}

.no-proyek {
    text-align: center;
    padding: 60px;
    background: #f9f9f9;
    border-radius: 16px;
    grid-column: 1 / -1;
}

.no-proyek p {
    margin: 10px 0;
    color: #666;
}

.filter {
    background: #f9f9f9;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.filter-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.filter-group label i {
    margin-right: 6px;
    color: #5E84C5;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: #5E84C5;
    box-shadow: 0 0 0 3px rgba(94, 132, 197, 0.1);
}

/* ========== DETAIL PROYEK ========== */
.detail-proyek-container {
    background: #f8f9fa;
    padding: 40px 0;
    min-height: 100vh;
}

.detail-proyek-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #5E84C5;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.detail-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
}

.hero-caption h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.hero-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.detail-main {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.status-badge-large {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-tersedia {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.status-sold-out {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #dc3545;
}

.status-coming-soon {
    background: #d4d5ed;
    color: #004085;
    border: 1px solid #007bff;
}

.info-spesifikasi h3,
.deskripsi-proyek h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5E84C5;
    display: inline-block;
}

.spesifikasi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 30px;
}

.spesifikasi-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
}

.spesifikasi-icon {
    width: 45px;
    height: 45px;
    background: #5E84C5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.spesifikasi-item small {
    display: block;
    color: #666;
    font-size: 11px;
}

.spesifikasi-item strong {
    font-size: 16px;
    color: #333;
}

.harga-text {
    color: #5E84C5;
    font-size: 18px;
}

.deskripsi-text {
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-card,
.maps-card,
.share-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cta-card h3,
.maps-card h3,
.share-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-cta {
    display: block;
    width: 100%;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: block;
    width: 100%;
    background: #5E84C5;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
}

.maps-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.maps-link {
    display: inline-block;
    color: #5E84C5;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.maps-link:hover {
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.share-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.share-fb { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-wa { background: #25d366; }

.share-buttons a:hover {
    transform: scale(1.1);
}

.galeri-tab-section {
    margin-top: 40px;
}

.tab-navigation {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn:hover {
    color: #5E84C5;
    background: #f0f4fa;
}

.tab-btn.active {
    color: #5E84C5;
    background: #f0f4fa;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #5E84C5;
    border-radius: 2px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.galeri-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeri-item:hover img {
    transform: scale(1.05);
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeri-overlay i {
    color: white;
    font-size: 30px;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.no-galeri,
.no-video {
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #999;
}

.no-galeri i,
.no-video i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.denah-container {
    padding: 20px 0;
}

.denah-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.denah-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.denah-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.denah-item:hover img {
    transform: scale(1.05);
}

.denah-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    gap: 10px;
}

.denah-overlay i {
    color: white;
    font-size: 30px;
}

.denah-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(94, 132, 197, 0.8);
    padding: 5px 12px;
    border-radius: 20px;
}

.denah-item:hover .denah-overlay {
    opacity: 1;
}

.denah-caption {
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.denah-caption p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.denah-caption i {
    color: #5E84C5;
    margin-right: 8px;
}

.no-denah {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #999;
}

.no-denah i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-denah p {
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}

.no-denah small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* ========== TENTANG ========== */
.visi-misi-section {
    padding: 100px 0;
    background: white;
}

.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.visi-card,
.misi-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.visi-card:hover,
.misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #5E84C5;
}

.visi-icon {
    width: 65px;
    height: 65px;
    background: #5E84C5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.visi-icon i {
    color: white;
    font-size: 24px;
}

.visi-card h3,
.misi-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.visi-card p {
    color: #666;
    line-height: 1.9;
}

.misi-list {
    list-style: none;
    padding: 0;
}

.misi-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.misi-list li i {
    color: #5E84C5;
    margin-top: 2px;
    flex-shrink: 0;
}
.team-swiper {
    padding-bottom: 60px;
    position: relative;
}

.team-swiper .swiper-wrapper {
    align-items: stretch;
}

.team-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.team-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    width: 100%;
    z-index: 10;
}

.team-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #5E84C5;
    opacity: 0.4;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 4px;
    cursor: pointer;
}

.team-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #5E84C5;
    transform: scale(1.2);
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border: 1px solid #e8e8e8;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #5E84C5;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    line-height: 1.3;
    word-break: break-word;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .position {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #5E84C5;
    background: #f5f0e6;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
    color: #5E84C5;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
    background: #5E84C5;
    color: #ffffff;
}

.team-swiper .swiper-button-next::after,
.team-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* ========== KONTAK ========== */
.kontak-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
}

.kontak-info-card,
.kontak-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.kontak-heading h2,
.form-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.kontak-heading p,
.form-heading p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #eef2fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #5E84C5;
    font-size: 18px;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.contact-text p {
    font-size: 14px;
    color: #666;
}

.jam-box {
    margin-top: 50px;
    border: 1px solid #5E84C5;
    border-radius: 18px;
    padding: 32px;
}

.jam-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}

.jam-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.social-wrapper {
    margin-top: 45px;
}

.social-wrapper h4 {
    font-size: 22px;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: #eef2fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E84C5;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #5E84C5;
    color: white;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.form-group label i {
    color: #5E84C5;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #cfd4dc;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5E84C5;
    box-shadow: 0 0 0 4px rgba(94, 132, 197, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    height: 58px;
    background: #5E84C5;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #466ba8;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 22px;
}

.maps-section {
    padding: 60px 0;
    background: white;
}

.maps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.maps-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.maps-content p {
    color: #666;
    line-height: 1.6;
}

.maps-container {
    overflow: hidden;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========== REKOMENDASI ========== */
.rekomendasi-form-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.rekomendasi-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rekomendasi-header {
    text-align: center;
    margin-bottom: 35px;
}

.rekomendasi-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rekomendasi-header .highlight {
    color: #5E84C5;
}

.rekomendasi-header .section-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin: 0 auto 15px;
}

.rekomendasi-header p {
    color: #666;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rekomendasi-form .form-group {
    margin-bottom: 20px;
}

.rekomendasi-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.rekomendasi-form .form-group label i {
    margin-right: 8px;
    color: #5E84C5;
}

.rekomendasi-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.rekomendasi-form .form-group select:focus {
    outline: none;
    border-color: #5E84C5;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-reset {
    flex: 1;
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reset:hover {
    background: #e0e0e0;
}

.btn-submit-rekom {
    flex: 2;
    background: #5E84C5;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-rekom:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
}

.rekomendasi-hasil {
    padding: 60px 0;
    background: white;
}

.hasil-header {
    text-align: center;
    margin-bottom: 40px;
}

.hasil-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hasil-header .highlight {
    color: #5E84C5;
}

.hasil-header p {
    color: #666;
    font-size: 14px;
}

.rekomendasi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rekomendasi-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.rekomendasi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.empty-rekomendasi {
    text-align: center;
    padding: 60px;
    background: #f8f9fc;
    border-radius: 20px;
    margin-top: 20px;
}

.empty-rekomendasi i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-rekomendasi h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-rekomendasi p {
    color: #666;
    margin-bottom: 25px;
}

.btn-konsultasi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-konsultasi:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== PANDUAN ===== */
.panduan-hero,
.alur-section,
.dokumen-section,
.faq-panduan{
    background: #f5f5f5;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.panduan-hero{
    padding: 30px 0 70px;
}

.hero-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 18px;
}

.hero-left{
    background: #5E84C5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1{
    font-size: 52px;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-left p{
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-size: 18px;
}

.hero-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-header-center{
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2{
    font-size: 42px;
    margin-bottom: 12px;
    color: #222;
}

.section-header-center p{
    color: #777;
    font-size: 17px;
}

.alur-section{
    padding-bottom: 80px;
}

.alur-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.alur-card{
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
}

.alur-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alur-icon i{
    font-size: 28px;
}

.blue{
    background: rgba(94,132,197,0.18);
    color: #5E84C5;
}

.gold{
    background: rgba(234,191,85,0.25);
    color: #b8860b;
}

.soft-blue{
    background: rgba(170,190,255,0.25);
    color: #7b96dd;
}

.soft-gold{
    background: rgba(255,221,130,0.25);
    color: #bb8d16;
}

.step-label{
    display: block;
    color: #6f8fcb;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.alur-card h3{
    font-size: 18px;
    margin-bottom: 12px;
}

.alur-card p{
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.dokumen-section{
    padding-bottom: 80px;
}

.dokumen-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.dokumen-card{
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 35px;
}

.dokumen-card h2{
    font-size: 22px;
    color: #5E84C5;
    margin-bottom: 35px;
    font-weight: 500;
}

.dokumen-card h2 i{
    margin-right: 10px;
}

.dokumen-list-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.dokumen-list h4{
    font-size: 13px;
    color: #9a7a18;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.dokumen-list ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.dokumen-list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #555;
    font-size: 14px;
}

.dokumen-list li::before{
    content: "◉";
    position: absolute;
    left: 0;
    top: 0;
    color: #7a96da;
    font-size: 10px;
}

.biaya-card{
    background: #5E84C5;
    border-radius: 16px;
    padding: 35px;
    color: white;
}

.biaya-card h3{
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 500;
}

.biaya-card h3 i{
    margin-right: 10px;
}

.biaya-item{
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.biaya-item.no-border{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.biaya-item span{
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.biaya-item h4{
    font-size: 18px;
    margin: 10px 0 8px;
}

.biaya-item p{
    font-size: 13px;
    opacity: 0.85;
}

.cta-kpr {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.cta-kpr h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.cta-kpr p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
}

.btn-simulasi {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: white;
    color: #5E84C5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-simulasi:hover {
    background: #f4f7ff;
    transform: translateY(-2px);
}

.faq-panduan{
    padding-bottom: 100px;
}

.faq-wrapper{
    background: #ececec;
    border-radius: 18px;
    padding: 50px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.faq-left h2{
    font-size: 38px;
    color: #5E84C5;
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-left p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact{
    background: white;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 24px;
}

.faq-contact span{
    display: block;
    margin-bottom: 15px;
    color: #777;
}

.faq-contact a{
    color: #5E84C5;
    text-decoration: none;
    font-weight: 500;
}

.faq-contact a i{
    margin-left: 8px;
}

.faq-right{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item{
    background: white;
    border-radius: 14px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.faq-question{
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4{
    font-size: 16px;
    color: #333;
}

.faq-question i{
    color: #7a96da;
}

.faq-answer{
    display: none;
    padding: 0 24px 24px;
}

.faq-answer p{
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.faq-item.active .faq-answer{
    display: block;
}

/* ========== KPR ========== */
.kpr-calculator {
    padding: 60px 0;
    background: #f8f9fc;
}

.calculator-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.calculator-header {
    text-align: center;
    margin-bottom: 35px;
}

.calculator-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.calculator-header .highlight {
    color: #5E84C5;
}

.calculator-header .section-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin: 0 auto 15px;
}

.calculator-header p {
    color: #666;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.calculator-form .form-group label i {
    margin-right: 8px;
    color: #5E84C5;
}

.calculator-form .form-group input,
.calculator-form .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.calculator-form .form-group input:focus,
.calculator-form .form-group select:focus {
    outline: none;
    border-color: #5E84C5;
    box-shadow: 0 0 0 3px rgba(94, 132, 197, 0.1);
}

.input-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.suggestion-btn,
.suggestion-percent {
    background: #f0f4fa;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #5E84C5;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion-btn:hover,
.suggestion-percent:hover {
    background: #5E84C5;
    color: white;
}

.tenor-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tenor-btn {
    background: #f0f0f0;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.tenor-btn.active {
    background: #5E84C5;
    color: white;
}

.tenor-btn:hover {
    background: #5E84C5;
    color: white;
}

.btn-hitung {
    width: 100%;
    background: #5E84C5;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-hitung:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
}

.result-header {
    text-align: center;
    margin-bottom: 20px;
}

.result-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.result-header p {
    font-size: 13px;
    color: #888;
}

.result-card {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 25px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 14px;
    color: #666;
}

.result-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.result-value.highlight {
    color: #5E84C5;
    font-size: 22px;
}

.info-note {
    display: flex;
    gap: 10px;
    background: #fff8e1;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.info-note i {
    color: #ffc107;
    font-size: 18px;
}

.info-note p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.tabel-angsur {
    padding: 60px 0;
    background: white;
}

.tabel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.tabel-header {
    text-align: center;
    margin-bottom: 30px;
}

.tabel-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.tabel-header .highlight {
    color: #5E84C5;
}

.table-responsive {
    overflow-x: auto;
}

.angsur-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.angsur-table th,
.angsur-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.angsur-table th {
    background: #5E84C5;
    color: white;
    font-weight: 600;
}

.angsur-table tr:hover {
    background: #f8f9fc;
}

.text-center {
    text-align: center;
}

.panduan-kpr {
    padding: 60px 0;
    background: #f8f9fc;
}

.panduan-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.panduan-header {
    text-align: center;
    margin-bottom: 40px;
}

.panduan-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.panduan-header .highlight {
    color: #5E84C5;
}

.panduan-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #5E84C5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

/* ========== TESTIMONI ========== */
.testimoni-stats {
    padding: 60px 0;
    background: #5E84C5;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.filter-testimoni {
    padding: 40px 0;
    background: #f8f9fc;
    border-bottom: 1px solid #eee;
}

.filter-testimoni .filter-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-testimoni .filter-group {
    min-width: 200px;
}

.filter-testimoni .filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.filter-testimoni .filter-group label i {
    margin-right: 5px;
    color: #5E84C5;
}

.filter-testimoni .filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-testimoni .filter-group select:focus {
    outline: none;
    border-color: #5E84C5;
    box-shadow: 0 0 0 3px rgba(94, 132, 197, 0.1);
}

.testimoni-grid-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.testimoni-grid-section .testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimoni-grid-section .testimoni-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
}

.testimoni-grid-section .testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimoni-grid-section .testimoni-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.testimoni-grid-section .testimoni-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #5E84C5;
}

.testimoni-grid-section .testimoni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimoni-grid-section .testimoni-user h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a2a3a;
}

.testimoni-grid-section .user-role {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 6px;
}

.testimoni-grid-section .testimoni-rating i {
    font-size: 12px;
    color: #ddd;
}

.testimoni-grid-section .testimoni-rating i.filled {
    color: #ffc107;
}

.testimoni-grid-section .testimoni-body {
    margin-bottom: 20px;
    position: relative;
}

.testimoni-grid-section .quote-icon i {
    font-size: 24px;
    color: rgba(94, 132, 197, 0.2);
    margin-bottom: 10px;
}

.testimoni-grid-section .testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimoni-grid-section .testimoni-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

.testimoni-grid-section .testimoni-proyek i,
.testimoni-grid-section .testimoni-date i {
    margin-right: 5px;
    color: #5E84C5;
}

.lihat-lebih-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-lihat-semua{
    background: #5E84C5;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lihat-semua:hover{
    background: #3a5a8c;
    transform: translateY(-2px);
}

.form-testimoni {
    padding: 80px 0;
    background: #ffffff;
}

.form-testimoni-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fc;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-testimoni .form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-testimoni .form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2a3a;
}

.form-testimoni .form-header .highlight {
    color: #5E84C5;
}

.form-testimoni .form-header .section-line {
    width: 60px;
    height: 4px;
    background: #5E84C5;
    margin: 0 auto 15px;
}

.form-testimoni .form-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.testimoni-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

.testimoni-form .form-group {
    margin-bottom: 20px;
}

.testimoni-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.testimoni-form .form-group label i {
    margin-right: 6px;
    color: #5E84C5;
}

.testimoni-form .form-group .required {
    color: #dc3545;
}

.testimoni-form .form-group input,
.testimoni-form .form-group select,
.testimoni-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: #ffffff;
}

.testimoni-form .form-group input:focus,
.testimoni-form .form-group select:focus,
.testimoni-form .form-group textarea:focus {
    outline: none;
    border-color: #5E84C5;
    box-shadow: 0 0 0 3px rgba(94, 132, 197, 0.1);
}

.testimoni-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.testimoni-form .rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.testimoni-form .rating-input input {
    display: none;
}

.testimoni-form .rating-input label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    transition: color 0.3s;
}

.testimoni-form .rating-input label i {
    font-style: normal;
}

.testimoni-form .rating-input label i::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.testimoni-form .rating-input input:checked ~ label i::before,
.testimoni-form .rating-input label:hover i::before,
.testimoni-form .rating-input label:hover ~ label i::before {
    color: #ffc107;
    font-weight: 900;
}

.testimoni-form .btn-submit-testimoni {
    width: 100%;
    background: #5E84C5;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.testimoni-form .btn-submit-testimoni:hover {
    background: #3a5a8c;
    transform: translateY(-2px);
}

.testimoni-form .form-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

.testimoni-form .alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-form .alert-success i {
    font-size: 20px;
}

.testimoni-form .alert-success p {
    margin: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: #5E84C5;
    color: white;
    padding: 50px 0 20px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-logo {
    width: 120px;
}
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-contact i {
    min-width: 18px;
    margin-top: 3px;
}
.footer-contact a {
    color: white;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
    opacity: 0.9;
}
.footer-social p {
    margin-bottom: 15px;
    font-weight: 600;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    background: white;
    color: #5E84C5;
    transform: scale(1.1);
}
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 30px 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-menu a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    transition: opacity 0.3s;
}
.footer-menu a:hover {
    opacity: 0.8;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .proyek-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-content { grid-template-columns: 1fr; }
    .detail-hero img { height: 300px; }
    .hero-caption h1 { font-size: 24px; }
    .testimoni-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 30px; }
    .visi-misi-grid { grid-template-columns: 1fr; }
    .kontak-grid { grid-template-columns: 1fr; }
    .maps-wrapper { grid-template-columns: 1fr; }
    .rekomendasi-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .hero-wrapper,
    .dokumen-grid,
    .faq-wrapper{ grid-template-columns: 1fr; }
    .alur-grid{ grid-template-columns: repeat(2,1fr); }
    .dokumen-list-wrapper{ grid-template-columns: 1fr; }
    .calculator-grid { grid-template-columns: 1fr; gap: 30px; }
    .lokasi-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .lokasi-info { padding-right: 0; text-align: center; }
    .lokasi-item { justify-content: center; text-align: left; }
    .lokasi-grid { max-width: 400px; margin-left: auto; margin-right: auto; }
    .map-button { text-align: center; }
    .testimoni-grid-section .testimoni-grid {grid-template-columns: repeat(2, 1fr);}
    .stats-grid {grid-template-columns: repeat(2, 1fr); gap: 20px;}
}

@media (max-width: 768px) {
    .menu { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu.show { display: block; }
    
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 16px; }
    .hero-buttons { flex-direction: column; gap: 15px;}
    
    .btn-hero-primary,
    .btn-hero-secondary { text-align: center; }
    
    .about-content h2 { font-size: 28px; }
    .experience-card {
        position: static;
        margin-top: 20px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    
    .why-grid { grid-template-columns: 1fr;}

    .page-header { padding: 40px 0 30px; }
    .page-title { font-size: 32px; }
    .page-desc { font-size: 16px; }

    .proyek-grid { grid-template-columns: 1fr; }
    .proyek-header { flex-direction: column; align-items: flex-start; }
    .proyek-title { font-size: 28px;}

    .testimoni { padding: 60px 0; }
    .testimoni-grid { grid-template-columns: 1fr; gap:20px; }
    .section-title { font-size: 26px; }
    
    .filter-box { flex-direction: column; }
    .filter input,
    .filter select { width: 100%; }
    
    .footer-top { flex-direction: column; text-align: center; align-items: center; }
    .footer-contact p { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-menu { justify-content: center; }
    
    .spesifikasi-grid { grid-template-columns: 1fr; }
    .detail-hero img { height: 200px; }
    .hero-caption { padding: 15px; }
    .hero-caption h1 { font-size: 20px; }
    .detail-main { padding: 20px; }
    
    .tab-btn { padding: 10px 16px; font-size: 14px; }
    .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .denah-grid { grid-template-columns: 1fr; gap: 15px; }
    .denah-item { aspect-ratio: 16/9; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .visi-card,
    .misi-card { padding: 30px; }
    .visi-card h3,
    .misi-card h3 { font-size: 24px; }

    .kontak-info-card,
    .kontak-form-card { padding: 32px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .kontak-heading h2,
    .form-heading h2 { font-size: 28px; }
    .jam-item { font-size: 13px; }

    .rekomendasi-grid { grid-template-columns: 1fr; }
    .rekomendasi-wrapper { padding: 25px; margin: 0 20px; }
    .rekomendasi-header h2 { font-size: 26px; }
    .form-actions { flex-direction: column; }
    .hasil-header h3 { font-size: 24px; }

    .hero-left{ padding: 40px 30px; }
    .hero-left h1{ font-size: 36px; }
    .section-header-center h2{ font-size: 32px; }
    .alur-grid{ grid-template-columns: 1fr; }
    .faq-wrapper{ padding: 30px 20px; }
    .faq-left h2{ font-size: 30px; }

    .calculator-wrapper { padding: 25px; margin: 0 20px; }
    .calculator-header h2 { font-size: 26px; }
    .tenor-buttons { gap: 8px; }
    .tenor-btn { padding: 8px 14px; font-size: 12px; }
    .step { flex-direction: column; text-align: center; }
    .step-number { margin: 0 auto; }

    .team-card { max-width: 220px; }
    .team-image { width: 100px; height: 100px; }
    .team-card h3 {font-size: 16px; min-height: 42px; }
    .team-swiper .swiper-button-next,
    .team-swiper .swiper-button-prev { display: none; }
    .team-swiper .swiper-pagination-bullet { width: 10px; height: 10px; }

    .form-testimoni-wrapper { padding: 25px; margin: 0 20px; }
    .form-testimoni .form-header h2 {font-size: 26px;}
    .testimoni-form .form-row {grid-template-columns: 1fr;gap: 0;}
    .testimoni-form .rating-input {justify-content: center;}
    .testimoni-grid-section .testimoni-grid {grid-template-columns: 1fr; gap: 20px;}
    .filter-testimoni .filter-box {flex-direction: column; align-items: center; gap: 15px;}
    .filter-testimoni .filter-group {min-width: 100%; max-width: 350px;}
    .stat-card .stat-number {font-size: 32px;}
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .section-title { font-size: 24px; margin-bottom: 30px; }
    .detail-proyek-container { padding: 20px 0; }
    .breadcrumb { font-size: 12px; }
    .galeri-grid { grid-template-columns: 1fr; }
    .denah-overlay span { font-size: 12px; padding: 4px 10px; }
    .denah-caption p { font-size: 11px; }
    .kontak-info-card,
    .kontak-form-card { padding: 24px; }
    .contact-item { flex-direction: column; gap: 10px; }
    .jam-box { padding: 20px; }
    .result-value.highlight { font-size: 18px; }
    .lokasi-item { flex-direction: column; text-align: center; align-items: center; }
    .lokasi-detail { text-align: center; }
    .btn-map { width: 100%; justify-content: center; }
    .team-card { max-width: 190px; padding: 15px 12px; }
    .team-image { width: 80px; height: 80px; border-width: 2px; }
    .team-card h3 { font-size: 14px; min-height: 36px; }
    .team-card .position { font-size: 11px; padding: 3px 12px; }
    .team-swiper .swiper-pagination-bullet { width: 8px; height: 8px; }
    .form-testimoni-wrapper { padding: 20px; }
    .form-testimoni .form-header h2 { font-size: 22px; }
    .testimoni-stats { padding: 40px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-card .stat-number { font-size: 28px; }
    .stat-card .stat-label { font-size: 13px; }
}