/*
Theme Name: Oscar Network
Theme URI: https://oscarnetwork.id
Author: Antigravity
Description: A modern landing page theme for Oscar Network.
Version: 1.0
Text Domain: oscar-network
*/
/* Base Styles & Variables */
:root {
    --primary-color: #0b1528; /* Dark blue background */
    --secondary-color: #0095ff; /* Blue for buttons & highlights */
    --accent-color: #0056b3; /* Darker blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #8892b0;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --border-color: #e8eaed;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-title h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-title p {
    color: #666;
    font-size: 0.95rem;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left h2 {
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.section-white {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background-color: #007acc;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #00c6ff;
    color: var(--text-light);
    border: none;
}

.btn-secondary:hover {
    background-color: #009ce6;
    transform: translateY(-1px);
}

/* Header Navigation */
.navbar {
    background-color: rgba(11, 21, 40, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--text-light);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links > a, .nav-dropdown > a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links > a::after, .nav-dropdown > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links > a:hover, .nav-dropdown:hover > a, .nav-links > a.active {
    color: var(--secondary-color);
}

.nav-links > a:hover::after, .nav-dropdown:hover > a::after, .nav-links > a.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--bg-white);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.dropdown-menu a:hover {
    color: var(--secondary-color);
    background-color: rgba(0, 149, 255, 0.05);
}

.nav-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: #007acc;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 170px 0 80px;
    color: var(--text-light);
    background-color: #060b14;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero_background.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.35;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 58%;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero-content > p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
}

.hero-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-benefits li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
}

.hero-benefits i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.hero-note {
    font-size: 0.82rem;
    margin-top: 12px;
    color: rgba(255,255,255,0.45);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(90deg, #0b1528 0%, #142240 50%, #0b1528 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 3px solid var(--secondary-color);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.stat-item i {
    font-size: 2.2rem;
    color: #4db8ff;
    opacity: 0.7;
}

.stat-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-text p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

/* ===================== */
/* Products Section - CLEAN IMAGE TREATMENT */
/* ===================== */
.products-section .section-title {
    margin-bottom: 35px;
}

.products-section .section-title h2 {
    position: relative;
    display: inline-block;
}

.products-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.products-row-5 {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 15px;
}

.products-row-6 {
    grid-template-columns: repeat(6, 1fr);
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px 12px 14px;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 149, 255, 0.08);
}

/* KEY FIX: mix-blend-mode to remove white/grey backgrounds from product images */
.product-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    mix-blend-mode: multiply;
    filter: contrast(1.02) brightness(1.02);
    transition: var(--transition);
}

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

.product-card p {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.product-card p span {
    font-weight: 400;
    font-size: 0.72rem;
    color: #888;
    display: block;
    margin-top: 2px;
}



/* ===================== */
/* Services Section */
/* ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0, 149, 255, 0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e6f4ff 0%, #d4eeff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.service-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

/* ===================== */
/* Features Section */
/* ===================== */
.features-section .section-title h2 {
    position: relative;
    display: inline-block;
}

.features-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 149, 255, 0.05);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #e6f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--secondary-color);
    color: #ffffff;
}

.feature-card h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

/* ===================== */
/* Process Section */
/* ===================== */
.process-section .section-title h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 35px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
}

.step-icon {
    width: 75px;
    height: 75px;
    background-color: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    position: relative;
    transition: var(--transition);
}

.step-icon:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.step-num {
    position: absolute;
    bottom: -10px;
    background-color: var(--text-light);
    color: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

.process-arrow {
    color: rgba(255,255,255,0.15);
    margin-top: 28px;
}

/* ===================== */
/* Clients Section */
/* ===================== */
.clients-section .section-title h2 {
    position: relative;
    display: inline-block;
}

.clients-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 15px;
    text-align: center;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 80px;
    max-width: 1050px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
}

.media-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: var(--transition);
}

.media-logo-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    transition: var(--transition);
}

.media-logo-card img:hover {
    transform: scale(1.06);
}

/* Responsive media grid */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }
    .media-logo-card img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .media-grid {
        gap: 20px 25px;
    }
    .media-logo-card img {
        max-height: 38px;
    }
}

/* ===================== */
/* Testimonials */
/* ===================== */
.testimonials-section .section-title h2 {
    position: relative;
    display: inline-block;
}

.testimonials-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0, 149, 255, 0.06);
}

.quote-icon {
    color: #cccccc;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1;
}

.quote {
    font-style: normal;
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.92rem;
    line-height: 1.6;
}

.testimonial-divider {
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar: clean circle, use mix-blend-mode to remove any white bg artifacts */
.author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e8eaed;
}

.author-info h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.author-info p {
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.3;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 24px;
    border-radius: 4px;
}

