/* ==========================================================================
   CSS DIRECTORY & VARIABLES SETUP
   ========================================================================== */
:root {
    /* Color Palette - Bright Premium Light Mode */
    --primary: #0d9488;          /* Teal */
    --primary-dark: #0f766e;     /* Deep Teal */
    --primary-light: #f0fdfa;    /* Soft Teal tint */
    --accent: #eab308;           /* Gold/Amber */
    --accent-dark: #ca8a04;      /* Gold/Amber dark */
    --accent-light: #fef9c3;     /* Soft Gold tint */
    --dark: #0f172a;             /* Slate 900 */
    --light: #f8fafc;            /* Slate 50 */
    --light-gray: #f1f5f9;       /* Slate 100 */
    --border: #e2e8f0;           /* Slate 200 */
    --white: #ffffff;
    --text-main: #1e293b;        /* Slate 800 */
    --text-muted: #64748b;       /* Slate 500 */
    --danger: #ef4444;           /* Coral red */
    --success: #22c55e;          /* Emerald green */
    --info: #0ea5e9;             /* Sky blue */
    
    /* Shadows */
    --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 24px 48px -8px rgba(15, 23, 42, 0.12), 0 8px 24px -4px rgba(15, 23, 42, 0.06);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 30px;
    --radius-round: 50%;
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--light);
}

/* UTILITY BUTTONS & TYPOGRAPHY */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px 0 rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.text-teal {
    color: var(--primary);
}

.text-gold {
    color: var(--accent);
}

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

/* SECTION HEADERS */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.65rem;
    color: var(--primary);
    transform: rotate(-5deg);
}

.logo-accent {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(234, 179, 8, 0.06), transparent 50%),
                var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* HERO SEARCH PORTAL */
.hero-search-portal {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

.portal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.portal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.form-control:focus {
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* ==========================================================================
   COMPANY PROFILE SECTION
   ========================================================================== */
.profil-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
}

.profil-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.profil-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.profil-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vm-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vm-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.vm-icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.vm-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.vm-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.profil-features {
    background-color: var(--light);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.25rem;
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--primary);
    background-color: var(--primary-light);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.feature-desc h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.feature-desc p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ARMADA CATALOGUE & GALLERY
   ========================================================================== */
.filter-controls-container {
    max-width: 850px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Search Bar in Fleet */
.search-box-wrapper {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: var(--transition);
}

.search-box-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.search-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-right: 0.75rem;
}

.fleet-search-input {
    width: 100%;
    padding: 1.1rem 0;
    font-weight: 500;
    color: var(--dark);
}

.clear-search-btn {
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
}

.clear-search-btn:hover {
    background-color: var(--light-gray);
    color: var(--dark);
}

/* Category Filter Pills */
.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-pill {
    padding: 0.65rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.filter-pill:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.filter-pill.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(13, 148, 136, 0.25);
}

/* Fleet Cards Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.25rem;
    transition: var(--transition);
}

/* Fleet Card Component */
.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.7);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-bounce);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(13, 148, 136, 0.3);
}

.fleet-card-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.fleet-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-img-wrapper img {
    transform: scale(1.08);
}

.fleet-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary);
    border-radius: var(--radius-sm);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.fleet-tag.offroad { background-color: #f97316; } /* Orange */
.fleet-tag.family { background-color: #6366f1; }   /* Indigo */
.fleet-tag.bus { background-color: #ec4899; }      /* Pink */
.fleet-tag.minibus { background-color: #06b6d4; }  /* Cyan */

.fleet-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.fleet-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.star-group {
    color: var(--accent);
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 1.5rem;
}

.spec-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.spec-detail i {
    font-size: 1rem;
    color: var(--primary);
}

.fleet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
}

.fleet-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-book-wa {
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    background-color: #25d366; /* WhatsApp Green */
    color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-md);
}

.btn-book-wa:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px 0 rgba(37, 211, 102, 0.35);
}

/* Empty Search Result Style */
.empty-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimoni-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: var(--transition);
}

