/* RESET & BASE */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
    color:#1e293b;
}

/* NAVBAR */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 5%;
    position:fixed;
    width:100%;
    height: 80px;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:700;
    text-decoration: none;
    color: #1e293b;
    height: 100%;
}

.logo img{
    height: 50px;
    width: auto;
    object-fit: contain;
    border: none;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img{
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.logo span{
    color: #1e293b;
    white-space: nowrap;
}

.logo span b{
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#475569;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

.btn-nav{
    background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-nav:hover{
    transform:translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* HERO SECTION */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    padding:120px 5% 80px 5%;
    overflow:hidden;
}

.hero-bg-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.hero-bg-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
    background-size:cover;
    background-position:center;
}

.hero-bg-slide::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.5);
    z-index:1;
}

.hero-bg-slide.active{
    opacity:1;
}

/* Background images - ganti dengan URL gambar Anda */
.hero-bg-slide:nth-child(1){
    background-image: linear-gradient(135deg, rgba(102,126,234,0.85) 0%, rgba(118,75,162,0.85) 50%, rgba(240,147,251,0.85) 100%), 
                      url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1920');
}

.hero-bg-slide:nth-child(2){
    background-image: linear-gradient(135deg, rgba(124,58,237,0.85) 0%, rgba(168,85,247,0.85) 50%, rgba(192,132,252,0.85) 100%), 
                      url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1920');
}

.hero-bg-slide:nth-child(3){
    background-image: linear-gradient(135deg, rgba(236,72,153,0.85) 0%, rgba(244,114,182,0.85) 50%, rgba(251,113,133,0.85) 100%), 
                      url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920');
}

.hero-bg-slide:nth-child(4){
    background-image: linear-gradient(135deg, rgba(59,130,246,0.85) 0%, rgba(96,165,250,0.85) 50%, rgba(147,197,253,0.85) 100%), 
                      url('https://images.unsplash.com/photo-1488590528505-98d2b5aba04b?w=1920');
}

/* Slider Navigation */
.slider-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:15;
    background:rgba(255, 255, 255, 0.2);
    backdrop-filter:blur(10px);
    border:2px solid rgba(255, 255, 255, 0.3);
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all 0.3s ease;
    color:white;
    font-size:24px;
}

.slider-nav:hover{
    background:rgba(255, 255, 255, 0.3);
    transform:translateY(-50%) scale(1.1);
}

.slider-nav.prev{
    left:20px;
}

.slider-nav.next{
    right:20px;
}

/* Slider Indicators */
.slider-indicators{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:15;
}

.slider-indicator{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255, 255, 255, 0.4);
    cursor:pointer;
    transition:all 0.3s ease;
    border:2px solid rgba(255, 255, 255, 0.6);
}

.slider-indicator.active{
    background:white;
    width:30px;
    border-radius:10px;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
    top:-100px;
    right:-100px;
    border-radius:50%;
    animation:pulse 4s ease-in-out infinite;
    z-index:1;
}

.hero::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    bottom:-100px;
    left:-100px;
    border-radius:50%;
    animation:pulse 5s ease-in-out infinite;
    z-index:1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content{
    position:relative;
    z-index:10;
    max-width:850px;
    width:100%;
}

.hero-logo {
    width: clamp(180px, 30vw, 280px);
    max-width:90%;
    height: auto;
    margin-bottom: 30px;
    background: transparent;
    border: none;
    filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-content h1{
    font-size:clamp(32px, 5vw, 55px);
    font-weight:700;
    line-height: 1.2;
    color:white;
}

.hero-content h1 span{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p{
    margin:20px auto;
    font-size:clamp(16px, 2vw, 18px);
    color:#e0e7ff;
    max-width:600px;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-primary{
    background:white;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    color:#667eea;
    font-weight:600;
    display:inline-block;
    transition:0.3s;
}

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

.btn-secondary{
    border:2px solid white;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    color:white;
    font-weight:600;
    display:inline-block;
    transition:0.3s;
}

.btn-secondary:hover{
    background:white;
    color:#667eea;
    transform:translateY(-3px);
}

/* SECTIONS */
section{
    padding:80px 5%;
}

#services{
    background:linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    position:relative;
    overflow:hidden;
}

#services::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    top:-100px;
    right:-100px;
    border-radius:50%;
    animation:pulse 6s ease-in-out infinite;
}

#services::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
    bottom:-80px;
    left:-80px;
    border-radius:50%;
    animation:pulse 7s ease-in-out infinite;
}

#services .section-title{
    color:white;
    position:relative;
    z-index:2;
}

#services .section-title span{
    background: linear-gradient(135deg, #fbbf24 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title{
    text-align:center;
    font-size:clamp(28px, 4vw, 36px);
    margin-bottom:50px;
    color:#1e293b;
}

