:root {
    --coklat: #8B5E3C;
    --coklat-dark: #6B3F1F;
    --coklat-light: #A67B5B;
    --orange: #E67E22;
    --orange-light: #F39C12;
    --bg-warm: #FFF8F0;
    --text-dark: #2C1810;
    --text-muted: #6B5B4E;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(44,24,16,0.1);
    --radius: 12px;
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coklat-dark); }

img { max-width: 100%; height: auto; display: block; }

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.sp-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.sp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.sp-logo-icon {
    flex-shrink: 0;
    animation: sp-float 3s ease-in-out infinite;
}

.sp-logo-text {
    white-space: nowrap;
}

.sp-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.sp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.sp-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.sp-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sp-menu-toggle.active span:nth-child(2) { opacity: 0; }
.sp-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.sp-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.sp-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.sp-menu li a:hover,
.sp-menu li.current-menu-item a {
    background: var(--orange);
    color: var(--white);
}

.sp-menu li.menu-item-has-children {
    position: relative;
}

.sp-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
}

.sp-menu li.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* ========== HERO ========== */
.sp-hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.sp-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.7), rgba(107,63,31,0.5));
}

.sp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.sp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sp-hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS ========== */
.sp-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.sp-btn-primary {
    background: var(--orange);
    color: var(--white);
}

.sp-btn-primary:hover {
    background: var(--coklat-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}

.sp-btn-wa {
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.sp-btn-wa:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.sp-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.sp-btn-outline:hover {
    background: var(--white);
    color: var(--coklat-dark);
}

/* ========== SECTION ========== */
.sp-section {
    padding: 80px 0;
}

.sp-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.sp-section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.sp-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 12px auto 0;
    border-radius: 2px;
}

.sp-section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PAKET CARDS ========== */
.sp-paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.sp-paket-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sp-paket-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(44,24,16,0.15);
}

.sp-paket-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.sp-paket-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-paket-card-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.sp-paket-card-body {
    padding: 24px;
}

.sp-paket-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.sp-paket-card-body .sp-paket-durasi {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-paket-card-body .sp-paket-meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sp-paket-card-body .sp-paket-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-warm);
    padding: 3px 10px;
    border-radius: 50px;
}

.sp-paket-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-paket-card-actions {
    display: flex;
    gap: 10px;
}

.sp-paket-card-actions .sp-btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 16px;
}

/* ========== SINGLE PAKET ========== */
.sp-single-paket {
    padding: 40px 0;
}

.sp-paket-hero {
    height: 400px;
    border-radius: var(--radius);
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.sp-paket-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-paket-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(44,24,16,0.8));
    border-radius: var(--radius);
}

.sp-paket-hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
}

.sp-paket-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.sp-paket-hero-content .sp-paket-meta {
    display: flex;
    gap: 20px;
    font-size: 1rem;
}

.sp-paket-hero-content .sp-paket-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-paket-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sp-paket-lokasi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-warm);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.sp-booking-info {
    margin-bottom: 16px;
}

.sp-booking-info-row {
    padding: 10px 0;
    border-bottom: 1px solid #F0E8E0;
    font-size: 0.85rem;
}

.sp-booking-info-row span {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.sp-booking-info-row strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.sp-lokasi-points ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.sp-lokasi-points ul li {
    padding: 3px 0 3px 16px;
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
}

.sp-lokasi-points ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.sp-paket-description {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sp-paket-description h2 {
    color: var(--coklat-dark);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.sp-paket-description h2:not(:first-child) {
    margin-top: 32px;
}

.sp-paket-description ul {
    list-style: none;
    padding: 0;
}

.sp-paket-description ul li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.sp-paket-description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.sp-paket-description .sp-list-include li::before { background: #27AE60; }
.sp-paket-description .sp-list-exclude li::before { background: #E74C3C; }

/* ========== BOOKING SIDEBAR ========== */
.sp-booking-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sp-booking-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sp-booking-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--coklat-dark);
    text-align: center;
}

.sp-booking-price {
    text-align: center;
    margin-bottom: 24px;
}

.sp-booking-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.sp-booking-price .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sp-form-group {
    margin-bottom: 16px;
}

.sp-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8E0D8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-warm);
    font-family: inherit;
}

.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.sp-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ========== BLOG ========== */
.sp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.sp-blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sp-blog-card:hover {
    transform: translateY(-4px);
}

.sp-blog-card-image {
    height: 200px;
    overflow: hidden;
}

.sp-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.sp-blog-card-body {
    padding: 24px;
}

.sp-blog-card-body .sp-blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.sp-blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.sp-blog-card-body h3 a {
    color: var(--text-dark);
}

.sp-blog-card-body h3 a:hover {
    color: var(--orange);
}

.sp-blog-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== SINGLE POST ========== */
.sp-single-post {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin: 40px auto;
}

.sp-single-post .sp-post-thumbnail {
    border-radius: var(--radius);
    margin: -40px -40px 32px;
    width: calc(100% + 80px);
    max-height: 450px;
    object-fit: cover;
}

.sp-single-post h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.sp-single-post .sp-post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E0D8;
}