.testi-card {
    background-color: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testi-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.testi-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 1.25rem;
    margin-top: auto;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.user-avatar.bg-teal { background-color: var(--primary); }
.user-avatar.bg-amber { background-color: var(--accent); }
.user-avatar.bg-blue { background-color: var(--info); }

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 25px;
    background-color: var(--primary);
    border-radius: 5px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-trigger {
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
    background-color: var(--primary-light);
    border-top: 0px solid transparent;
}

.faq-item.active .faq-content {
    max-height: 300px; /* high enough for typical text size */
    opacity: 1;
    padding: 1.5rem;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.faq-content p {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT & MAPS SECTION
   ========================================================================== */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.kontak-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.kontak-desc {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    gap: 1.25rem;
}

.info-card-icon {
    font-size: 1.35rem;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.info-card-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.info-card-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.social-wrapper h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: var(--light-gray);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Google Maps Container */
.kontak-maps-column {
    min-height: 400px;
}

.maps-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background-color: var(--light-gray);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark);
    color: var(--light-gray);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: #94a3b8; /* Tailwind slate-400 */
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-trust-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-trust-badge i {
    font-size: 1.5rem;
    margin-top: 0.15rem;
}

.footer-trust-badge h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-trust-badge p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #64748b;
}

.text-red {
    color: #ef4444;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.wa-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.wa-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    background-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px 0 rgba(37, 211, 102, 0.35);
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: var(--transition-bounce);
}

.wa-trigger-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px 0 rgba(37, 211, 102, 0.45);
}

.wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-round);
    border: 3px solid #25d366;
    opacity: 0.8;
    pointer-events: none;
    animation: wa-pulse-ani 1.5s infinite;
}

.wa-badge-notif {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background-color: var(--danger);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

@keyframes wa-pulse-ani {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Form Panel */
.wa-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    z-index: 9;
}

.wa-chat-box.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.wa-chat-header {
    background-color: #075e54; /* Classic WA Deep Green */
    padding: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-cs-profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.wa-cs-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
}

.wa-status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    background-color: #4ade80; /* bright green */
    border-radius: var(--radius-round);
    border: 2px solid #075e54;
}

.wa-cs-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.wa-cs-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-close-btn {
    font-size: 1.15rem;
    color: var(--white);
    cursor: pointer;
    opacity: 0.8;
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-chat-body {
    padding: 1.25rem;
    background-color: #efeae2; /* WhatsApp background cream pattern */
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    max-height: 420px;
    overflow-y: auto;
}

/* Chat bubble styling */
.chat-bubble {
    padding: 0.85rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    position: relative;
    max-width: 85%;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.chat-bubble.admin {
    background-color: var(--white);
    border-top-left-radius: 2px;
    color: var(--text-main);
    align-self: flex-start;
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.35rem;
}

/* Form in WA Widget */
.wa-quick-form {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wa-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wa-form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.wa-form-control {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.wa-form-control:focus {
    border-color: #075e54;
    box-shadow: 0 0 0 3px rgba(7, 94, 84, 0.15);
}

.btn-wa-submit {
    background-color: #25d366;
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
}

.btn-wa-submit:hover {
    background-color: #128c7e;
}

/* ==========================================================================
   TOAST NOTIFICATION ENGINE STYLING
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background-color: var(--white);
    border-left: 5px solid var(--primary);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    font-size: 0.9rem;
    pointer-events: auto;
    transform: translateX(-120%);
    opacity: 0;
    animation: toast-slide-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-icon {
    font-size: 1.15rem;
}

.toast-success {
    border-left-color: var(--success);
}
.toast-success .toast-icon {
    color: var(--success);
}

.toast-info {
    border-left-color: var(--info);
}
.toast-info .toast-icon {
    color: var(--info);
}

.toast.removing {
    transform: translateX(-120%);
    opacity: 0;
}

@keyframes toast-slide-in {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==========================================================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-search-portal {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    
    .profil-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .kontak-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .kontak-maps-column {
        min-height: 350px;
    }
    
    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testi-card:nth-child(3) {
        display: none; /* Hide 3rd card on tablet for balance */
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-container > div:last-child {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        z-index: 998;
        transition: var(--transition);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-nav-cta {
        display: none; /* Hide top CTA on mobile */
    }
    
    .testimoni-grid {
        grid-template-columns: 1fr;
    }
    
    .testi-card:nth-child(3) {
        display: flex;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container > div:last-child {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .wa-chat-box {
        width: 320px;
        right: -10px;
    }
    
    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .toast {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-pills {
        gap: 0.5rem;
    }
    
    .filter-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .wa-widget {
        bottom: 1rem;
        right: 1rem;
    }
}
