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

:root {
    /* Premium Gold Palette - Upgraded */
    --gold-primary: #D4AF37;
    --gold-rich: #C9A84C;
    --gold-dark: #B8973D;
    --gold-light: #F4E4C1;
    --gold-bright: #FFD700;
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    /* Sophisticated Emerald-Green Palette - UPGRADED */
    --emerald-primary: #047857;
    --emerald-dark: #065F46;
    --emerald-darker: #064E3B;
    --emerald-light: #059669;
    --emerald-accent: #10B981;
    --emerald-muted: #064E3B;
    
    /* Legacy green (for compatibility) */
    --green-primary: #047857;
    --green-dark: #064E3B;
    --green-light: #059669;
    --green-accent: #10B981;
    --green-muted: #064E3B;
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    
    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    
    /* Gold Shadows */
    --shadow-gold-sm: 0 4px 16px rgba(212, 175, 55, 0.2);
    --shadow-gold-md: 0 8px 24px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 12px 32px rgba(212, 175, 55, 0.4);
    
    /* Emerald Shadows */
    --shadow-emerald-sm: 0 4px 16px rgba(4, 120, 87, 0.2);
    --shadow-emerald-md: 0 8px 24px rgba(4, 120, 87, 0.3);
    --shadow-emerald-lg: 0 12px 32px rgba(4, 120, 87, 0.4);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR - PREMIUM FLOATING DESIGN ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.95) 0%, rgba(4, 120, 87, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 32px;
    z-index: 1000;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 2px 4px rgba(212, 175, 55, 0.15);
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.4) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.navbar:hover {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.98) 0%, rgba(4, 120, 87, 0.98) 100%);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 4px 8px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Navbar solid untuk halaman blog dan post */
.navbar.navbar-solid {
    background: rgba(13, 77, 26, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
}

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

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

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.4));
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all var(--transition-base);
    position: relative;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-menu a:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.btn-wa-nav {
    background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-primary) 100%);
    color: var(--green-dark) !important;
    padding: 12px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-wa-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-wa-nav:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: var(--green-dark) !important;
}

.btn-wa-nav:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== BLOG SECTION - MODERN CARD DESIGN ===== */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-primary);
}

.blog-card:hover::before {
    opacity: 1;
}

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

.blog-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.blog-card:hover .blog-thumbnail::after {
    opacity: 1;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

.blog-content {
    padding: 32px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 700;
}

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

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.blog-date {
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 500;
}

.blog-read {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-read:hover {
    color: var(--gold-dark);
    gap: 8px;
}

.blog-cta {
    text-align: center;
    margin-top: 64px;
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--text-primary);
    padding: 16px 40px;
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* ===== HERO - CINEMATIC PREMIUM DESIGN ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../hero-truck.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.75;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
    pointer-events: none;
}

/* Mobile: Fix background attachment */
@media (max-width: 768px) {
    .hero::before {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.75) 0%,
        rgba(4, 120, 87, 0.65) 25%,
        rgba(16, 185, 129, 0.55) 50%,
        rgba(4, 120, 87, 0.65) 75%,
        rgba(6, 78, 59, 0.75) 100%
    );
    z-index: 2;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Animated gradient overlay - more subtle */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(4, 120, 87, 0.1) 40%,
        transparent 70%
    );
    z-index: 3;
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(4, 120, 87, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-rich));
    margin: 24px auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    margin-bottom: 48px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(4, 120, 87, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-primary) 100%);
    color: var(--emerald-darker);
    font-weight: 700;
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 2px solid transparent;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.btn-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

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

/* ===== WHY US - PREMIUM CARD DESIGN ===== */
.why-us {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

@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: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-rich), var(--gold-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-primary);
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-primary) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all var(--transition-slow);
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity var(--transition-base);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.why-card:hover .why-icon::before {
    opacity: 0.6;
}

.why-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

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

/* ===== SECTION TITLES - PREMIUM TYPOGRAPHY ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-rich), var(--gold-primary));
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.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: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.8));
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 64px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-label {
    text-align: center;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.about-text p:first-of-type {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

.about-images-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-images-grid img {
    transition: all 0.3s ease;
}

.about-images-grid img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important;
}

/* ===== SERVICES - PREMIUM GRADIENT CARDS WITH EMOJI ===== */
.services {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

/* ===== FEATURED SERVICES - STARMOVING STYLE ===== */
.services-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-featured-card {
    background: linear-gradient(135deg, var(--emerald-darker) 0%, var(--emerald-primary) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(4, 120, 87, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-featured-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.service-featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 78, 59, 0.3) 100%);
    pointer-events: none;
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-featured-card:hover .service-featured-image img {
    transform: scale(1.05);
}

.service-featured-content {
    padding: 24px;
    text-align: center;
}

.service-featured-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-featured-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-service-order {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-primary) 100%);
    color: var(--emerald-darker);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-service-order:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--emerald-darker);
}

