:root {
    --primary: #c2182b; /* Authentic red from screenshot */
    --secondary: #4a4a4a; /* Precise gray for inactive items */
    --text: #333;
    --bg: #fff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-large {
    padding: 120px 0;
}

.site-header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Added for mobile menu positioning */
}

.site-branding img {
    max-height: 55px;
    width: auto;
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
}

.main-navigation li.current-menu-item a {
    background: var(--primary);
    color: #fff;
}

.main-navigation li a i {
    font-size: 16px;
}

.main-navigation li a:hover:not(.current-menu-item a) {
    color: var(--primary);
    background: #fdf2f2;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .container, .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #f8f9fa;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        z-index: 10001;
        font-size: 20px;
        color: var(--secondary);
    }

    .menu-toggle .icon-close {
        display: none;
    }

    #masthead.toggled .menu-toggle .icon-bars {
        display: none;
    }

    #masthead.toggled .menu-toggle .icon-close {
        display: block;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        padding: 100px 30px 40px;
        z-index: 9999;
        overflow-y: auto;
    }

    /* Show menu when toggled */
    #masthead.toggled .main-navigation {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-navigation li {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .main-navigation li a {
        width: 100%;
        background: #f8f9fa;
        justify-content: center;
        padding: 18px 25px;
        border-radius: 15px;
        font-size: 18px;
    }
}

/* New Hero Design */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-image: url('../img/sewa-mobil-dengan-driver.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f8f9fa 35%, rgba(248, 249, 250, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.hero-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    max-width: 580px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: normal;
}

