/* =====================================================
   Bytrans.id - Main Stylesheet
   Color Scheme: #243E91 (Blue Primary), #DF2342 (Red Accent), White Dominant
   ===================================================== */

:root {
    --primary-color: #243E91;
    --primary-dark: #1a2d6b;
    --accent-color: #DF2342;
    --accent-dark: #b91d35;
    --dark-color: #2c3e50;
    --light-bg: #f8fafc;
    --white: #ffffff;
}

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

html {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

main {
    flex: 1;
}

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

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(36, 62, 145, 0.1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(36, 62, 145, 0.1);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   HERO SECTION (Homepage)
   ===================================================== */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
        linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    color: var(--dark-color);
    padding: 150px 0 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff08"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* =====================================================
   BUTTONS & CTA
   ===================================================== */
.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(223, 35, 66, 0.4);
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.cta-button i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #243E91;
    border: 2px solid #243E91;
}

.btn-secondary:hover {
    background: #243E91;
    color: white;
}

.btn-white {
    background: white;
    color: #243E91;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2c3e50;
}

.book-btn {
    background: #243E91;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(36, 62, 145, 0.4);
    background: #1c2f6f;
}

.submit-btn {
    background: #243E91;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(36, 62, 145, 0.4);
    background: #1c2f6f;
}

/* =====================================================
   SECTION TITLES
   ===================================================== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: 60px 0;
    background: #f8fafc;
}

.services-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Index Page Service Cards */
.services .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(36, 62, 145, 0.2);
}

.services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #243E91, #DF2342);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.3);
}

.services .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.services .service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Layanan Page Service Cards */
.services-section .service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 2rem;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #243E91, #DF2342, #243E91);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(36, 62, 145, 0.2), 0 0 0 3px rgba(36, 62, 145, 0.1);
    border-color: #243E91;
}

.service-header {
    background: linear-gradient(135deg, #243E91 0%, #1a2d6b 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-header i {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    padding: 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: #f8f9fa;
    padding-left: 1rem;
}

.service-features li i {
    color: #243E91;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.service-price {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(251, 146, 60, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.service-price:hover::before {
    left: 100%;
}

.service-price h4 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #243E91, #DF2342);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 0.5rem 0;
}

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

.service-cta .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #DF2342, #b91d35);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(223, 35, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.service-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 35, 66, 0.5);
    background: linear-gradient(135deg, #c91d3a, #DF2342);
}

.service-cta .btn i {
    font-size: 1.2rem;
}

/* =====================================================
   FLEET SECTION
   ===================================================== */
.fleet {
    padding: 100px 0;
    background: white;
}

.fleet-section {
    padding: 2rem 0 3rem 0;
}

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

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(36, 62, 145, 0.15);
}

.fleet-image {
    height: 220px;
    background: linear-gradient(135deg, #243E91, #DF2342);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 62, 145, 0.3), rgba(223, 35, 66, 0.3));
    z-index: 1;
}

.fleet-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.fleet-info {
    padding: 1.8rem;
}

.fleet-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.fleet-category {
    color: #243E91;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.fleet-specs {
    list-style: none;
    margin: 1rem 0;
}

.fleet-specs li {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-specs i {
    color: #243E91;
    width: 16px;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Fleet Card Features */
.fleet-card .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    padding: 0.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.fleet-card .feature i {
    color: #243E91;
    font-size: 0.9rem;
}

/* Why Choose Features */
.why-choose .feature {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.why-choose .feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.why-choose .feature:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.why-choose .feature h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.feature-number {
    display: none;
}

.fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #243E91;
    margin: 0;
}

.price-period {
    font-size: 0.85rem;
    color: #666;
}

.price-note {
    font-size: 0.75rem;
    color: #28a745;
    margin: -0.5rem 0 1rem 0;
    padding: 0.5rem;
    background: #d4edda;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.fleet-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose .section-title h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.why-choose .section-title p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff08"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    justify-items: center;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #243E91, #DF2342);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.3);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f4fd;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #243E91;
    box-shadow: 0 0 0 3px rgba(36, 62, 145, 0.1);
}

/* =====================================================
   FILTER SECTION
   ===================================================== */
.filter-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
}

.filter-btn:hover,
.filter-btn.active {
    background: #243E91;
    color: white;
    border-color: #243E91;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
    padding-top: 0;
    padding-bottom: 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    color: #243E91;
}

.blog-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #243E91;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #DF2342;
}

.blog-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: white;
    color: #243E91;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    gap: 0.5rem;
}

