/* ========================================
   BATU SUNRISE CAMP - Main Stylesheet
   Premium Camping Website Design
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== CSS Variables ========== */
:root {
    --primary: #1a5632;
    --primary-light: #2d8a4e;
    --primary-dark: #0f3a20;
    --secondary: #c8922a;
    --secondary-light: #e5b45a;
    --accent: #f0a500;
    --dark: #1a1a2e;
    --dark-light: #2a2a3e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #1a5632 0%, #2d8a4e 100%);
    --gradient-gold: linear-gradient(135deg, #c8922a 0%, #e5b45a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 86, 50, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navbar ========== */
.navbar-custom {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-custom.scrolled {
    background: rgba(26, 26, 46, 0.98);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .navbar-brand img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.navbar-custom .navbar-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar-custom .navbar-brand span .highlight {
    color: var(--secondary-light);
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: transparent;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28229,180,90,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--secondary-light) !important;
    background: rgba(200, 146, 42, 0.1);
}

.navbar-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.navbar-custom .nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-xl) !important;
    margin-left: 8px;
}

.navbar-custom .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.4);
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.4);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 .text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-light);
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Buttons ========== */
.btn-primary-custom {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 146, 42, 0.4);
    color: var(--dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-light);
    color: var(--secondary-light);
    transform: translateY(-3px);
}

.btn-green {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 86, 50, 0.4);
    color: var(--white);
}

/* ========== Section Styles ========== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 86, 50, 0.08);
    border: 1px solid rgba(26, 86, 50, 0.15);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header h2 .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== About Section ========== */
.about-section {
    background: var(--gray-100);
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: var(--shadow-md);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(26, 86, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

/* ========== Package/Paket Section ========== */
.paket-section {
    background: var(--white);
}

.paket-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.paket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.paket-card .paket-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.paket-card .paket-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.paket-card:hover .paket-img img {
    transform: scale(1.1);
}

.paket-card .paket-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
}

.paket-card .paket-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.paket-card .paket-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.paket-card .paket-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex: 1;
}

.paket-card .paket-features {
    margin-bottom: 20px;
}

.paket-card .paket-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--gray-200);
}

.paket-card .paket-features li:last-child {
    border-bottom: none;
}

.paket-card .paket-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.paket-card .paket-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.paket-card .paket-price .price-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.paket-card .paket-price .price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.paket-card .paket-price .price-unit {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== Testimonial ========== */
.testimonial-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-section .section-header h2 {
    color: var(--white);
}

.testimonial-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-section .section-badge {
    background: rgba(200, 146, 42, 0.1);
    border-color: rgba(200, 146, 42, 0.2);
    color: var(--secondary-light);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 146, 42, 0.2);
}

.testimonial-card .stars {
    color: var(--secondary-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-card .quote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.testimonial-card .reviewer-info h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card .reviewer-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========== Gallery ========== */
.gallery-section {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    background: rgba(26, 26, 46, 0.4);
}

.gallery-item .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2rem;
    z-index: 2;
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ========== Blog Cards ========== */
.blog-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card .blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card .blog-meta i {
    margin-right: 4px;
}

.blog-card .blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card .blog-link:hover {
    color: var(--primary-light);
    gap: 10px;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-wa {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.cta-content .btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ========== Footer ========== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.footer-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links {
    padding-left: 0;
    margin: 0;
}

.footer-paket-col {
    padding-left: 60px;
}

@media (max-width: 991.98px) {
    .footer-paket-col {
        padding-left: 12px;
    }
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--secondary-light);
    padding-left: 6px;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.footer-contact {
    padding-left: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--secondary-light);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== WhatsApp Float ========== */
.wa-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9998;
    animation: pulse-wa 2s infinite;
}

.wa-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.wa-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ========== Scroll to Top ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.scroll-top a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========== Page Header (Inner Pages) ========== */
.page-header {
    background: var(--gradient-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.page-header .breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    position: relative;
}

.page-header .breadcrumb-custom a {
    color: var(--secondary-light);
    font-size: 0.95rem;
}

.page-header .breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ========== Blog Detail ========== */
.blog-detail-section {
    padding: 60px 0 100px;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-content .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-detail-content .article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-content .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
}

.blog-detail-content .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-detail-content .image-desc {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
}

/* TOC */
.toc-container {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.toc-header h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark);
}

.toc-header i {
    transition: var(--transition);
    color: var(--primary);
}

.toc-header.collapsed i {
    transform: rotate(180deg);
}

.toc-list {
    margin-top: 16px;
    padding-left: 0;
}

.toc-list li {
    padding: 6px 0;
}

.toc-list li a {
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list li a:hover {
    color: var(--primary-light);
}

.toc-list li a::before {
    content: '•';
    color: var(--secondary);
    font-weight: bold;
}

.toc-list li.toc-h3 {
    padding-left: 20px;
}

.toc-list li.toc-h3 a {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Article Content */
.article-body h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.article-body h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark-light);
}

.article-body p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text);
}

.article-body ul,
.article-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-body ul li,
.article-body ol li {
    list-style: disc;
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text);
}