.hero-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(194, 24, 43, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 35px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary-new {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(194, 24, 43, 0.2);
}

.btn-outline {
    border: 2px solid #ddd;
    color: #444;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-new:hover {
    background: #a01423;
    transform: translateY(-3px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding: 80px 0;
    }
    .hero-background {
        width: 100%;
        opacity: 0.2;
    }
    .hero-section::after {
        background: linear-gradient(0deg, #f8f9fa 20%, rgba(248, 249, 250, 0.6) 100%);
    }
    .hero-glass-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        max-width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    .btn-primary-new, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Trusted Partner Section */
.driver-service-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.driver-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.driver-service-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.driver-service-content .section-title {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.driver-service-content .section-title span {
    color: var(--primary);
}

.title-accent {
    width: 80px;
    height: 5px;
    background: var(--primary);
    border-radius: 5px;
    margin-bottom: 30px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 45px;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 500;
}

.benefit-list i {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .driver-service-grid {
        gap: 40px;
    }
    .driver-service-content .section-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .driver-service-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .driver-service-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .driver-service-content {
        text-align: left;
    }
    .title-accent {
        margin-left: 0;
        margin-right: auto;
    }
    .benefit-list li {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .driver-service-content .section-title {
        font-size: 28px;
    }
}

/* Client Section */
.client-section {
    padding: 80px 0;
    background: #fcfcfc;
}

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

.title-accent.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.client-logo.grayscale {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-item:hover .client-logo.grayscale {
    opacity: 1;
    filter: grayscale(0%);
}

.seo-text-small {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

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

/* Services Features Section */
.services-features-section {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 24, 43, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-title {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 30px;
    }
}

/* Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: #fff;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.car-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.car-image {
    padding: 10px;
    background: #fff;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info {
    padding: 25px;
    background: #f9f9f9;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-name {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 25px;
    justify-content: flex-start;
}

.car-specs span {
    font-size: 10px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #fff;
    padding: 4px 6px;
    border-radius: 6px;
    border: 1px solid #eee;
    white-space: nowrap;
}

.car-specs i {
    font-size: 12px;
    color: var(--secondary);
}

.car-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.car-price .label {
    font-size: 13px;
    color: #999;
}

.car-price .amount {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
}

.btn-availability {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-availability:hover {
    background: #a01423;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .car-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(194, 24, 43, 0.1);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: rgba(194, 24, 43, 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-title {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.why-text {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .why-card {
        padding: 25px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

/* Footer Section */
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-tagline {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
}

.footer-seo-links {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-seo-links em, .footer-seo-links strong {
    color: #888;
}

.footer-copyright {
    border-top: 1px solid #222;
    padding-top: 25px;
    font-size: 13px;
    color: #555;
}

/* About Page */
.about-hero {
    position: relative;
    padding: 100px 0;
    background: url('../img/tentang-kami-hero.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.about-hero .container {
    width: 100%;
}

.mobil-hero {
    background-image: url('../img/mobil-hero.png');
}

.galeri-hero {
    background-image: url('../img/galeri-hero.png');
}

.tnc-hero {
    background-image: url('../img/tnc-hero.png');
}

/* T&C Page Styles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.tnc-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.tnc-block {
    margin-bottom: 35px;
}

.tnc-block:last-child {
    margin-bottom: 0;
}

.tnc-block h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.tnc-block p, .tnc-block li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.tnc-block ul {
    padding-left: 20px;
    list-style-type: disc;
}

.tnc-footer-note {
    padding: 30px;
}

.btn-primary-red {
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-primary-red:hover {
    background: #a01423;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tnc-card {
        padding: 30px 20px;
    }
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

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

.hero-title-main {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-title-main span {
    color: var(--primary);
}

.hero-description-main {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.vision-mission-section {
    padding: 80px 0;
    background: #fff;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vm-header i {
    color: var(--primary);
    font-size: 24px;
}

.vm-header h2 {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
    margin: 0;
}

.vm-card p {
    color: #666;
    line-height: 1.7;
}

.core-values-section {
    padding: 100px 0;
    background: #fcfcfc;
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.page-cta-section {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
}

.page-cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsiveness for About Page */
@media (max-width: 991px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title-main {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-description-main {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vision-mission-section,
    .core-values-section,
    .page-cta-section {
        padding: 60px 0;
    }
    
    .page-cta-section h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn-dark,
    .cta-buttons .btn-outline-white {
        width: 100%;
        text-align: center;
    }
}

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

.btn-dark {
    background: #111;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.blog-hero {
    background-image: url('../img/blog-hero.png');
}

.blog-search-hero {
    max-width: 500px;
    margin: 40px auto 0;
    position: relative;
    z-index: 3;
}

/* Blog List Styles */
.blog-search-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
}

.search-input-group {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.search-field {
    flex-grow: 1;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 50px;
    outline: none;
}

.search-submit {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #a01423;
}

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

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-info {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

.blog-excerpt {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.blog-pagination a, .blog-pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.blog-pagination .current, .blog-pagination a:hover {
    background: var(--primary);
    color: #fff;
}

/* Post Detail Styles */
.post-header {
    position: relative;
    padding: 120px 0;
    background-color: var(--secondary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.post-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

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

.post-meta-top .category a {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}

.post-title {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.2;
}

.post-meta-bottom {
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
}

.post-meta-bottom i {
    margin-right: 5px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2, .entry-content h3 {
    margin: 40px 0 20px;
    color: var(--secondary);
}

.entry-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.entry-content a:hover {
    text-decoration: underline;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.post-navigation a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .post-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .post-header {
        padding: 60px 20px;
    }
    .post-title {
        font-size: 28px;
    }
    .post-meta-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .post-navigation {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .entry-content {
        font-size: 16px;
    }
    .post-featured-image {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 24px;
    }
}

.kontak-hero {
    background-image: url('../img/kontak-hero.png');
}

/* Tidy Contact V2 Styles */
.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-v2-text .section-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-card-v2 {
    background: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f2f2f2;
}

.contact-item-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #f9f9f9;
    transition: all 0.3s ease;
}

.contact-item-v2:last-child {
    border-bottom: none;
}

.contact-item-v2:hover {
    background: #fdfdfd;
    transform: translateX(10px);
}

.icon-box-v2 {
    width: 55px;
    height: 55px;
    background: #fdf2f2;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-box-v2 span {
    display: block;
    font-size: 13px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-box-v2 p, .info-box-v2 a {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    margin: 0;
}

.info-box-v2 a:hover {
    color: var(--primary);
}

/* Social V2 */
.section-title-small {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 30px;
}

.social-v2-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link-v2 {
    font-size: 16px;
    font-weight: 700;
    color: #777;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-link-v2:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.bg-light-gradient {
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

@media (max-width: 991px) {
    .contact-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-v2-text .section-title {
        font-size: 32px;
        text-align: center;
    }
    .contact-v2-text .title-accent {
        margin: 15px auto;
    }
    .contact-v2-text .section-subtitle {
        text-align: center;
    }
    .social-v2-row {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-item-v2 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .info-box-v2 p, .info-box-v2 a {
        font-size: 16px;
    }
    
    .contact-card-v2 {
        padding: 10px;
    }

    .contact-v2-text .section-title {
        font-size: 28px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
    .wa-tooltip {
        display: none;
    }
}
