/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8973D;
    --gold-light: #F4E4C1;
    --green-dark: #1B5E20;
    --green-light: #2E7D32;
    --green-accent: #4CAF50;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0D4D1A 0%, #1B5E20 50%, #0D4D1A 100%);
    padding: 0.7rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Navbar solid untuk halaman blog dan post */
.navbar.navbar-solid {
    background: linear-gradient(135deg, #0D4D1A 0%, #1B5E20 50%, #0D4D1A 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.7rem 0;
}

.navbar.navbar-solid .nav-menu a {
    color: var(--white);
}

.navbar.navbar-solid .nav-menu a:hover {
    color: #C9A84C;
}

.navbar.navbar-solid .hamburger span {
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 95px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.95;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #C9A84C;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A84C;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-wa-nav {
    background: #C9A84C;
    color: var(--green-dark) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
}

.btn-wa-nav::after {
    display: none;
}

.btn-wa-nav:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 168, 76, 0.5);
    color: var(--green-dark) !important;
}
}

.navbar.scrolled .btn-wa-nav:hover {
    background: var(--gold-light);
    color: var(--green-dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.blog-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--gray-light);
    position: relative;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gold);
    color: var(--white);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
}

.blog-content h3 a:hover {
    color: var(--gold);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 2px solid var(--gray-medium);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-read {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-read:hover {
    color: var(--green-dark);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--green-dark);
    padding: 1.2rem 3rem;
    border: 2px solid var(--green-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 27, 15, 0.85) 0%, rgba(27, 94, 32, 0.75) 50%, rgba(13, 27, 15, 0.9) 100%);
    background-image: linear-gradient(135deg, rgba(13, 27, 15, 0.85) 0%, rgba(27, 94, 32, 0.75) 50%, rgba(13, 27, 15, 0.9) 100%), 
                      url('../hero-truck.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--gold);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-cta-primary {
    background: #C9A84C;
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-cta-primary:hover {
    background: var(--gold-light);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-cta-secondary:hover {
    background: var(--gold);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6);
}

/* ===== WHY US ===== */
.why-us {
    padding: 5rem 0;
    background: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gold);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--green-dark);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid var(--gray-medium);
    position: relative;
    box-shadow: none;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: #0066CC;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.why-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about {
    padding: 5rem 0;
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gold);
    border-radius: 3px;
}

.section-title.center {
    text-align: center;
    display: block;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.white {
    color: var(--white);
}

.section-title.white::after {
    background: var(--white);
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-highlight {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    position: relative;
}

.about-highlight h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--green-dark);
    font-weight: 700;
}

.about-highlight ul {
    list-style: none;
}

.about-highlight li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.about-highlight li::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--green-accent);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.about-highlight li:last-child {
    border-bottom: none;
}