.page-link:hover {
    background: #243E91;
    color: white;
    border-color: #243E91;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.3);
}

.page-link.active {
    background: linear-gradient(135deg, #243E91, #1a2d6b);
    color: white;
    border-color: #243E91;
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.4);
}

.page-link i {
    font-size: 0.85rem;
}

/* =====================================================
   FEATURED POST
   ===================================================== */
.featured-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-post {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-image {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

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

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.featured-badge {
    background: rgba(36, 62, 145, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.3);
}

.featured-badge::before {
    content: '⭐';
    font-size: 1rem;
}

.featured-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   BLOG STATS SECTION
   ===================================================== */
.blog-stats-section {
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.blog-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.4);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-content {
    padding: 5rem 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card i {
    font-size: 3rem;
    color: #243E91;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* History Section */
.history-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.history-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.history-timeline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-year {
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 1.5rem;
    min-width: 80px;
    text-align: center;
}

.timeline-text {
    flex: 1;
}

.timeline-text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-text p {
    color: #666;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 100%;
    height: 280px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #243E91;
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,149,5,0.1)"/></svg>');
    opacity: 0.3;
}

.process-section .section-title h2 {
    color: white;
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 50px rgba(36, 62, 145, 0.3);
}

.step-card::after {
    content: '\f105';
    /* Angle Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -1.4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.step-card:last-child::after {
    display: none;
}

@media (max-width: 992px) {
    .step-card {
        overflow: visible;
        margin-bottom: 2.5rem;
        /* Space for the arrow */
    }

    .step-card::after {
        content: '\f107';
        /* Angle Down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 50%;
        right: auto;
        top: 100%;
        /* Position relative to bottom of card */
        bottom: auto;
        transform: translateX(-50%);
        margin-top: 0.5rem;
        /* Increased margin top */

        /* Simple Style (Reverted) */
        width: auto;
        height: auto;
        background: transparent;
        color: rgba(255, 255, 255, 0.6);
        border-radius: 0;
        display: block;
        box-shadow: none;
        z-index: 20;
        border: none;
        font-size: 2.5rem;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .process-steps {
        gap: 1.5rem;
        /* Reduced gap since we used margin-bottom */
    }
}

.step-number {
    width: 70px;
    height: 70px;
    background: #243E91;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(36, 62, 145, 0.4);
    position: relative;
    border: 3px solid #DF2342;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 5px;
    background: #DF2342;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: white;
    color: #243E91;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #243E91;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: #ffffff;
    color: #2c3e50;
    padding: 0;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid #e5e7eb;
}

.footer-main {
    padding: 3rem 0;
}

.footer-copyright {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 1.2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
}

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

    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .footer-main {
        padding: 2.5rem 0;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
        padding-top: 1.2rem;
        border-top: 1px solid #e5e7eb;
    }

    .footer-main {
        padding: 2rem 0;
    }

    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .legal-links {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    display: block;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #243E91;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #243E91;
    border-color: #243E91;
    color: #ffffff;
}

.footer-rating {
    margin: 1rem 0;
    padding: 0;
    background: transparent;
}

.footer-rating .stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    display: block;
}

.footer-rating span {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.85rem;
}

.contact-item {
    margin-bottom: 0.8rem;
}

.contact-item strong {
    display: block;
    color: #1a202c;
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-item strong i {
    color: #243E91;
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.contact-item small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #243E91;
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   UTILITY CLASSES - untuk menggantikan inline styles
   ===================================================== */
.text-yellow {
    color: #fff200;
}

.text-orange {
    color: #243E91;
}

.text-green {
    color: #27ae60;
}

.text-white {
    color: white;
}

.text-dark {
    color: #2c3e50;
}

.text-muted {
    color: #7f8c8d;
}

.bg-white {
    background: white;
}

.bg-light {
    background: #f8fafc;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-gap-1 {
    gap: 1rem;
}

.flex-gap-05 {
    gap: 0.5rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-15 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.p-1 {
    padding: 1rem;
}

.p-15 {
    padding: 1.5rem;
}

.p-2 {
    padding: 2rem;
}

.p-25 {
    padding: 2.5rem;
}

.font-bold {
    font-weight: 600;
}

.font-extra-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.8rem;
}

.text-base {
    font-size: 0.9rem;
}

.text-lg {
    font-size: 1.2rem;
}

.text-xl {
    font-size: 1.3rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 3rem;
}

.opacity-8 {
    opacity: 0.8;
}

.opacity-9 {
    opacity: 0.9;
}

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

.text-italic {
    font-style: italic;
}

.rounded {
    border-radius: 10px;
}

.rounded-md {
    border-radius: 15px;
}

.rounded-lg {
    border-radius: 20px;
}

.rounded-xl {
    border-radius: 25px;
}

.rounded-full {
    border-radius: 50%;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.border-light {
    border: 1px solid #e8f4fd;
}

.border-2-light {
    border: 2px solid #e8f4fd;
}

.border-2-gray {
    border: 2px solid #f8f9fa;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.no-decoration {
    text-decoration: none;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.transition {
    transition: all 0.3s ease;
}

.line-height-1-4 {
    line-height: 1.4;
}

.line-height-1-5 {
    line-height: 1.5;
}

.line-height-1-6 {
    line-height: 1.6;
}

.line-height-1-8 {
    line-height: 1.8;
}

.uppercase {
    text-transform: uppercase;
}

.cursor-pointer {
    cursor: pointer;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* Hero Section Specific Classes */
.hero-yellow-text {
    color: #DF2342;
}

.hero-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-rating-stars {
    color: #fff200;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 242, 0, 0.4);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-rating>div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-rating-score {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.2;
}

.hero-rating-count {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-circle {
    width: 380px;
    height: 380px;
    max-width: 85vw;
    max-height: 85vw;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-main-image {
    width: 85%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #243E91;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-badge-top-left {
    top: 10px;
    left: 10px;
}

.hero-badge-bottom-right {
    bottom: 10px;
    right: 10px;
}

.hero-badge-middle-left {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

/* Quick Booking Section */
.quick-booking-section {
    padding: 80px 0;
    background: #fff;
    border-top: 4px solid #243E91;
}

.quick-booking-title {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.quick-booking-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

.quick-booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

@media (max-width: 768px) {
    .quick-booking-form {
        grid-template-columns: 1fr;
    }

    .quick-booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .quick-booking-form-wrapper {
        padding: 1.5rem;
    }
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f4fd;
    border-radius: 10px;
    font-family: inherit;
}

.form-select {
    background: white;
}

.booking-submit-btn {
    background: linear-gradient(45deg, #243E91, #DF2342);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(36, 62, 145, 0.3);
}

/* Fleet Card Specific */
.fleet-image-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 3;
}

.fleet-badge-popular {
    background: #243E91;
}

.fleet-badge-recommend {
    background: #27ae60;
}

.fleet-badge-group {
    background: #3498db;
}

.fleet-badge-premium {
    background: #9b59b6;
}

.fleet-badge-corporate {
    background: #e74c3c;
}

.fleet-badge-big-group {
    background: #f39c12;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.fleet-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-feature-icon {
    color: #243E91;
}

.fleet-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fleet-price-unit {
    font-size: 0.8rem;
    font-weight: 400;
}

.fleet-status {
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.statistics-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.statistics-subtitle {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    font-size: 1.1rem;
    font-weight: 400;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-number-orange {
    color: #ffffff;
}

.stat-number-red {
    color: #ffffff;
}

.stat-number-yellow {
    color: #ffffff;
}

.stat-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.stat-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-title {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.gallery-description {
    color: #7f8c8d;
}

/* Testimonial Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

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

    .testimonial-card {
        padding: 2rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .testimonial-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-rating {
        font-size: 1.2rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e8f4fd;
}

.testimonial-avatar-wrapper {
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial-rating {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-name {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-location {
    color: #7f8c8d;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 1.5rem;
    }

    .partner-logo {
        min-width: 120px;
        height: 70px;
        padding: 0.8rem;
    }

    .partners-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 1rem;
    }

    .partner-logo {
        min-width: 100px;
        height: 60px;
        padding: 0.5rem;
    }

    .partner-name {
        font-size: 0.85rem;
    }

    .partners-section {
        padding: 50px 0;
    }
}

.partner-logo {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}

.partner-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Why Choose Section CTA */
.why-choose-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary {
    background: white;
    color: #243E91;
}

.cta-btn-primary:hover {
    background: #f8f9fa;
}

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
}

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

/* Blog/Tips Section */
.blog-tips-section {
    padding: 100px 0;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f4fd;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.blog-title {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-more {
    color: #2ecc71;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer-content {
    padding-bottom: 1.5rem;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

/* Height Classes */
.h-180 {
    height: 180px;
}

.h-200 {
    height: 200px;
}

.h-250 {
    height: 250px;
}

/* Max Width */
.max-w-800 {
    max-width: 800px;
}

.max-w-500 {
    max-width: 500px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet Landscape & Medium Desktop (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 42px;
    }

    .nav-links {
        gap: 0.6rem;
    }

    .nav-links a {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .mobile-menu {
        display: none;
    }

    .hero {
        padding: 130px 0 90px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.05rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-rating {
        align-items: center;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-image-circle {
        width: 350px;
        height: 350px;
        max-width: 80vw;
        max-height: 80vw;
    }

    .hero-main-image {
        width: 82%;
    }

    .hero-badge {
        padding: 0.6rem 1.1rem;
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.05rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1.5rem;
    }

    .why-choose .feature {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: 160px;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .why-choose .feature h3 {
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info,
    .contact-form {
        padding: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .services,
    .fleet,
    .why-choose,
    .contact {
        padding: 80px 0;
    }

    .page-header {
        padding: 7.5rem 0 3.5rem 0;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .fleet-card {
        padding: 0;
    }

    .fleet-info {
        padding: 2rem;
    }

    .fleet-info h3 {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 2.2rem;
    }

    .service-header {
        padding: 2.2rem 2rem;
    }

    .service-header h3 {
        font-size: 1.6rem;
    }

    .service-content {
        padding: 2.2rem 2rem;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-content {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 2.2rem;
    }

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

    .partners-grid {
        gap: 2rem;
    }

    .partner-logo {
        min-width: 140px;
        height: 75px;
    }

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

    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

    .team-image {
        height: 280px;
    }

    .team-info {
        padding: 1.5rem;
    }

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

    .timeline-item {
        padding: 1.5rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .modal-body {
        padding: 2.5rem;
    }
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        color: #2c3e50;
        padding: 1rem;
        border-bottom: 1px solid rgba(36, 62, 145, 0.1);
        display: block;
        width: 100%;
    }

    .nav-links a:hover {
        background: rgba(36, 62, 145, 0.1);
        color: #243E91;
    }

    .mobile-menu {
        display: block;
        color: #2c3e50;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-yellow-text {
        display: block;
    }

    .hero-rating {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .hero-rating-stars {
        font-size: 1.5rem;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-image-circle {
        width: 280px;
        height: 280px;
        max-width: 80vw;
        max-height: 80vw;
    }

    .hero-main-image {
        width: 80%;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero-badge i {
        font-size: 0.85rem;
    }

    .hero-badge-top-left {
        top: 5px;
        left: 5px;
    }

    .hero-badge-bottom-right {
        bottom: 5px;
        right: 5px;
    }

    .hero-badge-middle-left {
        left: -5px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .page-header {
        padding: 7rem 0 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1.5rem;
        max-width: 100%;
    }

    .why-choose .feature {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: 150px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }

    .why-choose .feature:nth-child(n+4) {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: 180px;
    }

    .why-choose .feature h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card,
    .fleet-card,
    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .contact-item {
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
    }

    .contact-details {
        flex: 1;
    }

    .logo-img {
        height: 40px;
    }

    .services,
    .fleet,
    .why-choose,
    .contact {
        padding: 60px 0;
    }

    .fleet-actions {
        grid-template-columns: 1fr;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 350px;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .statistics-section {
        padding: 60px 0;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .statistics-title {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .about-intro h2,
    .history-text h2 {
        font-size: 2rem;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image {
        height: 320px;
    }

    .team-info {
        padding: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-container {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .service-header {
        padding: 2.5rem 2rem;
        background: linear-gradient(135deg, #243E91 0%, #1a2d6b 100%);
    }

    .service-header i {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: float 3s ease-in-out infinite;
    }

    .service-header h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .service-header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .service-content {
        padding: 2.5rem 2rem;
    }

    .service-features li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }

    .service-price {
        padding: 2rem 1.8rem;
        margin: 2rem 0;
        background: linear-gradient(135deg, #fff7ed 0%, #ffe4cc 100%);
        border-radius: 15px;
    }

    .service-price h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .price-range {
        font-size: 1.5rem;
    }

    .service-cta .btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }

    .fleet-image {
        height: 250px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
        max-width: 100%;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-rating {
        font-size: 1.3rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}

/* =====================================================
   MODAL STYLES
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 3% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #fff;
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.modal-close:hover,
.modal-close:focus {
    background: #243E91;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    background: linear-gradient(135deg, #243E91, #DF2342);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-info {
    padding: 3rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.modal-category {
    color: #243E91;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modal-price {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.modal-price .price {
    font-size: 2rem;
    margin: 0;
}

.modal-features h3,
.modal-description h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.modal-features .feature i {
    color: #243E91;
    font-size: 1.2rem;
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description p {
    color: #666;
    line-height: 1.8;
}

.modal-actions {
    margin-top: 2rem;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        padding: 2rem;
    }

    .modal-info {
        padding: 2rem;
    }

    .modal-close {
        right: 15px;
        top: 15px;
    }
}

/* =====================================================
   END MODAL STYLES
   ===================================================== */

/* Mobile & Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-rating {
        font-size: 0.9rem;
    }

    .hero-rating-stars {
        font-size: 1.2rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image-circle {
        width: 250px;
        height: 250px;
        max-width: 75vw;
        max-height: 75vw;
    }

    .hero-main-image {
        width: 80%;
    }

    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-badge-top-left {
        top: 0.5rem;
        left: 0.5rem;
    }

    .hero-badge-bottom-right {
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .hero-badge-middle-left {
        left: 0.5rem;
        top: 50%;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .logo-img {
        height: 35px;
    }

    .page-header {
        padding: 6rem 0 2.5rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

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

    .services,
    .fleet,
    .why-choose,
    .contact {
        padding: 50px 0;
    }

    .features-grid {
        gap: 1.5rem 1rem;
    }

    .why-choose .feature {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: 140px;
        padding: 1.2rem 0.8rem;
    }

    .why-choose .feature:nth-child(n+4) {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: 140px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .why-choose .feature h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .service-card {
        padding: 0;
        margin-bottom: 2rem;
        border-radius: 20px;
        overflow: hidden;
    }

    .service-header {
        padding: 2rem 1.5rem;
    }

    .service-header i {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }

    .service-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .service-header p {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-features li {
        padding: 0.7rem;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }

    .service-price {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .service-price h4 {
        font-size: 0.95rem;
    }

    .price-range {
        font-size: 1.3rem;
    }

    .service-cta .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .fleet-card {
        padding: 0;
    }

    .fleet-info {
        padding: 1.5rem;
    }

    .fleet-info h3 {
        font-size: 1.2rem;
    }

    .fleet-image {
        height: 200px;
    }

    .fleet-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .book-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-details {
        flex: 1;
    }

    .contact-item strong {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .contact-item small,
    .contact-item a {
        font-size: 0.75rem;
        word-break: break-word;
        line-height: 1.4;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-title {
        font-size: 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .featured-post {
        border-radius: 20px;
    }

    .featured-image {
        height: 300px;
    }

    .featured-content {
        padding: 2rem 1.5rem;
        position: relative;
    }

    .featured-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .featured-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .featured-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .featured-content .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .blog-card {
        padding: 0;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-avatar {
        width: 65px;
        height: 65px;
    }

    .testimonial-rating {
        font-size: 1.2rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .team-image {
        height: 300px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    .nav-links a {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        max-width: 250px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .fleet-info h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-rating {
        font-size: 1.1rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }
}

/* Landscape Mode untuk Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-image {
        display: none;
    }

    .page-header {
        padding: 5rem 0 2rem 0;
    }

    .services,
    .fleet,
    .why-choose {
        padding: 40px 0;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .featured-section {
        padding: 3rem 0;
    }

    .featured-post {
        border-radius: 15px;
    }

    .featured-image {
        height: 250px;
    }

    .featured-content {
        padding: 1.5rem 1.2rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.8rem;
    }

    .featured-title {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.7rem;
    }

    .featured-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .featured-content .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .statistics-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-rating {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-rating-stars {
        font-size: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-header {
        padding: 2rem 1.5rem;
    }

    .service-header h3 {
        font-size: 1.5rem;
    }

    .service-header i {
        font-size: 2.5rem;
    }

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

    .value-card i {
        font-size: 2rem;
    }

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

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* =====================================================
   BLOG DETAIL PAGE STYLES
   ===================================================== */

.blog-detail-container {
    padding: 8rem 0 5rem 0;
    background: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
}

.blog-detail-header {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 0 auto 3rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #243E91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #DF2342;
}

.breadcrumb span:not(:last-child) {
    color: #ccc;
}

.blog-detail-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #243E91;
}

.author-info div {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #2c3e50;
    font-size: 1rem;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
}

.meta-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-items span {
    color: #666;
    font-size: 0.9rem;
}

.meta-items i {
    color: #243E91;
    margin-right: 0.3rem;
}

.meta-right {
    display: flex;
    gap: 1rem;
}

.share-btn,
.bookmark-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2c3e50;
}

.share-btn:hover,
.bookmark-btn:hover {
    border-color: #243E91;
    color: #243E91;
    transform: translateY(-2px);
}

.bookmark-btn {
    padding: 0.6rem 1rem;
}

.blog-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.content-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.featured-image-large {
    margin: -3rem -3rem 3rem -3rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.featured-image-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-content {
    color: #444;
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #243E91;
    border-radius: 8px;
}

.article-content h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #243E91, #DF2342);
    border-radius: 2px;
}

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

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-content li strong {
    color: #2c3e50;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    border-left: 5px solid #fff;
    border-radius: 10px;
    color: white;
    font-style: italic;
}

.article-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: normal;
}

.tip-box,
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    background: #fff9f0;
    border: 2px solid #ffe4c4;
}

.tip-box i,
.info-box i {
    font-size: 1.8rem;
    color: #243E91;
    flex-shrink: 0;
}

.tip-box strong,
.info-box strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tip-box p,
.info-box p {
    margin: 0;
    color: #666;
}

.tip-box a,
.info-box a {
    color: #243E91;
    text-decoration: underline;
}

.info-box {
    background: #f0f8ff;
    border-color: #cce7ff;
}

.info-box i {
    color: #0066cc;
}

/* Success Box (Green) */
.success-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.success-box i {
    font-size: 1.8rem;
    color: #16a34a;
    flex-shrink: 0;
}

.success-box strong {
    color: #166534;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.success-box p {
    margin: 0;
    color: #15803d;
}

/* Warning Box (Yellow) */
.warning-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    background: #fefce8;
    border: 2px solid #fef08a;
}

.warning-box i {
    font-size: 1.8rem;
    color: #ca8a04;
    flex-shrink: 0;
}

.warning-box strong {
    color: #854d0e;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.warning-box p {
    margin: 0;
    color: #a16207;
}

/* Danger Box (Red) */
.danger-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.danger-box i {
    font-size: 1.8rem;
    color: #dc2626;
    flex-shrink: 0;
}

.danger-box strong {
    color: #991b1b;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.danger-box p {
    margin: 0;
    color: #b91c1c;
}

/* Primary Box (Brand Colors) */
.primary-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(36, 62, 145, 0.1) 0%, rgba(103, 137, 255, 0.1) 100%);
    border: 2px solid #6789ff;
}

.primary-box i {
    font-size: 1.8rem;
    color: #243E91;
    flex-shrink: 0;
}

.primary-box strong {
    color: #243E91;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.primary-box p {
    margin: 0;
    color: #1e3a8a;
}

/* Text Highlights */
.highlight {
    background-color: #fef08a;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 500;
}

/* CTA Button in Content */
.btn-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #243E91 0%, #6789ff 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(36, 62, 145, 0.3);
}

/* Feature List with Checkmarks */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Step List with Numbers */
.step-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.step-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
    counter-increment: step-counter;
}

.step-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #243E91 0%, #6789ff 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-list li strong {
    display: block;
    color: #243E91;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Blog Detail CTA Box */
.article-content .cta-box {
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    text-align: center;
    color: white;
}

.article-content .cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-content .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.article-tags h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #666;
    border-radius: 50px;
    text-decoration: none;
    margin: 0.3rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #243E91;
    color: white;
}

.article-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.article-share h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-social {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.share-btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-btn-social.facebook {
    background: #1877f2;
}

.share-btn-social.twitter {
    background: #1da1f2;
}

.share-btn-social.whatsapp {
    background: #25d366;
}

.share-btn-social.linkedin {
    background: #0a66c2;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #243E91;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-post:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-post h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-post span {
    color: #999;
    font-size: 0.8rem;
}

.related-post span i {
    color: #243E91;
    margin-right: 0.3rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #f8f9fa;
    color: #243E91;
    padding-left: 1.2rem;
}

.category-list a i {
    color: #243E91;
    margin-right: 0.5rem;
}

.category-list a span {
    background: #f0f0f0;
    color: #666;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-widget {
    background: linear-gradient(135deg, #243E91 0%, #DF2342 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.8rem;
}

.newsletter-widget form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form-sidebar input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
}

.newsletter-form-sidebar input:focus {
    outline: none;
    border-color: #243E91;
}

.newsletter-form-sidebar button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #243E91, #DF2342);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-sidebar button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(36, 62, 145, 0.4);
}

/* Responsive Blog Detail */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-detail-content {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .blog-detail-container {
        padding: 7rem 0 4rem 0;
    }

    .blog-detail-header {
        padding: 2rem 1rem;
        margin: 0 1rem 2rem 1rem;
        width: auto;
        max-width: none;
        box-sizing: border-box;
    }

    .blog-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        margin: 0 1rem;
        width: auto;
        max-width: none;
        box-sizing: border-box;
    }

    .content-main {
        padding: 2rem 1rem;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .sidebar {
        width: 100%;
        margin: 0;
    }

    .sidebar-widget {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .featured-image-large {
        margin: 0 0 2rem 0;
        width: 100%;
        border-radius: 8px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .content-main {
        padding: 2rem 1.5rem;
    }

    /* Fixed: removed second featured-image-large block with negative margins */

    .featured-image-large img {
        height: auto;
        max-height: 400px;
    }

    .article-content .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .sidebar-widget {
        flex: 1 1 100%;
        min-width: 0;
        /* Override any min-width */
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-detail-container {
        padding: 6rem 0 3rem 0;
    }

    .blog-detail-header {
        padding: 1.5rem 1rem;
        margin: 0 1rem 2rem 1rem;
        border-radius: 12px;
        width: auto;
        max-width: none;
        box-sizing: border-box;
    }

    .blog-detail-content {
        padding: 0;
        margin: 0 1rem;
        width: auto;
        max-width: none;
        box-sizing: border-box;
    }

    .content-main {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .sidebar-widget {
        padding: 1.5rem 1rem;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .featured-image-large {
        margin: 0 0 1.5rem 0;
        width: 100%;
        border-radius: 8px;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn-social {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .article-content .cta-box {
        padding: 2rem 1.5rem;
    }
}

/* =====================================================
   END BLOG DETAIL PAGE STYLES
   ===================================================== */

/* =====================================================
   RESPONSIVE UTILITIES & HELPERS
   ===================================================== */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive video embeds */
iframe,
video {
    max-width: 100%;
}

/* Text overflow handling */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive tables */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    /* Pagination responsive */
    .pagination {
        gap: 0.3rem;
        flex-wrap: wrap;
        padding: 1.5rem 0;
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }

    .page-link:first-child,
    .page-link:last-child {
        flex: 0 0 auto;
    }
}

/* Show only on mobile */
.show-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block !important;
    }
}

/* =====================================================
   KETENTUAN PAGE STYLES
   ===================================================== */

.ketentuan-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ketentuan-content {
    max-width: 900px;
    margin: 0 auto;
}

.ketentuan-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ketentuan-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ketentuan-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #243E91;
}

.ketentuan-header i {
    font-size: 2rem;
    color: #243E91;
}

.ketentuan-header h2 {
    margin: 0;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
}

.ketentuan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ketentuan-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ketentuan-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.ketentuan-list li i {
    font-size: 1.2rem;
    color: #243E91;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ketentuan-list li span {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.catatan-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-left: 4px solid #DF2342;
}

.catatan-box .ketentuan-header {
    border-bottom-color: #DF2342;
}

.catatan-box .ketentuan-header i,
.catatan-box .ketentuan-list li i {
    color: #DF2342;
}

.ketentuan-cta {
    background: linear-gradient(135deg, #243E91 0%, #1a2d6b 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.ketentuan-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ketentuan-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: #25D366;
    color: white;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #243E91;
    transform: translateY(-2px);
}

/* Responsive Ketentuan Page */
@media (max-width: 768px) {
    .ketentuan-section {
        padding: 2rem 0;
    }

    .ketentuan-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ketentuan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ketentuan-header i {
        font-size: 1.5rem;
    }

    .ketentuan-header h2 {
        font-size: 1.25rem;
    }

    .ketentuan-list li {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .ketentuan-list li i {
        font-size: 1rem;
    }

    .ketentuan-list li span {
        font-size: 0.9rem;
    }

    .ketentuan-cta {
        padding: 2rem 1.5rem;
    }

    .ketentuan-cta h3 {
        font-size: 1.5rem;
    }

    .ketentuan-cta p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .ketentuan-box {
        padding: 1rem;
    }

    .ketentuan-header h2 {
        font-size: 1.1rem;
    }

    .ketentuan-list li span {
        font-size: 0.85rem;
    }
}

/* Responsive spacing utilities */
@media (max-width: 768px) {
    .mobile-no-padding {
        padding: 0 !important;
    }

    .mobile-no-margin {
        margin: 0 !important;
    }
}

/* Ensure all content stays within viewport */
* {
    box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Touch optimization for mobile */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets for mobile */
    a,
    button,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on tap */
    .no-select {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Print styles */
@media print {

    header,
    footer,
    .mobile-menu,
    .cta-button {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Sharper borders for high DPI screens */
    .fleet-card,
    .service-card,
    .blog-card {
        border-width: 0.5px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --primary-color: #4a6bb3;
        --dark-color: #f8f9fa;
        --light-bg: #1a1a1a;
    }
    */
}

/* =====================================================
   END RESPONSIVE UTILITIES
   ===================================================== */

/* =====================================================
   MODAL STYLES (Added for Car Detail)
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #DF2342;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.modal-image {
    background: #ffffff;
    /* Changed to white to blend with image background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease;
}

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

.modal-info {
    padding: 3rem;
}

.modal-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.modal-badge {
    background: #e3f2fd;
    color: #243E91;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #DF2342;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.modal-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.modal-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tag i {
    color: #27ae60;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        border-radius: 20px 20px 0 0;
        padding: 2rem;
        height: 250px;
    }

    .modal-info {
        padding: 2rem;
    }

    .modal-info h2 {
        font-size: 1.6rem;
    }
}

/* Partner Logos */
.partner-logo {
    padding: 0.5rem !important;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(1.2);
    /* Slight scale up by default */
}

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

/* =====================================================
   MOBILE PARTNER SLIDER
   ===================================================== */
@media (max-width: 768px) {
    .partners-grid {
        display: flex;
        flex-wrap: nowrap;
        /* Ensure no wrapping */
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        padding-left: 0.5rem;
        /* Better start spacing */
        padding-right: 0.5rem;
        /* scroll-behavior: smooth; REMOVED to prevent jitter on init */
        -webkit-overflow-scrolling: touch;
        /* Momentum scrolling */
        scrollbar-width: none;
        /* Firefox */
        align-items: center;
    }

    .partners-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari/Edge */
    }

    .partner-logo {
        flex: 0 0 140px;
        /* Fixed width for items */
        width: 140px;
        height: 80px;
        /* Fixed height */
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin: 0.5rem 0;
    }

    .partner-logo img {
        transform: scale(1);
        /* Reset scale */
        max-width: 80%;
        max-height: 80%;
    }
}

/* Partner Navigation - Arrows */
.partner-nav {
    display: none;
    /* Hidden by default (Desktop) */
}

/* Show arrows only on mobile when slider is active */
@media (max-width: 768px) {
    .partner-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background: white;
        border: 1px solid #eee;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 0.9rem;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .partner-nav:hover {
        background: #f8f9fa;
        color: #243E91;
    }

    .partner-nav.prev-btn {
        left: -10px;
    }

    .partner-nav.next-btn {
        right: -10px;
    }

    .partners-wrapper {
        padding: 0 10px;
        /* Add breathing room for outside arrows if needed, or overlay them */
    }
}

/* =====================================================
   FIX: MOBILE BLOG DETAIL LAYOUT
   ===================================================== */
@media (max-width: 900px) {

    /* Breadcrumb fixes */
    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .breadcrumb a,
    .breadcrumb span {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        font-size: 0.9rem;
        /* Slightly smaller on mobile */
    }

    .breadcrumb i {
        margin-right: 5px;
    }

    /* Content Main Layout Fixes */
    .blog-detail-container .container {
        padding: 0 1rem;
        /* Reduce padding on mobile */
    }

    .blog-detail-content {
        display: block;
        /* Ensure it stacks */
        width: auto;
        max-width: 100%;
    }

    .content-main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        /* Prevent horizontal overflow trigger */
    }

    /* Image & Iframe Auto-Resize */
    .article-content img,
    .article-content iframe,
    .article-content video,
    .featured-image-large img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        border-radius: 8px;
        /* Optional: adds rounded corners */
        box-shadow: none !important;
    }

    /* FIX: Remove bleeding effect to prevent overflow */
    .featured-image-large {
        margin: 0 0 1.5rem 0 !important;
        width: 100% !important;
        border-radius: 8px;
        overflow: hidden;
    }

    /* Ensure text breaks properly */
    .article-content {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Adjust Meta Info Alignment */
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .meta-left {
        width: 100%;
    }

    .author-info {
        margin-bottom: 1rem;
    }

    .meta-items {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .meta-items span {
        font-size: 0.85rem;
    }

    .meta-right {
        width: 100%;
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    .blog-detail-title {
        font-size: 1.8rem;
        /* Smaller title on mobile */
        line-height: 1.3;
    }

    /* Sidebar spacing */
    .content-sidebar {
        margin-top: 3rem;
        width: 100%;
    }
}