.section-title span{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.card{
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:20px;
    transition:all 0.3s ease;
    border:2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform:scaleX(0);
    transition:transform 0.3s ease;
}

.card:hover::before{
    transform:scaleX(1);
}

.card::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
    transition:left 0.5s ease;
}

.card:hover::after{
    left:100%;
}

.card:hover{
    border:2px solid rgba(102, 126, 234, 0.5);
    transform:translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background:white;
}

.card h3{
    margin-bottom:15px;
    color:#1e293b;
    font-size:20px;
}

.card p{
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}

/* CONTACT SECTION */
#contact{
    background:linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #06b6d4 100%);
    padding:80px 5%;
    position:relative;
    overflow:hidden;
}

#contact::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
    top:-100px;
    right:-100px;
    border-radius:50%;
    animation:pulse 6s ease-in-out infinite;
}

#contact::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle, rgba(16,185,129,0.3) 0%, transparent 70%);
    bottom:-80px;
    left:-80px;
    border-radius:50%;
    animation:pulse 7s ease-in-out infinite;
}

#contact h2{
    color:white !important;
    position:relative;
    z-index:2;
}

#contact h2 span{
    background: linear-gradient(135deg, #fbbf24 0%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#contact > p{
    color:#e0f2fe !important;
    position:relative;
    z-index:2;
}

.contact-container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    margin-top:50px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.contact-card{
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
    border:2px solid rgba(255, 255, 255, 0.3);
    transition:all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg, #10b981 0%, #14b8a6 50%, #06b6d4 100%);
}

.contact-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(16,185,129,0.1), transparent);
    transition:left 0.5s ease;
}

.contact-card:hover::after{
    left:100%;
}

.contact-card:hover{
    border:2px solid rgba(16, 185, 129, 0.5);
    transform:translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
    background:white;
}

.contact-card h3{
    margin-bottom:15px;
    color:#1e293b;
    font-size:20px;
}

.contact-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}

.btn-wa{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #06b6d4 100%);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-wa:hover{
    transform:translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.map-container iframe{
    width:100%;
    height:100%;
    min-height:400px;
    border-radius:20px;
    border:0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
footer{
    background:white;
    padding:60px 5% 20px 5%;
    border-top:1px solid #e2e8f0;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.footer-logo{
    margin-bottom: 5px;
    height: auto;
}

.footer-logo img{
    height: 60px;
    margin-top:0;
    position: static;
    transform: none;
}

.footer-logo span{
    margin-left:10px;
    color:#1e293b;
}

.footer-logo span b{
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

.footer-section h3{
    margin-bottom:15px;
    color:#1e293b;
}

.footer-section ul{
    list-style:none;
    color:#64748b;
    font-size:14px;
    line-height:28px;
}

.footer-section ul li a{
    color:#64748b;
    text-decoration:none;
    transition:0.3s;
}

.footer-section ul li a:hover{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-divider{
    border:0;
    border-top:1px solid #e2e8f0;
    margin-bottom:20px;
}

.footer-copyright{
    text-align:center;
    color:#94a3b8;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:900px){
    nav ul{
        display:none;
    }
    
    .contact-container{
        grid-template-columns:1fr;
    }
    
    .map-container iframe{
        min-height:300px;
    }
}

@media(max-width:768px){
    nav{
        padding:0 4%;
        height:70px;
    }
    
    .btn-nav{
        padding:8px 16px;
        font-size:14px;
    }
    
    .logo{
        font-size:16px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .slider-nav{
        width:40px;
        height:40px;
        font-size:20px;
    }
    
    .slider-nav.prev{
        left:10px;
    }
    
    .slider-nav.next{
        right:10px;
    }
    
    .slider-indicators{
        bottom:20px;
    }
    
    .slider-indicator{
        width:10px;
        height:10px;
    }
    
    .slider-indicator.active{
        width:25px;
    }
    
    .hero{
        padding:100px 5% 60px 5%;
    }
    
    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
    
    .btn-primary, .btn-secondary{
        width:100%;
        max-width:280px;
        text-align:center;
    }
    
    section{
        padding:60px 5%;
    }
    
    .cards{
        grid-template-columns:1fr;
        gap:20px;
    }
}

@media(max-width:480px){
    nav{
        height:65px;
    }
    
    .logo{
        font-size:14px;
    }
    
    .logo img{
        height:40px;
    }
    
    .btn-nav{
        padding:7px 14px;
        font-size:13px;
    }
    
    .slider-nav{
        width:35px;
        height:35px;
        font-size:18px;
    }
}


/* KEUNGGULAN SECTION */
.keunggulan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.keunggulan-card{
    background:rgba(255, 255, 255, 0.1);
    backdrop-filter:blur(10px);
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:all 0.4s ease;
    border:2px solid rgba(255, 255, 255, 0.2);
    position:relative;
    overflow:hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.keunggulan-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition:left 0.5s ease;
}

.keunggulan-card:hover::before{
    left:100%;
}

.keunggulan-card:hover{
    transform:translateY(-10px);
    border:2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background:rgba(255, 255, 255, 0.15);
}

.keunggulan-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.keunggulan-card:hover .keunggulan-icon{
    transform:rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.7);
}

.keunggulan-card h3{
    color:white;
    font-size:20px;
    margin-bottom:15px;
    font-weight:600;
}

.keunggulan-card p{
    color:#e0e7ff;
    font-size:14px;
    line-height:1.7;
}

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


/* PORTFOLIO SECTION */
#portfolio{
    background:linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    position:relative;
    overflow:hidden;
}

#portfolio::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(240,147,251,0.3) 0%, transparent 70%);
    top:-150px;
    left:-150px;
    border-radius:50%;
    animation:pulse 6s ease-in-out infinite;
}

#portfolio::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    bottom:-100px;
    right:-100px;
    border-radius:50%;
    animation:pulse 7s ease-in-out infinite;
}

#portfolio .section-title{
    color:white;
    position:relative;
    z-index:2;
}