.article-body ol li {
    list-style: decimal;
}

.article-body blockquote {
    border-left: 4px solid var(--secondary);
    background: rgba(200, 146, 42, 0.05);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text);
}

.article-body .read-also {
    background: rgba(26, 86, 50, 0.05);
    border: 1px solid rgba(26, 86, 50, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
}

.article-body .read-also h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.article-body .read-also a {
    color: var(--primary);
    font-weight: 600;
    display: block;
    padding: 4px 0;
}

.article-body .read-also a:hover {
    color: var(--primary-light);
}

.article-body .article-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 24px 0 8px;
    box-shadow: var(--shadow-sm);
}

.article-body .article-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.article-body .img-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.article-body .promo-banner {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: var(--shadow-md);
}

.article-body .promo-banner img {
    width: 100%;
    height: auto;
}

/* FAQ */
.faq-section-article {
    margin-top: 40px;
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(26, 86, 50, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.faq-answer.show {
    padding: 0 20px 16px;
    max-height: 500px;
}

/* Author Profile */
.author-profile {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--gray-200);
}

.author-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.author-info .author-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Share Buttons */
.share-section {
    margin: 32px 0;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
}

.share-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: var(--white);
}

.share-btn.wa {
    background: #25D366;
}

.share-btn.fb {
    background: #1877F2;
}

.share-btn.tw {
    background: #1DA1F2;
}

.share-btn.tg {
    background: #0088cc;
}

.share-btn.li {
    background: #0A66C2;
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
}

.related-articles h3 {
    font-size: 1.6rem;
    margin-bottom: 32px;
    text-align: center;
}

/* ========== Contact Section ========== */
.contact-section {
    background: var(--gray-100);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== Map ========== */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-custom .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-custom .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat .number {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .paket-card .paket-price .price-value {
        font-size: 1.4rem;
    }

    .about-img-wrapper img {
        height: 280px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer {
        padding: 60px 0 0;
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .blog-detail-content .main-image img {
        height: 250px;
    }

    .author-profile {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .wa-float {
        bottom: 80px;
        right: 16px;
    }

    .wa-float a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .scroll-top {
        bottom: 24px;
        right: 16px;
    }

    .scroll-top a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom,
    .btn-green {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .paket-card .paket-body {
        padding: 20px;
    }

    .blog-card .blog-body {
        padding: 20px;
    }
}

/* ========== Utility ========== */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.bg-dark-custom {
    background: var(--dark) !important;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

/* Prevent horizontal scroll */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Image lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100000;
}

/* ========== Paket Page Extended ========== */
.paket-detail-section .paket-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.paket-card.featured .featured-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 2;
}

/* ========== Why Choose Us ========== */
.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 86, 50, 0.15);
}

.why-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .icon-circle {
    background: var(--gradient-primary);
    color: var(--white);
}

.why-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== Counter Section ========== */
.counter-section {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-item .counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-light);
    display: block;
}

.counter-item .counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ========== Page Header ========== */
.page-header {
    background: var(--gradient-dark);
    padding: 140px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.breadcrumb-custom a {
    color: var(--secondary-light);
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--secondary);
}

/* ========== Contact Cards ========== */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 86, 50, 0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.contact-card h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ========== Map Section ========== */
.map-section iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ========== Blog Detail Section ========== */
.blog-detail-section {
    padding: 60px 0 100px;
}

.blog-detail-content {
    max-width: 850px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-meta span i {
    color: var(--primary);
    font-size: 1rem;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
}

/* TOC */
.toc-container {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}

.toc-header h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.toc-header i {
    color: var(--primary);
    transition: var(--transition);
}

.toc-list {
    padding: 0;
}

.toc-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-200);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list li a {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.toc-list li a:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.toc-list li a::before {
    content: '→';
    color: var(--secondary);
}

/* Article Body */
.article-body {
    margin-bottom: 60px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 48px 0 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--dark);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 8px;
}

.article-body ul li,
.article-body ol li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    list-style: none;
    position: relative;
    padding-left: 24px;
}