.sp-single-post .sp-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.sp-single-post .sp-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.sp-single-post .sp-post-content p:first-child::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--coklat-dark);
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 4px;
}

.sp-single-post .sp-post-content h2 { color: var(--coklat-dark); margin: 24px 0 12px; }
.sp-single-post .sp-post-content h3 { color: var(--coklat-dark); margin: 20px 0 10px; }
.sp-single-post .sp-post-content p { margin-bottom: 16px; }
.sp-single-post .sp-post-content ul, 
.sp-single-post .sp-post-content ol { margin: 0 0 16px 24px; }
.sp-single-post .sp-post-content blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--text-muted);
    font-style: italic;
}

/* ========== PAGE HEADER ========== */
.sp-page-header {
    background: linear-gradient(135deg, var(--coklat-dark), var(--coklat));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.sp-page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.sp-content-area {
    padding: 60px 0;
    max-width: 800px;
}

/* ========== FOOTER ========== */
.sp-footer {
    background: var(--coklat-dark);
    color: rgba(255,255,255,0.9);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.sp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.sp-footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.sp-footer h4 {
    color: var(--orange-light);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-footer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.sp-footer ul {
    list-style: none;
}

.sp-footer ul li {
    margin-bottom: 10px;
}

.sp-footer ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.sp-footer ul li a:hover {
    color: var(--orange-light);
}

.sp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ========== WA FLOATING BUTTON ========== */
.sp-wa-float {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-wa-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.sp-wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ========== KELEBIHAN SECTION ========== */
.sp-kelebihan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-kelebihan-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(139,94,60,0.08);
}

.sp-kelebihan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(44,24,16,0.12);
    border-color: var(--orange);
}

.sp-kelebihan-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sp-kelebihan-card h3 {
    font-size: 1rem;
    color: var(--coklat-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.sp-kelebihan-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== GALERI ========== */
.sp-galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sp-galeri-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.sp-galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sp-galeri-item:hover img {
    transform: scale(1.08);
}

.sp-galeri-item::after {
    content: '+';
    position: absolute;
    inset: 0;
    background: rgba(44,24,16,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    opacity: 0;
    transition: var(--transition);
}

.sp-galeri-item:hover::after {
    opacity: 1;
}

.sp-galeri-item:nth-child(1) { grid-row: span 2; grid-column: span 2; aspect-ratio: auto; }

/* Lightbox */
.sp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sp-lightbox.active {
    display: flex;
}

.sp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.sp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.sp-lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.sp-lightbox-prev { left: 20px; }
.sp-lightbox-next { right: 20px; }

.sp-lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
}

.sp-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.sp-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ========== TESTIMONI ========== */
.sp-testimoni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sp-testimoni-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(139,94,60,0.06);
    transition: var(--transition);
}

.sp-testimoni-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(44,24,16,0.1);
}

.sp-testimoni-stars {
    color: #F1C40F;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.sp-testimoni-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.sp-testimoni-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-testimoni-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.sp-testimoni-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sp-testimoni-author h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.sp-testimoni-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== WATERMARK ========== */
.sp-watermark {
    position: fixed;
    bottom: 90px;
    right: 24px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

/* ========== FAB GROUP (Back to Top + WA) ========== */
.sp-fab-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.sp-back-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coklat);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    border: none;
    cursor: pointer;
}

.sp-back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sp-back-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* ========== SHARE BUTTONS ========== */
.sp-share-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #E8E0D8;
}

.sp-share-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.sp-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    color: var(--white);
}