/* ===== SERVICES ===== */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.section-subtitle.white {
    color: rgba(255,255,255,0.95);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== HOW TO ORDER ===== */
.how-to-order {
    padding: 5rem 0;
    background: var(--white);
    color: var(--text-dark);
}

.section-label {
    text-align: center;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-simple {
    text-align: center;
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 3px dashed #0066CC;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.step-simple:hover .step-icon-wrapper {
    transform: scale(1.05);
    border-color: var(--gold);
}

.step-icon {
    width: 60px;
    height: 60px;
    color: #0066CC;
    transition: color 0.3s ease;
}

.step-simple:hover .step-icon {
    color: var(--gold);
}

.step-simple h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ===== COVERAGE ===== */
.coverage {
    padding: 5rem 0;
    background: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.coverage-map iframe {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.coverage-region {
    margin-bottom: 2.5rem;
}

.coverage-region h3 {
    color: var(--green-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    font-weight: 700;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cities-list span {
    background: var(--white);
    color: var(--green-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.cities-list span:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.coverage-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

/* ===== PRICING ===== */
.pricing {
    padding: 5rem 0;
    background: var(--gray-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.pricing-header {
    background: var(--green-dark);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.pricing-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-body {
    padding: 2.5rem 2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-medium);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 0 2rem 2.5rem;
}

.btn-pricing {
    display: block;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-pricing:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-medium);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--green-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 5rem 0;
    background: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    color: var(--green-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--green-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
    background: var(--white);
}

/* ===== ARMADA ===== */
.armada {
    padding: 5rem 0;
    background: var(--white);
}

.armada-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.armada-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.armada-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.armada-image {
    height: 250px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.armada-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.armada-card:hover .armada-image img {
    transform: scale(1.1);
}

.armada-placeholder {
    font-size: 5rem;
    filter: grayscale(0.3);
}

.armada-info {
    padding: 2rem;
}

.armada-info h3 {
    color: var(--green-dark);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.armada-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.spec-item {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.armada-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .armada-grid {
        grid-template-columns: 1fr;
    }
}

.coverage-note {
    margin-top: 2rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 5rem 0;
    margin-bottom: 5rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(20, 80, 24, 0.98) 100%);
    background-image: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(20, 80, 24, 0.98) 100%),
        url('../hero-truck.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-banner-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-banner {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-banner.primary {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.btn-cta-banner.primary:hover {
    background: var(--gold-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.7);
}

.btn-cta-banner.secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-cta-banner.secondary:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 4rem 0;
    }
    
    .cta-banner-content h2 {
        font-size: 2rem;
    }
    
    .cta-banner-content p {
        font-size: 1.1rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-banner {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 3rem 0;
    }
    
    .cta-banner-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-banner-content p {
        font-size: 1rem;
    }
    
    .btn-cta-banner {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 5px solid var(--gold);
    background-image: url('../imageTHIQLOG.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.92);
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-map-section iframe {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.footer-info {
    padding: 1rem 0;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 2rem;
    display: block;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.footer-contact-item {
    margin-bottom: 1.5rem;
}

.footer-contact-item h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-maps-link {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-maps-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    color: rgba(255,255,255,0.7);
}

/* ===== FLOAT WHATSAPP BUTTON ===== */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.float-wa:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    background: #20BA5A;
}

.wa-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

.wa-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.wa-text {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--green-dark);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
    }
    
    .nav-menu a {
        color: var(--white) !important;
        padding: 1rem 0;
    }
    
    .nav-menu a:hover {
        color: var(--gold) !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .float-wa {
        padding: 0.8rem 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .wa-text {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll padding for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* ===== ADMIN STYLES (untuk halaman admin) ===== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--black) 100%);
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.login-box p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background: #b89640;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--green-dark);
    color: white;
    padding: 2rem 1rem;
}

.admin-sidebar h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gold);
}

.admin-sidebar nav a {
    display: block;
    padding: 0.8rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: background 0.3s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: var(--green-light);
}

.admin-content {
    flex: 1;
    padding: 2rem;
    background: var(--gray-light);
}

.admin-content h1 {
    margin-bottom: 2rem;
    color: var(--green-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-card h3 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
}

.quick-actions {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-actions h2 {
    margin-bottom: 1rem;
    color: var(--green-dark);
}

.quick-actions .btn {
    margin-right: 1rem;
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-table thead {
    background: var(--green-dark);
    color: white;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
}

.admin-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.admin-table tbody tr:hover {
    background: #e9ecef;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-published {
    background: #d4edda;
    color: #155724;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

/* Blog list page */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
}

.blog-item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
}

/* Post detail page */
.post-detail {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-detail h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.post-meta {
    display: block;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.post-content {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

header {
    background: var(--green-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

header h1 a {
    color: var(--gold);
    text-decoration: none;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding: 2rem 0;
}



/* ===== ADMIN ADDITIONAL STYLES ===== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    margin: 0;
}

.btn-block {
    width: 100%;
}

.btn-success {
    background: var(--green-dark);
    color: var(--white);
}

.btn-success:hover {
    background: var(--green-light);
}

.btn-small {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-right: 0.3rem;
}

.btn-edit {
    background: var(--gold);
    color: var(--black);
}

.btn-edit:hover {
    background: #b89640;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 900px;
}

.form-container .form-group {
    margin-bottom: 1.5rem;
}

.form-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-container input[type="text"],
.form-container textarea,
.form-container select,
.form-container input[type="file"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-container textarea {
    resize: vertical;
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-container small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-medium);
}

.recent-posts {
    margin-top: 2rem;
}

.recent-posts h2 {
    margin-bottom: 1rem;
    color: var(--green-dark);
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        padding: 1rem;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .btn-small {
        display: block;
        margin-bottom: 0.3rem;
    }
}


/* ===== BLOG PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, #C9A84C 0%, #B8973D 30%, #1B5E20 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    padding-top: 120px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-page-content {
    padding: 4rem 0;
    background: var(--gray-light);
    min-height: 50vh;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-posts p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===== POST DETAIL STYLES ===== */
.breadcrumb {
    background: var(--gray-light);
    padding: 1.5rem 0;
    padding-top: 90px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--text-light);
}

.post-detail-section {
    padding: 3rem 0;
    background: var(--gray-light);
    min-height: 60vh;
}

.post-detail {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.post-title {
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-medium);
}

.post-meta-info span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-category {
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.7rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-medium);
}

/* ===== 404 NOT FOUND ===== */
.not-found-section {
    padding: 4rem 0;
    background: var(--gray-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.not-found {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.not-found h1 {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.not-found h2 {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.not-found p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE BLOG & POST ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .post-detail {
        padding: 2rem 1.5rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-actions {
        flex-direction: column;
    }
    
    .not-found h1 {
        font-size: 4rem;
    }
    
    .not-found h2 {
        font-size: 1.5rem;
    }
    
    .not-found-actions {
        flex-direction: column;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
}