#portfolio .section-title span{
    background: linear-gradient(135deg, #fbbf24 0%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.portfolio-item{
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:20px;
    transition:all 0.4s ease;
    border:2px solid rgba(255, 255, 255, 0.3);
    position:relative;
    overflow:hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg, #fbbf24 0%, #f093fb 50%, #667eea 100%);
}

.portfolio-item::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(251,191,36,0.15), transparent);
    transition:left 0.6s ease;
}

.portfolio-item:hover::after{
    left:100%;
}

.portfolio-item:hover{
    transform:translateY(-10px);
    border:2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    background:white;
}

.portfolio-item h3{
    color:#1e293b;
    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
    position:relative;
    z-index:2;
}

.portfolio-item p{
    color:#64748b;
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.portfolio-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    background:linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
    transition:all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    position:relative;
    z-index:2;
}

.portfolio-link:hover{
    transform:translateX(5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
}

.portfolio-link svg{
    transition:transform 0.3s ease;
}

.portfolio-link:hover svg{
    transform:translateX(5px);
}

@media(max-width:768px){
    .portfolio-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    
    .portfolio-item{
        padding:25px;
    }
}


/* TESTIMONI SECTION */
.testimoni-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.testimoni-card{
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
    transition:all 0.4s ease;
    border:2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position:relative;
    overflow:hidden;
}

.testimoni-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
}

.testimoni-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(251,191,36,0.1), transparent);
    transition:left 0.5s ease;
}

.testimoni-card:hover::after{
    left:100%;
}

.testimoni-card:hover{
    transform:translateY(-10px);
    border:2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
    background:white;
}

.testimoni-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.testimoni-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:700;
    font-size:20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink:0;
}

.testimoni-info h4{
    color:#1e293b;
    font-size:18px;
    margin-bottom:5px;
    font-weight:600;
}

.testimoni-info p{
    color:#64748b;
    font-size:14px;
    margin:0;
}

.testimoni-rating{
    font-size:18px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.testimoni-text{
    color:#475569;
    font-size:15px;
    line-height:1.7;
    font-style:italic;
    position:relative;
    z-index:2;
    margin:0;
}

.btn-testimoni{
    display:inline-block;
    padding:14px 35px;
    background:white;
    color:#f97316;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    transition:all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border:2px solid white;
}

.btn-testimoni:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    background:linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color:white;
}

@media(max-width:768px){
    .testimoni-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    
    .testimoni-card{
        padding:25px;
    }
    
    .testimoni-avatar{
        width:50px;
        height:50px;
        font-size:18px;
    }
}


/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:9999;
}

.whatsapp-button{
    width:60px;
    height:60px;
    background:linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor:pointer;
    transition:all 0.3s ease;
    animation:pulse-wa 2s ease-in-out infinite;
    position:relative;
}

.whatsapp-button::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(37, 211, 102, 0.3);
    animation:ripple 2s ease-out infinite;
}

.whatsapp-button:hover{
    transform:scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg{
    width:32px;
    height:32px;
    fill:white;
    position:relative;
    z-index:2;
}

.whatsapp-tooltip{
    position:absolute;
    right:75px;
    top:50%;
    transform:translateY(-50%);
    background:white;
    padding:12px 20px;
    border-radius:25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:all 0.3s ease;
    font-weight:600;
    color:#128C7E;
    font-size:14px;
}

.whatsapp-tooltip::after{
    content:"";
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    width:0;
    height:0;
    border-left:8px solid white;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
}

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

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

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media(max-width:768px){
    .whatsapp-float{
        bottom:20px;
        right:20px;
    }
    
    .whatsapp-button{
        width:55px;
        height:55px;
    }
    
    .whatsapp-button svg{
        width:28px;
        height:28px;
    }
    
    .whatsapp-tooltip{
        display:none;
    }
}