.sp-share-wa { background: #25D366; }
.sp-share-wa:hover { background: #128C7E; color: var(--white); }
.sp-share-fb { background: #1877F2; }
.sp-share-fb:hover { background: #0D65D9; color: var(--white); }
.sp-share-tw { background: #1DA1F2; }
.sp-share-tw:hover { background: #1991DB; color: var(--white); }
.sp-share-tele { background: #0088CC; }
.sp-share-tele:hover { background: #0077B5; color: var(--white); }
.sp-share-email { background: #6B5B4E; }
.sp-share-email:hover { background: #4A3F35; color: var(--white); }
.sp-share-copy { background: var(--coklat); }
.sp-share-copy:hover { background: var(--coklat-dark); color: var(--white); }
.sp-share-copy.copied { background: #27AE60; }

/* ========== TAGS ========== */
.sp-tags-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E8E0D8;
}

.sp-tags-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sp-tags-section a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-warm);
    border: 1px solid #E8E0D8;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.sp-tags-section a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* ========== AUTHOR BOX ========== */
.sp-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-warm);
    border-radius: var(--radius);
    border: 1px solid rgba(139,94,60,0.1);
}

.sp-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sp-author-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.sp-author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========== COMMENTS ========== */
.sp-comments {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #E8E0D8;
}

.sp-comments-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sp-comment-list {
    list-style: none;
    margin: 0 0 24px;
}

.sp-comment-list .comment-body {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(139,94,60,0.1);
}

.sp-comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sp-comment-list .comment-author img {
    border-radius: 50%;
}

.sp-comment-list .comment-metadata {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.sp-comment-list .comment-metadata a {
    color: var(--text-muted);
}

.sp-comment-list .comment-content {
    color: var(--text-muted);
    line-height: 1.7;
}

.sp-comment-list .reply {
    margin-top: 8px;
}

.sp-comment-list .reply a {
    font-size: 0.85rem;
    font-weight: 600;
}

.sp-comments-closed {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.comment-respond {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.comment-respond .comment-reply-title {
    font-size: 1.1rem;
    color: var(--coklat-dark);
    margin-bottom: 16px;
}

.comment-respond .comment-reply-title small a {
    font-size: 0.8rem;
}

.comment-respond label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8E0D8;
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg-warm);
    font-family: inherit;
    margin-bottom: 12px;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.comment-form .submit {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.comment-form .submit:hover {
    background: var(--coklat-dark);
    color: var(--white);
}

.comment-notes,
.comment-form-cookies-consent {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.comment-form-cookies-consent input {
    margin-right: 6px;
}

/* ========== RELATED ARTICLES ========== */
.sp-related-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sp-related-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.sp-related-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ========== PAGE LINKS ========== */
.sp-page-links {
    margin: 32px 0;
    text-align: center;
    font-size: 0.9rem;
}

.sp-page-links a,
.sp-page-links span {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 3px;
    border-radius: 6px;
    border: 1px solid #E8E0D8;
}

.sp-page-links a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

@keyframes sp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes sp-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
    background-size: 200% 100%;
    animation: sp-shimmer 3s ease-in-out infinite;
}

/* ========== REELS / SOCIAL SECTION ========== */
.sp-reels-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.sp-reels-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #E8E0D8;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.sp-reels-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.sp-reels-tab.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.sp-reels-content {
    display: none;
}

.sp-reels-content.active {
    display: block;
}

.sp-reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sp-reels-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.sp-reels-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sp-reels-item:hover img {
    transform: scale(1.05);
}

.sp-reels-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,24,16,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.sp-reels-item:hover .sp-reels-item-overlay {
    opacity: 1;
}

.sp-video-embed {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.sp-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ========== BREADCRUMBS ========== */
.rank-math-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
}

.rank-math-breadcrumb a {
    color: var(--orange);
}

.rank-math-breadcrumb .separator {
    color: var(--text-muted);
    margin: 0 6px;
}

.rank-math-breadcrumb .last {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== ANIMATIONS ========== */
.sp-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ABOUT PAGE ========== */
.sp-about-section {
    padding: 80px 0;
}

.sp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sp-about-image {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.sp-about-content h2 {
    color: var(--coklat-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.sp-about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ========== CONTACT PAGE ========== */
.sp-contact-section {
    padding: 80px 0;
}

.sp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.sp-contact-info h2 {
    color: var(--coklat-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.sp-contact-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sp-contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sp-contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.sp-contact-detail-text h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.sp-contact-detail-text p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ========== 404 ========== */
.sp-404 {
    text-align: center;
    padding: 120px 20px;
}

.sp-404 h1 {
    font-size: 6rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.sp-404 p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ========== PAGINATION ========== */
.sp-pagination {
    text-align: center;
    margin-top: 40px;
}

.sp-pagination a,
.sp-pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 500;
}

.sp-pagination a {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.sp-pagination a:hover {
    background: var(--orange);
    color: var(--white);
}

.sp-pagination span.current {
    background: var(--orange);
    color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .sp-menu-toggle {
        display: flex;
    }

    .sp-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .sp-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .sp-menu {
        flex-direction: column;
        gap: 4px;
    }

    .sp-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 16px;
        display: none;
    }

    .sp-menu li.menu-item-has-children.active .sub-menu {
        display: block;
    }

    .sp-hero {
        height: 70vh;
        min-height: 400px;
    }

    .sp-hero h1 {
        font-size: 1.8rem;
    }

    .sp-hero p {
        font-size: 1rem;
    }

    .sp-paket-grid,
    .sp-blog-grid {
        grid-template-columns: 1fr;
    }

    .sp-paket-details {
        grid-template-columns: 1fr;
    }

    .sp-booking-sidebar {
        position: static;
    }

    .sp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sp-about-grid,
    .sp-contact-grid {
        grid-template-columns: 1fr;
    }

    .sp-about-image {
        height: 250px;
    }

    .sp-paket-hero {
        height: 250px;
    }

    .sp-paket-hero-content {
        left: 16px;
        bottom: 16px;
    }

    .sp-paket-hero-content .sp-paket-meta {
        flex-direction: column;
        gap: 4px;
    }

    .sp-fab-group {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }

    .sp-back-top {
        width: 40px;
        height: 40px;
    }

    .sp-share-buttons {
        gap: 8px;
    }

    .sp-share-btn {
        font-size: 0; /* hide text, show icon only on mobile */
        padding: 10px;
    }

    .sp-share-btn svg {
        width: 18px;
        height: 18px;
    }

    .sp-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sp-section {
        padding: 48px 0;
    }

    .sp-page-header {
        padding: 40px 0;
    }

    .sp-kelebihan-grid {
        grid-template-columns: 1fr;
    }

    .sp-kelebihan-card {
        padding: 28px 24px;
    }

    .sp-galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sp-galeri-item:nth-child(1) {
        grid-row: span 1;
        grid-column: span 2;
    }

    .sp-testimoni-grid {
        grid-template-columns: 1fr;
    }

    .sp-reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-reels-tabs {
        flex-direction: column;
        align-items: center;
    }

    .sp-reels-tab {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

    .sp-testimoni-card {
        padding: 24px;
    }

    .sp-lightbox {
        padding: 16px;
    }

    .sp-lightbox-content {
        max-width: 100vw;
    }

    .sp-lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .sp-single-post {
        padding: 20px;
        margin: 20px 16px;
    }

    .sp-single-post .sp-post-thumbnail {
        margin: -20px -20px 20px;
        width: calc(100% + 40px);
    }

    .sp-single-post .sp-post-content p:first-child::first-letter {
        font-size: 2.5rem;
    }

}

@media (max-width: 480px) {
    .sp-container {
        padding: 0 16px;
    }

    .sp-hero h1 {
        font-size: 1.5rem;
    }

    .sp-paket-card-actions {
        flex-direction: column;
    }

    .sp-galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-share-btn {
        font-size: 0; /* hide text, show icon only */
        padding: 10px;
    }

    .sp-single-post {
        padding: 16px;
        margin: 16px 8px;
    }

    .sp-single-post .sp-post-thumbnail {
        margin: -16px -16px 16px;
        width: calc(100% + 32px);
    }

    .sp-kelebihan-icon {
        width: 56px;
        height: 56px;
    }
}

/* ========== PRINT ========== */
@media print {
    .sp-header,
    .sp-wa-float,
    .sp-back-top,
    .sp-watermark { display: none; }
}