/* Responsive untuk Featured Services */
@media (max-width: 768px) {
    .services-featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .service-featured-image {
        height: 200px;
    }
    
    .service-featured-content {
        padding: 20px;
    }
    
    .service-featured-content h3 {
        font-size: 18px;
    }
    
    .service-featured-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .btn-service-order {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.service-category {
    margin-bottom: 64px;
}

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

.category-title {
    font-size: clamp(24px, 5vw, 32px);
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

/* NEW DESIGN: Colored Gradient Cards with Emoji Icons */
.service-card {
    padding: 32px 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-align: center;
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Emoji Icon - Large and Visible */
.service-emoji {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Premium SVG Icon - Replaces Emoji */
.service-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-premium svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.service-card:hover .service-icon-premium {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon-premium svg {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.service-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Color Variants - Emerald & Gold Gradients */
.service-card.emerald {
    background: linear-gradient(135deg, 
        var(--emerald-primary) 0%, 
        var(--emerald-light) 100%);
}

.service-card.emerald-light {
    background: linear-gradient(135deg, 
        var(--emerald-light) 0%, 
        #10B981 100%);
}

.service-card.gold {
    background: linear-gradient(135deg, 
        var(--gold-rich) 0%, 
        var(--gold-primary) 100%);
}

.service-card.gold-dark {
    background: linear-gradient(135deg, 
        #B8860B 0%, 
        var(--gold-rich) 100%);
}

/* Hover Effects - Desktop Only */
@media (min-width: 1024px) {
    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
    
    .service-card:hover .service-emoji {
        transform: scale(1.1) rotate(5deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card:hover .service-number {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
    .services {
        padding: 100px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card {
        padding: 40px 28px;
    }
    
    .service-emoji {
        font-size: 64px;
        margin-bottom: 24px;
    }
    
    .service-icon-premium {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }
    
    .service-card h3 {
        font-size: 21px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .armada-icon-premium {
        width: 110px;
        height: 110px;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
    .services {
        padding: 120px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .service-card {
        padding: 48px 32px;
    }
    
    .service-emoji {
        font-size: 72px;
        margin-bottom: 28px;
    }
    
    .service-icon-premium {
        width: 80px;
        height: 80px;
        margin-bottom: 28px;
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .service-card p {
        font-size: 16px;
    }
    
    .service-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .armada-icon-premium {
        width: 120px;
        height: 120px;
    }
}
    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 - MODERN STEP DESIGN ===== */
.how-to-order {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        var(--emerald-darker) 0%, 
        var(--emerald-primary) 50%, 
        var(--emerald-darker) 100%);
    position: relative;
    overflow: hidden;
}

.how-to-order::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.how-to-order::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.how-to-order .container {
    position: relative;
    z-index: 2;
}

.how-to-order .section-title,
.how-to-order .section-subtitle,
.how-to-order .section-label {
    color: var(--white);
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.steps-simple::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 20%, 
        rgba(212, 175, 55, 0.5) 80%, 
        transparent 100%);
    z-index: 0;
}

.step-simple {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all var(--transition-slow);
    position: relative;
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    transition: opacity var(--transition-base);
}

.step-simple:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.step-simple:hover .step-icon-wrapper::before {
    opacity: 0.6;
}

.step-icon {
    width: 56px;
    height: 56px;
    color: var(--gold-primary);
    transition: all var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.step-simple:hover .step-icon {
    color: var(--gold-light);
    transform: scale(1.1);
}

.step-simple h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .steps-simple {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-simple::before {
        display: none;
    }
}

/* ===== COVERAGE - PREMIUM MAP LAYOUT ===== */
.coverage {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-top: 64px;
    align-items: start;
}

.coverage-map {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    border: 2px solid var(--gray-200);
}

.coverage-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.coverage-map iframe {
    border-radius: 32px;
}

.coverage-cities {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coverage-region {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.coverage-region:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.coverage-region h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
}

.coverage-region h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-rich);
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cities-list span {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    cursor: pointer;
}

.cities-list span:hover {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.coverage-note {
    margin-top: 32px;
    font-style: italic;
    color: var(--text-tertiary);
    text-align: center;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .coverage-map img {
        height: 400px;
    }
}

/* ===== 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 - MODERN CARD DESIGN ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
    position: relative;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 32px;
    font-size: 120px;
    color: var(--gold-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-rich), var(--gold-primary));
    transition: height var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-primary);
}

.testimonial-card:hover::after {
    height: 100%;
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 700;
}

.author-info p {
    color: var(--text-tertiary);
    font-size: 14px;
}

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

/* ===== FAQ - MODERN ACCORDION DESIGN ===== */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
}

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

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--gold-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all var(--transition-base);
    gap: 24px;
}

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

.faq-question h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all var(--transition-base);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 32px 32px 32px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    background: var(--white);
    font-size: 15px;
}

/* ===== ARMADA SLIDER - 3D DEPTH EFFECT (STARMOVING STYLE) ===== */
.armada {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.armada-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 80px;
}

.armada-slider-container {
    overflow: hidden;
    perspective: 1200px;
    width: 100%;
}

.armada-slider-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: grab;
}

.armada-slider-track:active {
    cursor: grabbing;
}

.armada-slide-item {
    flex-shrink: 0;
    width: 330px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Remove all side/center distinctions - all cards are equal */
.armada-slide-item.side,
.armada-slide-item.center {
    width: 330px;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    filter: brightness(1);
}

.armada-slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Navigation Arrows */
.armada-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gray-300);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

.armada-arrow:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-50%);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.armada-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--emerald-primary);
}

.armada-arrow:hover svg {
    color: var(--white);
}

.armada-prev {
    left: 20px;
}

.armada-next {
    right: 20px;
}

/* Dots Indicator - Pill Shape for Active */
.armada-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
}

.armada-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-400);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.armada-dot:hover {
    background: var(--gold-rich);
}

/* Active dot - pill/elongated shape with gold color */
.armada-dot.active {
    background: var(--gold-primary);
    width: 36px;
    height: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .armada-slider-wrapper {
        padding: 0 70px;
    }
    
    .armada-slide-item {
        width: 300px;
    }
    
    .armada-arrow {
        width: 50px;
        height: 50px;
    }
    
    .armada-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .armada {
        padding: 60px 0;
    }
    
    .armada-slider-wrapper {
        padding: 0 50px;
        max-width: 100%;
    }
    
    .armada-slider-container {
        max-width: 100%;
        overflow: hidden;
        width: 100%;
    }
    
    .armada-slider-track {
        gap: 0;
    }
    
    .armada-slide-item {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
    
    .armada-arrow {
        width: 40px;
        height: 40px;
        border-width: 1px;
    }
    
    .armada-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .armada-prev {
        left: 5px;
    }
    
    .armada-next {
        right: 5px;
    }
    
    .armada-dots {
        margin-top: 32px;
        gap: 8px;
    }
    
    .armada-dot {
        width: 8px;
        height: 8px;
    }
    
    .armada-dot.active {
        width: 28px;
        height: 8px;
    }
}

/* ===== CTA BANNER - PREMIUM CALL TO ACTION ===== */
.cta-banner {
    padding: 100px 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, 
        var(--emerald-darker) 0%, 
        var(--emerald-primary) 50%, 
        var(--emerald-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../hero-truck.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-primary) 50%, 
        transparent 100%);
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.cta-banner-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-cta-banner:hover::before {
    opacity: 1;
}

.btn-cta-banner.primary {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    color: var(--green-dark);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 2px solid transparent;
}

.btn-cta-banner.primary:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-cta-banner.secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cta-banner.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 80px 0;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-banner {
        width: 100%;
        max-width: 320px;
    }
}

.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 - PREMIUM DESIGN ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        var(--emerald-darker) 0%, 
        var(--emerald-primary) 50%, 
        var(--emerald-darker) 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../imageTHIQLOG.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-primary) 50%, 
        transparent 100%);
    z-index: 2;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-map-section {
    position: relative;
}

.footer-map-section iframe {
    border-radius: 24px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-info {
    padding: 0;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 32px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-info h3 {
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-address {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.footer-contact-item h4 {
    font-size: 16px;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.footer-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    color: var(--green-dark);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 16px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.footer-maps-link:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-map-section iframe {
        height: 300px;
    }
}
    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 - PREMIUM DESIGN ===== */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    border: 3px solid var(--white);
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 
            0 8px 32px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(37, 211, 102, 0.4),
            0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-wa:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 
        0 16px 48px rgba(37, 211, 102, 0.6),
        0 0 0 0 rgba(37, 211, 102, 0);
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    animation: none;
}

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

.wa-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wa-text {
    display: none;
}

/* ===== RESPONSIVE - MOBILE FIRST FIX ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 20px;
        z-index: 1001;
    }
    
    .logo-img {
        height: 70px;
    }
    
    /* Mobile Menu - Clean & Elegant */
    .nav-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 100px;
        width: auto;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(6, 78, 59, 0.98) 0%, rgba(4, 120, 87, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: center;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(212, 175, 55, 0.3) inset;
        padding: 16px 0;
        border-radius: 24px;
        border: 2px solid rgba(212, 175, 55, 0.4);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        color: rgba(255, 255, 255, 0.95) !important;
        padding: 16px 24px;
        width: 100%;
        border-radius: 0;
        font-size: 16px;
        font-weight: 600;
        display: block;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        text-decoration: none;
    }
    
    .nav-menu a:hover {
        color: var(--gold-primary) !important;
        background: rgba(212, 175, 55, 0.15);
    }
    
    /* WhatsApp Button in Menu */
    .btn-wa-nav {
        margin: 12px 16px 8px 16px !important;
        width: calc(100% - 32px) !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
        border-radius: 14px !important;
        box-shadow: 
            0 6px 20px rgba(212, 175, 55, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
        display: block !important;
        text-align: center !important;
    }
    
    .btn-wa-nav:hover {
        transform: translateY(-2px) !important;
        box-shadow: 
            0 10px 28px rgba(212, 175, 55, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
    }
    
    /* Hero Section Mobile - Clickable Buttons */
    .hero {
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 60px;
        position: relative;
    }
    
    .hero::before,
    .hero::after,
    .hero-overlay {
        pointer-events: none !important;
    }
    
    .hero-content {
        text-align: center;
        position: relative;
        z-index: 100;
        pointer-events: auto;
    }
    
    .hero-title {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(15px, 4vw, 17px);
        margin-bottom: 32px;
        line-height: 1.5;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        position: relative;
        z-index: 100;
        pointer-events: auto;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 100%;
        padding: 16px 32px;
        font-size: 15px;
        position: relative;
        z-index: 100;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation;
    }
    
    /* Sections Mobile */
    .why-us,
    .about,
    .services,
    .armada {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(26px, 7vw, 30px);
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
        line-height: 1.6;
    }
    
    /* Grids Mobile */
    .about-grid,
    .coverage-grid,
    .services-grid,
    .steps,
    .blog-grid,
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* WhatsApp Float Button */
    .float-wa {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }
    
    .wa-icon-img {
        width: 34px;
        height: 34px;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 28px 20px;
    }
    
    .service-emoji {
        font-size: 52px;
        margin-bottom: 16px;
    }
    
    .service-icon-premium {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    /* Armada Icon Mobile */
    .armada-icon-premium {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 10px 16px;
        top: 8px;
        width: calc(100% - 16px);
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-menu {
        left: 8px;
        right: 8px;
        top: 100px;
        padding: 12px 0;
        border-radius: 20px;
    }
    
    .nav-menu a {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-wa-nav {
        margin: 10px 12px 6px 12px !important;
        width: calc(100% - 24px) !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .service-emoji {
        font-size: 48px;
    }
    
    .service-icon-premium {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .service-card h3 {
        font-size: 17px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .armada-icon-premium {
        width: 90px;
        height: 90px;
    }
}
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .why-card,
    .service-card {
        padding: 32px 24px;
    }

}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* Premium scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-rich), var(--gold-primary));
    border-radius: 6px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
}

/* Selection color */
::selection {
    background: var(--gold-primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold-primary);
    color: var(--white);
}

/* ===== 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;
}

/* ===== MODERN ADMIN DASHBOARD ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--emerald-darker) 0%, var(--emerald-dark) 100%);
    color: white;
    padding: 0;
    box-shadow: var(--shadow-emerald-lg);
    position: relative;
    overflow: hidden;
}

.admin-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
}

.admin-sidebar-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.admin-logo {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.admin-sidebar-header p {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-sidebar nav {
    padding: 1.5rem 1rem;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all var(--transition-base);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.admin-sidebar nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.admin-sidebar nav a:hover::before {
    transform: scaleY(1);
}

.admin-sidebar nav a.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    color: var(--emerald-darker);
    font-weight: 600;
    box-shadow: var(--shadow-gold-sm);
}

.admin-sidebar nav a.active::before {
    display: none;
}

.admin-content {
    flex: 1;
    padding: 2.5rem;
    background: transparent;
    overflow-y: auto;
}

.admin-topbar {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar-welcome h1 {
    font-size: 1.75rem;
    color: var(--emerald-darker);
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.admin-topbar-welcome p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.admin-topbar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-emerald-sm);
}

.admin-topbar-user::before {
    content: '👤';
    font-size: 1.25rem;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card h3 {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card-icon {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.1;
}

.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
}

.quick-actions h2 {
    margin-bottom: 1.5rem;
    color: var(--emerald-darker);
    font-size: 1.25rem;
    font-weight: 700;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-actions .btn {
    margin: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.admin-table {
    width: 100%;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.admin-table thead {
    background: linear-gradient(135deg, var(--emerald-darker), var(--emerald-dark));
    color: white;
}

.admin-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table tbody tr {
    transition: all var(--transition-fast);
}

.admin-table tbody tr:hover {
    background: var(--gray-50);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

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

.status-published::before {
    background: #28a745;
}

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

.status-draft::before {
    background: #ffc107;
}

/* 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;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.admin-header h1 {
    margin: 0;
    color: var(--emerald-darker);
    font-size: 1.75rem;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-xs);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-success {
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-accent));
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    margin-right: 0.5rem;
    box-shadow: var(--shadow-xs);
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-edit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    color: var(--emerald-darker);
}

.btn-edit:hover {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
}

.btn-delete {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
}

.error-message {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #dc3545;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
}

.form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    border: 1px solid var(--gray-200);
}

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

.form-container label {
    display: block;
    margin-bottom: 0.625rem;
    color: var(--emerald-darker);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-container input[type="text"],
.form-container textarea,
.form-container select,
.form-container input[type="file"] {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-base);
    background: var(--gray-50);
}

.form-container textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-container small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

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

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

.recent-posts h2 {
    margin-bottom: 1rem;
    color: var(--emerald-darker);
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        padding: 0;
    }
    
    .admin-sidebar-header {
        padding: 1.5rem 1rem;
    }
    
    .admin-logo {
        width: 80px;
    }
    
    .admin-sidebar nav {
        padding: 1rem;
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .admin-sidebar nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .admin-content {
        padding: 1.5rem;
    }
    
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .admin-topbar-welcome h1 {
        font-size: 1.5rem;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .admin-table {
        font-size: 0.8125rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.875rem 1rem;
    }
    
    .btn-small {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
        text-align: center;
    }
}


/* ===== BLOG PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--emerald-darker) 0%, var(--emerald-dark) 50%, var(--emerald-primary) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    padding-top: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 60%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: var(--gold-light);
}

.blog-page-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    min-height: 50vh;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    color: var(--emerald-darker);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-gold-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

/* ===== POST DETAIL STYLES ===== */
.breadcrumb {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 1.5rem 0;
    padding-top: 90px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--emerald-primary);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 500;
}

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

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

.post-detail-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    min-height: 60vh;
}

.post-detail {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.post-title {
    font-size: 2.5rem;
    color: var(--emerald-darker);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.post-meta-info span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.post-content {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--emerald-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

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

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

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

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

.post-actions .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}
    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: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.not-found {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.not-found h1 {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.not-found h2 {
    font-size: 2rem;
    color: var(--emerald-darker);
    margin-bottom: 1rem;
    font-weight: 700;
}

.not-found p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    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;
    }
}


/* ===== MODERN LOGIN PAGE ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-darker) 0%, var(--emerald-dark) 50%, var(--emerald-primary) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
    border-radius: 24px 24px 0 0;
}

.login-box h2 {
    text-align: center;
    color: var(--emerald-darker);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.login-box > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

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

.login-box label {
    display: block;
    margin-bottom: 0.625rem;
    color: var(--emerald-darker);
    font-weight: 600;
    font-size: 0.9375rem;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-base);
    background: var(--gray-50);
}

.login-box input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.login-box .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-emerald-sm);
}

.login-box .btn:hover {
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-accent));
    transform: translateY(-2px);
    box-shadow: var(--shadow-emerald-md);
}

.login-box .error-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
    font-size: 0.9375rem;
    font-weight: 500;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.back-link:hover {
    color: var(--emerald-primary);
}

@media (max-width: 480px) {
    .login-box {
        padding: 2rem 1.5rem;
    }
    
    .login-box h2 {
        font-size: 1.75rem;
    }
}
