/* ========================================
   EZTrans Lombok - Main Stylesheet
   Palet Warna: #da251a, #383530, #d15d57, #d23a32, #585653, #cc4e49, #d06e67
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #da251a;
    --primary-dark: #d23a32;
    --primary-light: #d15d57;
    --primary-soft: #cc4e49;
    --primary-muted: #d06e67;
    --secondary: #383530;
    --secondary-light: #585653;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1280px;
    --container-padding: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--gray-100);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.logo p {
    font-size: 0.7rem;
    color: var(--secondary-light);
    margin: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* ========== SLIDER / CAROUSEL STYLES ========== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(218,37,26,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    font-size: 1.8rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .slider-container { height: 450px; }
    .slide-title { font-size: 2rem; }
    .slide-subtitle { font-size: 1rem; }
    .slider-btn { width: 35px; height: 35px; font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .slider-container { height: 380px; }
    .slide-title { font-size: 1.5rem; }
    .slide-subtitle { font-size: 0.85rem; }
    .slide-badge { font-size: 0.65rem; padding: 4px 12px; }
}

/* ========== UNIFORM IMAGE - TIDAK KEPOTONG ========== */
.car-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-img-uniform {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    transition: transform 0.5s ease;
    padding: 8px;
}

.car-card:hover .car-img-uniform {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .car-image-wrapper { height: 200px; }
    .car-img-uniform { padding: 6px; }
}

@media (max-width: 576px) {
    .car-image-wrapper { height: 180px; }
    .car-img-uniform { padding: 4px; }
}

/* ========== BADGE STYLES ========== */
.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 10;
    animation: promoPulse 1.5s infinite;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 10;
}

.type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 10;
}

@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== HARGA PROMO (CORET) ========== */
.price-original {
    text-decoration: line-through;
    font-size: 0.8rem;
    color: #999;
    margin-right: 8px;
}

.price-promo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-promo-small {
    font-size: 0.65rem;
    color: #22c55e;
    font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218,37,26,0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* ========== BOOKING ENGINE ========== */
.booking-engine {
    margin-top: -50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.btn-search {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    letter-spacing: 1px;
}

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

/* ========== CAR GRID ========== */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.car-info {
    padding: 20px;
}

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

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

/* ========== VALUE PROPOSITION ========== */
.value-props {
    padding: 40px 0;
    background: var(--white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.prop-card {
    text-align: center;
    padding: 30px 20px;
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

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

.prop-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.prop-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 30px 20px;
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    background: var(--gray-100);
}

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

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* ========== REQUIREMENTS SECTION ========== */
.requirements-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.requirement-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    font-size: 1rem;
}

.requirement-card ul {
    list-style: none;
    padding-left: 0;
}

.requirement-card li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.8rem;
    line-height: 1.4;
}

.requirement-card li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.85rem;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast);
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
    display: block;
    margin: 8px 0;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        background: var(--white);
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 24px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .car-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .price-box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .props-grid,
    .about-grid,
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .props-grid,
    .about-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== DETAIL MOBIL ========== */
.detail-breadcrumb {
    background: transparent;
    padding: 16px 0;
    margin-bottom: 20px;
}

.detail-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.gallery-main {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.gallery-main img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 20px;
}

.price-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin-bottom: 24px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
}

.spec-item {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.spec-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.spec-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218,37,26,0.3);
}


//tambahan untuk wa melayang 
/* ========== WHATSAPP FLOAT WITH POPUP & ANIMATION ========== */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Tombol WhatsApp dengan Animasi */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappFloatPulse 2s infinite;
}

/* Animasi Pulse (Berdenyut) */
@keyframes whatsappFloatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Animasi Rotate saat hover */
.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #20b85f 0%, #0e6b5e 100%);
    animation: none;
}

/* Animasi Klik (Ripple Effect) */
.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.whatsapp-float:active::before {
    width: 100px;
    height: 100px;
}

/* Badge Notifikasi */
.whatsapp-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 1s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Popup Container */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Popup Header */
.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54 0%, #054a42 100%);
    color: white;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-popup-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-header-icon {
    animation: headerIconRotate 0.5s ease;
}

@keyframes headerIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.whatsapp-popup-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-popup-close:hover {
    background: rgba(255,255,255,0.4);
    transform: rotate(90deg);
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 12px;
    background: #f8f9fa;
    max-height: 300px;
    overflow-y: auto;
}

/* Customer Service Item */
.whatsapp-cs {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.whatsapp-cs:last-child {
    margin-bottom: 0;
}

.whatsapp-cs:hover {
    transform: translateX(5px);
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.15);
}

/* Hover effect slide */
.whatsapp-cs::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(37,211,102,0.1), transparent);
    transition: width 0.3s;
}

.whatsapp-cs:hover::before {
    width: 100%;
}

/* Avatar CS */
.whatsapp-cs-avatar {
    width: 48px;
    height: 48px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-cs:hover .whatsapp-cs-avatar {
    transform: scale(1.1);
}

.stm-icon-wa {
    width: 28px;
    height: 28px;
    fill: #25D366;
}

/* Info CS */
.whatsapp-cs-info {
    flex: 1;
}

.whatsapp-cs-info strong {
    display: block;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.whatsapp-cs-info span {
    display: block;
    color: #6b7280;
    font-size: 11px;
    margin-bottom: 2px;
}

.whatsapp-cs-info small {
    display: block;
    color: #10b981;
    font-size: 10px;
    font-weight: 500;
}

/* Arrow */
.whatsapp-cs-arrow {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s;
}

.whatsapp-cs:hover .whatsapp-cs-arrow {
    transform: translateX(5px);
    color: #25D366;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 11px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 70px;
    }
    
    .whatsapp-cs {
        padding: 10px;
    }
    
    .whatsapp-cs-avatar {
        width: 40px;
        height: 40px;
    }
    
    .stm-icon-wa {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 576px) {
    .whatsapp-popup {
        width: 260px;
        right: -10px;
    }
}