/* ===================== */
/* CTA Section */
/* ===================== */
.cta-section {
    background: linear-gradient(135deg, #0a192f 0%, #0056b3 50%, #0095ff 100%);
    padding: 40px 0;
    margin: 40px 20px;
    border-radius: 14px;
    color: var(--text-light);
}

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

.cta-text h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.85;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-action .btn {
    margin-bottom: 15px;
    font-size: 1.05rem;
    padding: 14px 30px;
    background: #25d366;
    border: none;
}

.cta-action .btn:hover {
    background: #1fb855;
}

.cta-features {
    display: flex;
    gap: 18px;
    font-size: 0.82rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.85;
}

.cta-features i {
    color: #7dd3fc;
}

/* ===================== */
/* Footer */
/* ===================== */
footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.55);
    padding-top: 55px;
    font-size: 0.88rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.social-col a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-col i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.brand-col .logo {
    margin-bottom: 18px;
}

.brand-col .logo-name, .brand-col .logo-sub {
    color: var(--text-light);
}

.footer-desc {
    margin-bottom: 18px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col ul li i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
}

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

/* ===================== */
/* Responsive Design */
/* ===================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

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

    .products-grid,
    .products-row-5,
    .products-row-6 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .process-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .process-arrow {
        display: none;
    }

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

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-action {
        align-items: center;
    }
}

/* Mobile Menu Styling */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 400px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        color: rgba(255,255,255,0.8);
    }

    .mobile-menu-btn {
        display: block;
    }

    .phone-text {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
        width: 60px;
    }

    .products-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .products-row-5,
    .products-row-6 {
        display: contents;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        padding: 0 10px;
    }

    .cta-section {
        margin: 30px 10px;
        border-radius: 10px;
    }

    .cta-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .products-row-5,
    .products-row-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .product-card {
        padding: 12px 8px 10px;
    }

    .product-card img {
        height: 70px;
    }
}

/* ===================== */
/* Blog Styles */
/* ===================== */
.blog-section .section-title h2 {
    position: relative;
    display: inline-block;
}

.blog-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 149, 255, 0.12);
    border-color: rgba(0, 149, 255, 0.3);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f8f9fa;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--secondary-color);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* Responsive Blog Grid */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
.pagination {
    margin-top: 40px;
}

.pagination .page-numbers {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 600;
}

.pagination .page-numbers.current, .pagination .page-numbers:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.single-post h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.post-content h2, .post-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===================== */
/* Tentang Kami Page */
/* ===================== */
.about-hero {
    position: relative;
    padding: 180px 0 120px;
    background-image: url('assets/images/hero_background.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,21,40,0.95) 0%, rgba(0,86,179,0.85) 100%);
    z-index: 1;
}

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

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.intro-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pillar-box:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 149, 255, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6f4ff, #d4eeff);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.pillar-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.pillar-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.about-feature-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--border-color);
}

.af-icon {
    font-size: 2.5rem;
    color: #0095ff;
    flex-shrink: 0;
}

.af-content h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.af-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px 20px;
}

.team-info h4 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f6f8;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a192f 0%, #0056b3 100%);
    text-align: center;
    color: #fff;
}

.cta-banner {
    max-width: 800px;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .intro-pillars, .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-pillars, .about-features-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .about-feature-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================== */
/* Blog Page Layout (home.php) */
/* ===================== */
.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.blog-main {
    flex: 0 0 calc(65% - 20px);
    max-width: calc(65% - 20px);
}

.blog-sidebar {
    flex: 0 0 calc(35% - 20px);
    max-width: calc(35% - 20px);
}

/* Hero Card (First Post) */
.blog-hero-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11, 21, 40, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    width: 100%;
    max-width: 85%;
}

.hero-meta {
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-meta i {
    color: #fff;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-title a {
    color: #fff;
    transition: var(--transition);
}

.hero-title a:hover {
    color: var(--secondary-color);
}

.hero-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* List Cards */
.blog-list-card {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.list-card-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.list-card-image a {
    display: block;
    height: 100%;
}

.list-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-list-card:hover .list-card-image img {
    transform: scale(1.03);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ccc;
    border-radius: 8px;
}

.list-card-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.list-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.list-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.list-title a:hover {
    color: var(--secondary-color);
}

.list-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.list-meta {
    font-size: 0.8rem;
    color: #a0a0a0;
}

/* Sidebar Widgets */
.widget {
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.search-field {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    background: transparent;
}

.search-submit {
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background-color: var(--primary-color);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.widget-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.widget-post-img {
    flex: 0 0 90px;
    width: 90px;
    height: 70px;
}

.widget-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.placeholder-img-small {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border-radius: 4px;
}

.widget-post-info {
    flex: 1;
}

.widget-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.widget-post-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.widget-post-title a:hover {
    color: var(--secondary-color);
}

.widget-post-date {
    font-size: 0.75rem;
    color: #a0a0a0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-layout {
        flex-direction: column;
    }
    .blog-main, .blog-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-list-card {
        flex-direction: column;
        gap: 15px;
    }
    .list-card-image, .list-card-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .list-card-image {
        height: 220px;
    }
    .hero-content {
        max-width: 100%;
        padding: 20px;
    }
    .hero-title {
        font-size: 1.4rem;
    }
}