.article-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.article-body ol {
    counter-reset: article-counter;
}

.article-body ol li {
    counter-increment: article-counter;
}

.article-body ol li::before {
    content: counter(article-counter) '.';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.article-body blockquote {
    background: linear-gradient(135deg, rgba(26, 86, 50, 0.05) 0%, rgba(200, 146, 42, 0.05) 100%);
    border-left: 4px solid var(--secondary);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Read Also */
.read-also {
    background: rgba(26, 86, 50, 0.04);
    border: 1px solid rgba(26, 86, 50, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 32px 0;
}

.read-also h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.read-also a {
    display: block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: var(--transition);
}

.read-also a:hover {
    color: var(--primary-dark);
    transform: translateX(6px);
}

.read-also a::before {
    content: '📌 ';
}

/* Article Images */
.article-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 32px 0 8px;
    box-shadow: var(--shadow-md);
}

.article-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-bottom: 24px;
}

/* Promo Banner */
.promo-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.promo-banner:hover {
    transform: scale(1.01);
}

.promo-banner img {
    width: 100%;
    height: auto;
}

/* FAQ in Article */
.faq-section-article {
    margin: 24px 0 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26, 86, 50, 0.03);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* Author Profile */
.author-profile {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
}

.author-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.author-info .author-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Share Section */
.share-section {
    margin-bottom: 48px;
}

.share-section h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.share-btn.wa {
    background: #25D366;
}

.share-btn.wa:hover {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.share-btn.fb {
    background: #1877F2;
}

.share-btn.fb:hover {
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.share-btn.tw {
    background: #1DA1F2;
}

.share-btn.tw:hover {
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.share-btn.tg {
    background: #0088cc;
}

.share-btn.tg:hover {
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.share-btn.li {
    background: #0A66C2;
}

.share-btn.li:hover {
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

/* Related Articles */
.related-articles {
    padding-top: 48px;
    border-top: 2px solid var(--gray-200);
}

.related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--dark);
}

/* ========== About Page Extended ========== */
.about-page-section {
    background: var(--white);
}

.vision-card,
.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-card h4,
.mission-card h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-card p,
.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 86, 50, 0.15);
}

.advantage-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.advantage-card:hover .icon-circle {
    background: var(--gradient-primary);
    color: var(--white);
}

.advantage-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== Responsive Additions ========== */
@media (max-width: 991.98px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .main-image img {
        height: 280px;
    }

    .author-profile {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 120px 16px 40px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .blog-detail-section {
        padding: 40px 0 60px;
    }

    .article-meta {
        gap: 12px;
    }

    .main-image img {
        height: 220px;
    }

    .toc-container {
        padding: 16px;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }

    .article-body h3 {
        font-size: 1.15rem;
    }

    .article-body p {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .related-articles .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        padding: 24px 16px;
    }

    .contact-card i {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .article-body blockquote {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .breadcrumb-custom {
        font-size: 0.8rem;
        gap: 6px;
    }
}