/**
 * Main Stylesheet
 * File: assets/css/style.css
 */

/* ===== Variables ===== */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #5a67d8;
    --dark-color: #1A1A1A;
    --light-color: #F5F7FA;
    --white-color: #FFFFFF;
    --gray-color: #6C757D;
    --gray-light: #E9ECEF;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    --border-radius: 12px;
    --box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(102, 126, 234, 0.2);
    
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* ===== Stats Counter Section ===== */
.stats-counter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-counter-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.stats-counter-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats-counter-section .stat-item {
    padding: 20px;
}

.stats-counter-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white-color);
    line-height: 1;
}

.stats-counter-section .stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-counter-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-counter-section .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .hero-stat-item {
        text-align: center !important;
    }
    
    .stats-counter-section .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    
    .logo img {
        max-height: 60px !important;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .page-title {
        font-size: 1.75rem !important;
    }
    
    .portfolio-detail-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .portfolio-detail-image {
        position: relative !important;
        top: 0 !important;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(102, 126, 234, 0.2) 15%, 
        rgba(102, 126, 234, 0.4) 30%, 
        rgba(102, 126, 234, 0.5) 50%, 
        rgba(102, 126, 234, 0.4) 70%, 
        rgba(102, 126, 234, 0.2) 85%, 
        transparent 100%);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 10;
    position: relative;
    font-size: 1.2rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-nav-btn:hover:not(:disabled) {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2, #667eea);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-nav-btn:active:not(:disabled) {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== Testimonial Refresh & Themes ===== */
.testimonials-section {
    --testimonial-bg: #ffffff;
    --testimonial-border: rgba(102, 126, 234, 0.15);
    --testimonial-text: #0f172a;
    --testimonial-subtext: #5c6685;
    --testimonial-accent: #667eea;
    --testimonial-chip-bg: rgba(102, 126, 234, 0.12);
    --testimonial-chip-text: #374151;
    --testimonial-score-bg: rgba(102, 126, 234, 0.12);
    --testimonial-quote-bg: #f5f7ff;
    --testimonial-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.testimonials-theme-minimal {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    --testimonial-bg: #ffffff;
    --testimonial-border: rgba(15, 23, 42, 0.06);
    --testimonial-subtext: #6b7280;
    --testimonial-accent: #0ea5e9;
    --testimonial-chip-bg: rgba(14, 165, 233, 0.12);
    --testimonial-score-bg: rgba(14, 165, 233, 0.12);
}

.testimonials-theme-glass {
    background: radial-gradient(circle at 20% 20%, #e0e7ff 0%, #f8f9ff 50%, #ffffff 100%);
    --testimonial-bg: rgba(255, 255, 255, 0.85);
    --testimonial-border: rgba(255, 255, 255, 0.3);
    --testimonial-shadow: 0 30px 65px rgba(79, 97, 200, 0.18);
    backdrop-filter: blur(10px);
}

.testimonials-theme-dark {
    background: radial-gradient(circle at 25% 20%, #1d2b64, #101828 70%);
    --testimonial-bg: rgba(15, 23, 42, 0.92);
    --testimonial-border: rgba(96, 165, 250, 0.25);
    --testimonial-text: #f8fafc;
    --testimonial-subtext: rgba(226, 232, 240, 0.9);
    --testimonial-accent: #60a5fa;
    --testimonial-chip-bg: rgba(96, 165, 250, 0.15);
    --testimonial-chip-text: rgba(248, 250, 252, 0.85);
    --testimonial-score-bg: rgba(96, 165, 250, 0.18);
    --testimonial-quote-bg: rgba(255, 255, 255, 0.08);
    --testimonial-shadow: 0 30px 60px rgba(2, 6, 23, 0.7);
}

.testimonials-section .testimonials-grid {
    gap: 30px;
}

.testimonials-section .testimonial-card {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    height: 100%;
}

.testimonials-section .testimonial-card::before,
.testimonials-section .testimonial-card::after {
    display: none;
}

.testimonial-card-frame {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.testimonial-card-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.04) 0%,
        rgba(139, 92, 246, 0.06) 50%,
        rgba(99, 102, 241, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                0 16px 56px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
}

.testimonial-card-frame:hover::before {
    opacity: 1;
}

.testimonials-section[data-layout="carousel"] .testimonial-card.is-active .testimonial-card-frame {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18),
                0 16px 56px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.testimonials-section[data-layout="carousel"] .testimonial-card.is-active .testimonial-card-frame::before {
    opacity: 1;
}

.testimonial-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.testimonial-avatar-box {
    position: relative;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                0 2px 8px rgba(99, 102, 241, 0.15);
    border: 4px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.2) 0%,
        rgba(139, 92, 246, 0.1) 40%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.testimonial-card-frame:hover .testimonial-avatar {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(99, 102, 241, 0.25);
    border-color: rgba(255, 255, 255, 1);
}

.testimonial-card-frame:hover .testimonial-avatar::before {
    opacity: 1;
}

.testimonial-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.testimonial-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.testimonial-info-main {
    flex: 1;
    min-width: 0;
}


.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #0f172a;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.01em;
}

.testimonial-position {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
}

.testimonial-rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-stars i {
    font-size: 0.9375rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-stars i.active {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
    transform: scale(1.1);
}

.testimonial-card-frame:hover .testimonial-stars i.active {
    transform: scale(1.15);
    filter: drop-shadow(0 3px 6px rgba(251, 191, 36, 0.5));
}

.testimonial-score {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #6366f1;
    background: linear-gradient(135deg, #eef2ff 0%, #ede9fe 100%);
    padding: 4px 12px;
    border-radius: 12px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-frame:hover .testimonial-score {
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.testimonial-card-body {
    position: relative;
    padding: 0;
}

.testimonial-card-body {
    position: relative;
    z-index: 1;
}

.testimonial-card-body blockquote {
    margin: 0;
    padding: 0;
    color: #334155;
    font-size: 0.96875rem;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    font-style: normal;
    position: relative;
}
.testimonial-card-body blockquote p {
    margin-bottom: 0.75rem;
}
.testimonial-card-body blockquote p:last-child {
    margin-bottom: 0;
}
.testimonial-card-body blockquote strong {
    font-weight: 700;
    color: #1f2a44;
}
.testimonial-card-body blockquote em {
    font-style: italic;
}
.testimonial-card-body blockquote ul, .testimonial-card-body blockquote ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    text-align: left;
}
.testimonial-card-body blockquote li {
    margin-bottom: 0.4rem;
}
.testimonial-card-body blockquote a {
    color: #667eea;
    text-decoration: underline;
}

.testimonial-card-footer {
    margin-top: auto;
    padding-top: 4px;
}

.testimonial-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.testimonial-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 14px;
    font-size: 0.78125rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-chip i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.testimonial-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
}

.testimonial-chip-company {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-color: #93c5fd;
}

.testimonial-chip-position {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #374151;
    border-color: #d1d5db;
}

.testimonial-chip-verified {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.testimonial-chip-verified:hover {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Avatar wrapper sudah didefinisi di atas, hapus duplikat */

.testimonial-badge {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 14px;
    color: #6366f1;
    background: linear-gradient(135deg, #eef2ff 0%, #ede9fe 100%);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.testimonial-badge i {
    font-size: 0.625rem;
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.testimonial-card-frame:hover .testimonial-badge {
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.testimonials-theme-dark .testimonial-badge {
    background: rgba(96, 165, 250, 0.2);
    color: #bfdbfe;
}


.testimonials-section[data-layout="carousel"] .testimonials-container {
    padding: 10px clamp(16px, 4vw, 80px) 45px;
    position: relative;
}

.testimonials-section[data-layout="carousel"] .testimonials-grid {
    padding: 20px clamp(12px, 6vw, 80px) 40px;
    gap: 32px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 8%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.5) 92%, transparent 100%);
}

.testimonials-section[data-layout="carousel"] .testimonial-card,
.testimonials-section[data-layout="carousel"] .testimonial-card-clone {
    flex: 0 0 min(520px, 82vw);
    max-width: 520px;
    min-width: min(420px, 86vw);
    scroll-snap-align: center;
    margin-bottom: 25px;
}

.testimonials-section[data-layout="carousel"] .testimonial-card:not(.is-active) .testimonial-card-frame {
    transform: scale(0.96);
    opacity: 0.7;
    border-color: rgba(226, 232, 240, 0.6);
}

.testimonials-section[data-layout="carousel"] .testimonial-card:not(.is-active) .testimonial-card-frame::before {
    opacity: 0;
}


.testimonials-section[data-layout="carousel"] .testimonials-navigation {
    gap: 28px;
}

.testimonials-section[data-layout="carousel"] .testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 56px;
    height: 56px;
    backdrop-filter: blur(8px);
}

.testimonials-section[data-layout="carousel"] .testimonial-nav-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-color: transparent;
}

.testimonials-section[data-layout="carousel"] .testimonials-dots {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.testimonials-section[data-layout="carousel"] .testimonial-dot {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.4);
}

.testimonials-section[data-layout="carousel"] .testimonial-dot.active {
    background: #fbbf24;
    border-color: #fbbf24;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.testimonials-section[data-layout="slide"] .testimonials-grid {
    padding-bottom: 30px;
}

@media (max-width: 1023px) {
    .testimonials-section[data-layout="carousel"] .testimonials-grid {
        padding-left: clamp(16px, 6vw, 60px);
        padding-right: clamp(16px, 6vw, 60px);
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="carousel"] .testimonial-card-clone {
        min-width: min(360px, 90vw);
        max-width: 460px;
    }
}

@media (max-width: 767px) {
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="carousel"] .testimonial-card-clone {
        min-width: min(320px, 92vw);
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-dots {
        padding: 8px 12px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-nav-btn {
        width: 48px;
        height: 48px;
    }
}

.testimonials-theme-dark .testimonial-quote-icon {
    color: rgba(148, 163, 184, 0.45);
}

.testimonials-section[data-layout="carousel"] .testimonial-card,
.testimonials-section[data-layout="slide"] .testimonial-card {
    margin-top: 0;
    min-width: 320px;
}

/* Responsive untuk card testimoni */
@media (max-width: 768px) {
    .testimonial-card-frame {
        padding: 24px 20px 20px;
        gap: 18px;
    }
    
    .testimonial-card-header {
        gap: 14px;
    }
    
    .testimonial-avatar {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }
    
    .testimonial-avatar-placeholder {
        font-size: 1.5rem;
    }
    
    .testimonial-badge {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
    
    .testimonial-name {
        font-size: 1.05rem;
    }
    
    .testimonial-position {
        font-size: 0.8125rem;
    }
    
    .testimonial-stars i {
        font-size: 0.8125rem;
    }
    
    .testimonial-score {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
    
    .testimonial-card-body blockquote {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
    
    .testimonial-chip {
        font-size: 0.6875rem;
        padding: 4px 9px;
    }
}

@media (max-width: 575px) {
    .testimonial-card-frame {
        padding: 20px 18px 18px;
        gap: 16px;
        border-radius: 16px;
    }
    
    .testimonial-card-header {
        gap: 12px;
    }
    
    .testimonial-avatar {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    
    .testimonial-avatar-placeholder {
        font-size: 1.375rem;
    }
    
    .testimonial-badge {
        font-size: 0.5625rem;
        padding: 3px 7px;
        gap: 3px;
    }
    
    .testimonial-badge i {
        font-size: 0.55rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .testimonial-position {
        font-size: 0.75rem;
    }
    
    .testimonial-rating-section {
        gap: 6px;
    }
    
    .testimonial-stars {
        gap: 2px;
    }
    
    .testimonial-stars i {
        font-size: 0.75rem;
    }
    
    .testimonial-score {
        font-size: 0.6875rem;
        padding: 2px 7px;
    }
    
    .testimonial-card-body blockquote {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .testimonial-chips {
        gap: 5px;
    }
    
    .testimonial-chip {
        font-size: 0.625rem;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .testimonial-chip i {
        font-size: 0.625rem;
    }
    
    .testimonial-chip span {
        max-width: 100px;
    }
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* ===== CAROUSEL LAYOUT - ENHANCED DESIGN ===== */
.testimonials-section[data-layout="carousel"] .testimonials-container,
.testimonials-section[data-layout="slide"] .testimonials-container {
    overflow: visible;
    padding: 20px clamp(16px, 4vw, 80px) 50px;
    width: 100%;
    position: relative;
}

.testimonials-section[data-layout="carousel"] .testimonials-grid,
.testimonials-section[data-layout="slide"] .testimonials-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px clamp(8px, 6vw, 80px) 40px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    scroll-behavior: smooth;
    width: 100%;
    align-items: stretch;
    box-sizing: border-box;
    will-change: scroll-position;
    /* Gradient mask untuk efek fade di edges */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%
    );
}

.testimonials-section[data-layout="carousel"] .testimonials-grid::-webkit-scrollbar,
.testimonials-section[data-layout="slide"] .testimonials-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.testimonials-section[data-layout="carousel"] .testimonial-card,
.testimonials-section[data-layout="slide"] .testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    min-width: 380px;
    max-width: 420px;
    scroll-snap-align: center;
    margin-top: 0;
    box-sizing: border-box;
    height: auto;
    flex-shrink: 0;
    cursor: grab;
}

.testimonials-section[data-layout="carousel"] .testimonial-card:active {
    cursor: grabbing;
}

.testimonials-section[data-layout="carousel"] .testimonial-card-clone,
.testimonials-section[data-layout="slide"] .testimonial-card-clone {
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    min-width: 380px;
    max-width: 420px;
    scroll-snap-align: center;
    margin-top: 0;
    box-sizing: border-box;
    height: auto;
    flex-shrink: 0;
}

/* Responsive Carousel */
@media (max-width: 1023px) {
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="slide"] .testimonial-card,
    .testimonials-section[data-layout="carousel"] .testimonial-card-clone,
    .testimonials-section[data-layout="slide"] .testimonial-card-clone {
        flex: 0 0 calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
        min-width: 340px;
        max-width: 100%;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-container,
    .testimonials-section[data-layout="slide"] .testimonials-container {
        padding: 15px clamp(12px, 3vw, 60px) 40px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-grid,
    .testimonials-section[data-layout="slide"] .testimonials-grid {
        padding: 15px clamp(6px, 4vw, 60px) 30px;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="slide"] .testimonial-card,
    .testimonials-section[data-layout="carousel"] .testimonial-card-clone,
    .testimonials-section[data-layout="slide"] .testimonial-card-clone {
        flex: 0 0 calc(100% - 32px);
        width: calc(100% - 32px);
        min-width: 300px;
        max-width: 100%;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-container,
    .testimonials-section[data-layout="slide"] .testimonials-container {
        padding: 12px 16px 35px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-grid,
    .testimonials-section[data-layout="slide"] .testimonials-grid {
        padding: 12px 16px 25px;
        gap: 20px;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .testimonial-card-frame {
        padding: 24px 20px 20px;
    }
    
    .testimonial-card-header {
        gap: 16px;
    }
    
    .testimonial-avatar-wrapper {
        width: 72px;
        height: 72px;
    }
    
    .testimonial-avatar {
        width: 64px;
        height: 64px;
    }
    
    .testimonial-name {
        font-size: 1.05rem;
    }
    
    .testimonial-position {
        font-size: 0.9rem;
    }
    
    .testimonial-card-body blockquote {
        font-size: 0.98rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="slide"] .testimonial-card,
    .testimonials-section[data-layout="carousel"] .testimonial-card-clone,
    .testimonials-section[data-layout="slide"] .testimonial-card-clone {
        min-width: 280px;
        margin-left: 12px;
        margin-right: 12px;
    }
    
    .testimonial-card-frame {
        padding: 20px 18px 18px;
        border-radius: 20px;
    }
    
    .testimonial-avatar-wrapper {
        width: 68px;
        height: 68px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 60px 35px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 45px;
    will-change: transform;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Modern testimonial refresh */
.testimonial-card {
    margin-top: 0;
    padding: 32px 32px 28px;
    border-radius: 24px;
    border: 1px solid rgba(102, 126, 234, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.testimonial-card::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    width: 4px;
    transform-origin: left center;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.testimonial-info {
    width: 100%;
    text-align: left;
}

.testimonial-avatar-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 86px;
    height: 86px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonial-avatar {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: none;
    box-shadow: 0 12px 25px rgba(31, 45, 91, 0.15);
    transition: all 0.3s ease;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    color: #6366f1;
    font-size: 1.875rem;
    transition: all 0.3s ease;
}

.testimonial-card-frame:hover .testimonial-avatar-placeholder {
    background: linear-gradient(135deg, #c7d2fe 0%, #c4b5fd 100%);
    color: #4f46e5;
}

.testimonial-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.testimonial-position {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.4;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.testimonial-rating i {
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: color 0.2s ease, transform 0.2s ease;
}

.testimonial-rating i.active {
    color: #f8c102;
    text-shadow: 0 4px 12px rgba(248, 193, 2, 0.35);
    transform: translateY(-1px);
}

.testimonial-quote-icon {
    margin-left: auto;
    font-size: 2.4rem;
    color: rgba(102, 126, 234, 0.25);
    opacity: 1;
    position: static;
    line-height: 1;
}

.testimonial-body {
    margin-top: 18px;
}

.testimonial-content {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #1f2a44;
}

.testimonial-footer {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: #1f2a44;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-chip i {
    font-size: 0.9rem;
}

.testimonial-chip-accent {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-card,
    .testimonials-section[data-layout="slide"] .testimonial-card {
        width: calc(100% - 20px) !important;
        min-width: 280px !important;
        max-width: 100% !important;
    }
    
    .testimonials-navigation {
        margin-top: 30px;
        gap: 15px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
}

/* ===== Testimonials Layout: Grid (Kotak Standar) - Enhanced ===== */
.testimonials-section[data-layout="grid"] .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    align-items: start;
}

.testimonials-section[data-layout="grid"] .testimonial-card {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .testimonials-section[data-layout="grid"] .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section[data-layout="grid"] .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Carousel layout - clean design */

/* Ensure avatar is circular in all layouts */
.testimonial-avatar,
.testimonials-section[data-layout="carousel"] .testimonial-avatar,
.testimonials-section[data-layout="slide"] .testimonial-avatar {
    border-radius: 50% !important;
}

.testimonials-section[data-layout="carousel"] .testimonial-content {
    flex: 1;
    padding: 0;
    text-align: left;
}

.testimonials-section[data-layout="carousel"] .testimonial-text {
    font-size: 1.12rem;
    line-height: 2;
    color: #1f2a44;
    margin-bottom: 26px;
}

.testimonials-section[data-layout="carousel"] .testimonial-info {
    padding: 10px 0 0;
    text-align: left;
}

.testimonials-section[data-layout="carousel"] .testimonial-name {
    font-size: 1.2rem;
    color: #1b2551;
}

.testimonials-section[data-layout="carousel"] .testimonial-position {
    color: #5c6a88;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
}

.testimonials-section[data-layout="carousel"] .testimonial-quote-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 2.7rem;
    color: rgba(102, 126, 234, 0.25);
}

.testimonials-section[data-layout="carousel"] .testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 52px;
}

.testimonials-section[data-layout="carousel"] .testimonial-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.35);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-section[data-layout="carousel"] .testimonial-nav-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 35px rgba(102, 126, 234, 0.45);
}

.testimonials-section[data-layout="carousel"] .testimonials-dots {
    gap: 12px;
}

.testimonials-section[data-layout="carousel"] .testimonial-dot {
    width: 14px;
    height: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.testimonials-section[data-layout="carousel"] .testimonial-dot.active {
    background: linear-gradient(135deg, #ffd166, #fca311);
    transform: scale(1.4);
}

@media (max-width: 1200px) {
    .testimonials-section[data-layout="carousel"] .testimonials-grid {
        padding: 0 12px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-card {
        padding: 40px 35px;
        gap: 36px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar {
        width: 138px !important;
        height: 138px !important;
        min-width: 138px !important;
        min-height: 138px !important;
    }
}

@media (max-width: 900px) {
    .testimonials-section[data-layout="carousel"] {
        padding: 70px 0;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-card {
        flex-direction: column;
        padding: 38px 32px;
        gap: 24px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar-wrapper {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar {
        width: 138px !important;
        height: 138px !important;
    }
}

@media (max-width: 768px) {
    .testimonials-section[data-layout="carousel"] .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-grid {
        padding: 0 8px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-card {
        padding: 34px 24px;
        gap: 20px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-avatar {
        width: 118px !important;
        height: 118px !important;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonials-navigation {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 540px) {
    .testimonials-section[data-layout="carousel"] .testimonial-card {
        padding: 30px 20px 24px;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-section[data-layout="carousel"] .testimonial-nav-btn {
        width: 48px;
        height: 48px;
    }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section Divider ===== */
.section-divider {
    height: 1.5px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(102, 126, 234, 0.15) 10%, 
        rgba(102, 126, 234, 0.3) 25%, 
        rgba(102, 126, 234, 0.45) 40%, 
        rgba(102, 126, 234, 0.5) 50%, 
        rgba(102, 126, 234, 0.45) 60%, 
        rgba(102, 126, 234, 0.3) 75%, 
        rgba(102, 126, 234, 0.15) 90%, 
        transparent 100%);
    margin: 45px 0;
    border: none;
    position: relative;
    overflow: visible;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4), 0 0 15px rgba(102, 126, 234, 0.2);
    z-index: 1;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== Section ===== */
.section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.section-badge {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    vertical-align: middle;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
/* Styling for WYSIWYG content in section subtitles */
.section-subtitle p {
    margin-bottom: 0.5rem;
}
.section-subtitle p:last-child {
    margin-bottom: 0;
}
.section-subtitle strong {
    font-weight: 700;
    color: #2d3748;
}
.section-subtitle em {
    font-style: italic;
}
.section-subtitle u {
    text-decoration: underline;
}
.section-subtitle s {
    text-decoration: line-through;
}
.section-subtitle ul, .section-subtitle ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}
.section-subtitle li {
    margin-bottom: 0.3rem;
}
.section-subtitle a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s;
}
.section-subtitle a:hover {
    color: #5568d3;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white-color);
    border-color: transparent;
}

.btn-light {
    background-color: var(--white-color);
    color: #667eea;
    border: 2px solid var(--white-color);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline-light:hover {
    background-color: var(--white-color);
    color: #667eea;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(102, 126, 234, 0.12);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.15);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    max-height: 112px;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 60px;
    }
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #667eea;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 280px 0 120px;
    margin-top: 80px;
    overflow: hidden;
}

/* Hero dengan background color */
.hero[style*="background-color"] {
    background-image: none !important;
}

.hero[style*="background-color"] .hero-background {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hero Layout Options */
.hero-left .hero-content {
    text-align: left;
    margin-left: 0;
    max-width: 1000px;
}

.hero-left .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-left .hero-buttons {
    justify-content: flex-start;
}

.hero-left .hero-stats {
    justify-content: flex-start;
    margin-left: 0;
}

.hero-right .hero-content {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
    max-width: 1000px;
}

.hero-right .hero-subtitle {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

.hero-right .hero-buttons {
    justify-content: flex-end;
}

.hero-right .hero-stats {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 200px 0 80px !important;
        margin-top: 80px !important;
        min-height: auto !important;
    }
    
    .hero-content {
        padding: 0 20px 40px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-tagline {
        margin-bottom: 25px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-badge {
        padding: 10px 24px !important;
        font-size: 0.8rem !important;
    }
    
    .hero-title {
        margin-bottom: 20px !important;
        margin-top: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        font-size: 2rem !important;
        padding: 0 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-subtitle {
        margin-bottom: 35px !important;
        margin-top: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        font-size: 1rem !important;
        padding: 0 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        margin: 0 auto 40px auto !important;
        padding: 0 10px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
        padding: 14px 30px !important;
        font-size: 1rem !important;
    }
    
    .hero-left .hero-content,
    .hero-right .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        margin: 40px 0 30px;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 15px !important;
        padding-top: 30px !important;
        margin-top: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero-stat-item {
        padding: 15px 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 45px;
    }
    
    .section-footer {
        margin-top: 45px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .section-badge {
        font-size: 1.2rem;
        padding: 10px 24px;
        letter-spacing: 0.3px;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 55px 30px 35px;
        margin-top: 40px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-quote-icon {
        font-size: 50px;
        bottom: 15px;
        right: 20px;
    }
    
    .section-footer {
        margin-top: 50px;
    }
    
    .section-divider {
        margin: 40px 0;
        height: 1.5px;
    }
    
    .hero-stats {
        margin: 50px auto 80px;
        gap: 25px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.2rem;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card,
    .contact-card {
        padding: 35px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.hero-tagline {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    width: auto !important;
    text-align: left !important;
}

.hero-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #FFC107, #FFB300) !important;
    color: #1A1A1A !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 4 !important;
    line-height: 1.4 !important;
}

.hero-title {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: 0 60px 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero {
        padding: 280px 0 120px;
    }
    
    .hero-content {
        padding: 0 80px 40px;
        max-width: 1400px;
    }
}

.hero-title-highlight {
    color: #FFC107;
}

.hero-subtitle {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 750px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
    word-spacing: 0.2em;
    text-align: left;
    padding: 0;
    width: 100%;
}
/* Styling for WYSIWYG content in hero subtitle */
.hero-subtitle p {
    margin-bottom: 0.75rem;
}
.hero-subtitle p:last-child {
    margin-bottom: 0;
}
.hero-subtitle strong {
    font-weight: 700;
}
.hero-subtitle em {
    font-style: italic;
}
.hero-subtitle u {
    text-decoration: underline;
}
.hero-subtitle s {
    text-decoration: line-through;
}
.hero-subtitle ul, .hero-subtitle ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}
.hero-subtitle li {
    margin-bottom: 0.4rem;
}
.hero-subtitle a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.hero-subtitle a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-highlight {
    color: #FFC107;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.5), 0 0 15px rgba(255, 193, 7, 0.3);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 0 50px 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.hero-buttons .btn {
    min-width: 200px;
    flex: 0 1 auto;
    padding: 15px 35px;
    font-size: 1.05rem;
}

.btn-yellow {
    background: #FFC107 !important;
    color: #1A1A1A !important;
    border-color: #FFC107 !important;
    font-weight: 700;
}

.btn-yellow:hover {
    background: #FFB300 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white-color);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.hero-stat-item {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-stat-item {
        text-align: left;
    }
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFC107;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3);
    line-height: 1.2;
}

.hero-stat-number[data-animated="true"] {
    opacity: 1;
}

@media (min-width: 768px) {
    .hero-stat-number {
        font-size: 3rem;
    }
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover::before {
    opacity: 1;
}

.hero-scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%) translateY(-8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover i {
    color: #ffffff;
    transform: translateY(3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Section Animation Classes */
.section[data-animation="fadeIn"] {
    animation: fadeIn 0.8s ease-out;
}

.section[data-animation="slideUp"] {
    animation: slideUp 0.8s ease-out;
}

.section[data-animation="slideDown"] {
    animation: slideDown 0.8s ease-out;
}

.section[data-animation="slideLeft"] {
    animation: slideLeft 0.8s ease-out;
}

.section[data-animation="slideRight"] {
    animation: slideRight 0.8s ease-out;
}

.section[data-animation="zoomIn"] {
    animation: zoomIn 0.8s ease-out;
}

.section[data-animation="zoomOut"] {
    animation: zoomOut 0.8s ease-out;
}

.section[data-animation="rotate"] {
    animation: rotate 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Counter Animation Styles - Already defined above, this is just for reference */

/* ===== Services ===== */
.services-preview {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

.services-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Services Layout Options */
.services-preview[data-layout="list"] .services-grid {
    grid-template-columns: 1fr;
}

.services-preview[data-layout="list"] .service-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
}

.services-preview[data-layout="list"] .service-icon {
    flex-shrink: 0;
    margin: 0;
}

.services-preview[data-layout="carousel"] .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.services-preview[data-layout="carousel"] .service-card {
    min-width: 300px;
    scroll-snap-align: start;
}

.service-card {
    background-color: var(--white-color);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-description p {
    margin-bottom: 0.75rem;
}
.service-description p:last-child {
    margin-bottom: 0;
}
.service-description strong {
    font-weight: 700;
    color: #2d3748;
}
.service-description em {
    font-style: italic;
}
.service-description u {
    text-decoration: underline;
}
.service-description ul, .service-description ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}
.service-description li {
    margin-bottom: 0.4rem;
}
.service-description a {
    color: #667eea;
    text-decoration: underline;
}
.service-description a:hover {
    color: #5568d3;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    color: #764ba2;
    gap: 12px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Reduce intensive animations on mobile & prefers-reduced-motion */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .service-card::before,
    .portfolio-card::before,
    .feature-card::after,
    .section-divider::after,
    .whatsapp-float,
    .services-grid .service-card::before,
    .features-grid .feature-card::after,
    .portfolio-grid .portfolio-card::before {
        animation: none !important;
        transition: none !important;
    }

    .whatsapp-float {
        box-shadow: none;
    }
}

/* ===== Features ===== */
.features-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(102, 126, 234, 0.2) 15%, 
        rgba(102, 126, 234, 0.4) 30%, 
        rgba(102, 126, 234, 0.5) 50%, 
        rgba(102, 126, 234, 0.4) 70%, 
        rgba(102, 126, 234, 0.2) 85%, 
        transparent 100%);
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #667eea;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}
.feature-description p {
    margin-bottom: 0.75rem;
}
.feature-description p:last-child {
    margin-bottom: 0;
}
.feature-description strong {
    font-weight: 700;
    color: #2d3748;
}
.feature-description em {
    font-style: italic;
}
.feature-description u {
    text-decoration: underline;
}
.feature-description s {
    text-decoration: line-through;
}
.feature-description ul, .feature-description ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}
.feature-description li {
    margin-bottom: 0.4rem;
}
.feature-description a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s;
}
.feature-description a:hover {
    color: #5568d3;
}
.feature-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.75rem 0;
}
.feature-description h1, .feature-description h2, .feature-description h3,
.feature-description h4, .feature-description h5, .feature-description h6 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.4;
}
.feature-description h1 { font-size: 1.5rem; }
.feature-description h2 { font-size: 1.35rem; }
.feature-description h3 { font-size: 1.2rem; }
.feature-description h4 { font-size: 1.1rem; }
.feature-description h5 { font-size: 1rem; }
.feature-description h6 { font-size: 0.95rem; }
.feature-description blockquote {
    border-left: 4px solid #667eea;
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    margin: 0.75rem 0;
    font-style: italic;
    color: #718096;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0 8px 8px 0;
}

/* ===== Portfolio ===== */
.portfolio-preview {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

.portfolio-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

/* Portfolio Layout Options */
.portfolio-preview[data-layout="masonry"] .portfolio-grid {
    column-count: 3;
    column-gap: 30px;
}

.portfolio-preview[data-layout="masonry"] .portfolio-card {
    break-inside: avoid;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

@media (max-width: 1024px) {
    .portfolio-preview[data-layout="masonry"] .portfolio-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .portfolio-preview[data-layout="masonry"] .portfolio-grid {
        column-count: 1;
    }
}

.portfolio-preview[data-layout="carousel"] .portfolio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.portfolio-preview[data-layout="carousel"] .portfolio-card {
    min-width: 350px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.portfolio-card {
    background-color: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    transform: translateY(0);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
    animation: gradientShift 3s ease infinite;
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    color: var(--white-color);
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-overlay-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.portfolio-overlay-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.portfolio-overlay-item i {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    width: 16px;
    text-align: center;
}

.portfolio-location {
    font-size: 0.875rem;
    opacity: 0.9;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.portfolio-badge {
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.portfolio-badge-detail {
    padding: 8px 20px;
    background: #2563eb;
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-location-badge {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-year {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.portfolio-title-alt {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.portfolio-description-wrapper {
    margin-bottom: 15px;
}

.portfolio-description {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.portfolio-description.expanded {
    line-height: 1.8;
}

.portfolio-description.expanded p {
    margin-bottom: 0.75rem;
}

.portfolio-description.expanded p:last-child {
    margin-bottom: 0;
}

.portfolio-description.expanded strong {
    font-weight: 700;
    color: #2d3748;
}

.portfolio-description.expanded em {
    font-style: italic;
}

.portfolio-description.expanded u {
    text-decoration: underline;
}

.portfolio-description.expanded s {
    text-decoration: line-through;
}

.portfolio-description.expanded ul,
.portfolio-description.expanded ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.portfolio-description.expanded li {
    margin-bottom: 0.4rem;
}

.portfolio-description.expanded a {
    color: #667eea;
    text-decoration: underline;
}

.portfolio-description.expanded a:hover {
    color: #5568d3;
}

.portfolio-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.portfolio-read-more:hover {
    color: #764ba2;
    gap: 8px;
}

.portfolio-read-more .read-more-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.portfolio-read-more .read-more-icon.rotated {
    transform: rotate(180deg);
}

.portfolio-details-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.portfolio-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    padding: 6px 0;
}

.portfolio-info-item i {
    color: #667eea;
    width: 18px;
    text-align: center;
    font-size: 0.9375rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-info-item span {
    flex: 1;
    font-weight: 500;
    color: #334155;
}

.portfolio-info-separator {
    height: 1px;
    background: rgba(102, 126, 234, 0.2);
    margin: 4px 0;
    width: 100%;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.portfolio-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.portfolio-detail i {
    color: #667eea;
}

/* ===== Portfolio Detail Page ===== */
.portfolio-detail-section {
    padding: 60px 0;
}

.portfolio-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.portfolio-detail-image {
    position: sticky;
    top: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.portfolio-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.portfolio-detail-content {
    flex: 1;
}

.portfolio-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.portfolio-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.portfolio-detail-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.portfolio-detail-description p {
    margin-bottom: 1rem;
}

.portfolio-detail-description p:last-child {
    margin-bottom: 0;
}

.portfolio-detail-description strong {
    font-weight: 700;
    color: #2d3748;
}

.portfolio-detail-description em {
    font-style: italic;
}

.portfolio-detail-description u {
    text-decoration: underline;
}

.portfolio-detail-description s {
    text-decoration: line-through;
}

.portfolio-detail-description ul,
.portfolio-detail-description ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.portfolio-detail-description li {
    margin-bottom: 0.5rem;
}

.portfolio-detail-description a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s;
}

.portfolio-detail-description a:hover {
    color: #5568d3;
}

.portfolio-detail-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.portfolio-detail-description h1,
.portfolio-detail-description h2,
.portfolio-detail-description h3,
.portfolio-detail-description h4,
.portfolio-detail-description h5,
.portfolio-detail-description h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.4;
}

.portfolio-detail-description h1 { font-size: 2rem; }
.portfolio-detail-description h2 { font-size: 1.75rem; }
.portfolio-detail-description h3 { font-size: 1.5rem; }
.portfolio-detail-description h4 { font-size: 1.25rem; }
.portfolio-detail-description h5 { font-size: 1.125rem; }
.portfolio-detail-description h6 { font-size: 1rem; }

.portfolio-detail-description blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #718096;
    background: rgba(102, 126, 234, 0.05);
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.portfolio-detail-full {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.portfolio-detail-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.portfolio-detail-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.portfolio-detail-info ul {
    list-style: none;
    padding: 0;
}

.portfolio-detail-info li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
}

.portfolio-detail-info li:last-child {
    border-bottom: none;
}

.portfolio-detail-info strong {
    color: var(--dark-color);
    font-weight: 600;
}

.related-portfolio-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.related-portfolio-section .section-header {
    margin-bottom: 50px;
}

@media (max-width: 968px) {
    .portfolio-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-detail-image {
        position: relative;
        top: 0;
    }
    
    .portfolio-detail-title {
        font-size: 2rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white-color);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.cta-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
/* Styling for WYSIWYG content in CTA subtitle */
.cta-subtitle p {
    margin-bottom: 0.5rem;
}
.cta-subtitle p:last-child {
    margin-bottom: 0;
}
.cta-subtitle strong {
    font-weight: 700;
    color: #fff;
}
.cta-subtitle em {
    font-style: italic;
}
.cta-subtitle u {
    text-decoration: underline;
}
.cta-subtitle s {
    text-decoration: line-through;
}
.cta-subtitle ul, .cta-subtitle ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}
.cta-subtitle li {
    margin-bottom: 0.3rem;
}
.cta-subtitle a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.cta-subtitle a:hover {
    opacity: 0.8;
}

.cta-marketing-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin: 30px 0 40px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-marketing-text i {
    color: #FFC107;
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-whatsapp-btn {
    background: #25D366 !important;
    color: #ffffff !important;
    border: 2px solid #25D366 !important;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.cta-whatsapp-btn:hover {
    background: #20BA5A !important;
    border-color: #20BA5A !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
    text-decoration: none !important;
    color: #ffffff !important;
}

.cta-whatsapp-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5) !important;
}

.cta-whatsapp-btn:focus {
    outline: 3px solid rgba(37, 211, 102, 0.3) !important;
    outline-offset: 2px !important;
}

.cta-phone-btn {
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

.cta-phone-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    padding: 200px 0 120px;
    margin-top: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 160px 0 90px;
        margin-top: 80px;
        min-height: 350px;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 140px 0 80px;
        margin-top: 70px;
        min-height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ===== Services Page ===== */
.services-category {
    margin-bottom: 60px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.category-description {
    font-size: 1.125rem;
    color: var(--gray-color);
}

.services-list {
    display: grid;
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 25px;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateX(5px);
}

.service-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-item-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-item-image {
    margin-top: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: auto;
}

/* ===== Portfolio Filter ===== */
.portfolio-filter-section {
    padding: 0 0 40px 0;
    margin-bottom: 20px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: #ffffff;
    color: #1e293b;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-count {
    font-weight: 700;
    opacity: 0.8;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
    opacity: 1;
}

.portfolio-card.hidden {
    display: none;
}

/* ===== About Page ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* About Description - Styling untuk HTML dari Trumbowyg */
.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 15px;
    color: #4a5568;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description strong {
    font-weight: 700;
    color: #2d3748;
}

.about-description em {
    font-style: italic;
    color: #4a5568;
}

.about-description u {
    text-decoration: underline;
}

.about-description ul,
.about-description ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #4a5568;
}

.about-description li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.about-description a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.about-description a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.about-description h1,
.about-description h2,
.about-description h3,
.about-description h4,
.about-description h5,
.about-description h6 {
    margin: 20px 0 15px 0;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.4;
}

.about-description h1 { font-size: 28px; }
.about-description h2 { font-size: 24px; }
.about-description h3 { font-size: 20px; }
.about-description h4 { font-size: 18px; }
.about-description h5 { font-size: 16px; }
.about-description h6 { font-size: 14px; }

.about-description blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #667eea;
    background: #f7fafc;
    font-style: italic;
    color: #4a5568;
}

.about-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Vision & Mission Content - Styling untuk HTML dari Trumbowyg */
.vm-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.vm-content p {
    margin-bottom: 15px;
    color: #4a5568;
}

.vm-content p:last-child {
    margin-bottom: 0;
}

.vm-content strong {
    font-weight: 700;
    color: #2d3748;
}

.vm-content em {
    font-style: italic;
    color: #4a5568;
}

.vm-content u {
    text-decoration: underline;
}

.vm-content ul,
.vm-content ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #4a5568;
}

.vm-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.vm-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.vm-content a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.vm-content h1,
.vm-content h2,
.vm-content h3,
.vm-content h4,
.vm-content h5,
.vm-content h6 {
    margin: 20px 0 15px 0;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.4;
}

.vm-content h1 { font-size: 28px; }
.vm-content h2 { font-size: 24px; }
.vm-content h3 { font-size: 20px; }
.vm-content h4 { font-size: 18px; }
.vm-content h5 { font-size: 16px; }
.vm-content h6 { font-size: 14px; }

.vm-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #667eea;
    background: #f7fafc;
    font-style: italic;
    color: #4a5568;
}

.vm-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* VM List - Styling untuk list items */
.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s;
}

.vm-list li:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.vm-list li i {
    color: #667eea;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.vm-list li span {
    flex: 1;
    color: #4a5568;
    line-height: 1.7;
    font-size: 16px;
}

.vm-list li span strong {
    font-weight: 700;
    color: #2d3748;
}

.vm-list li span em {
    font-style: italic;
    color: #4a5568;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-description {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 30px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.about-image-item:nth-child(2) {
    margin-top: 40px;
}

.about-image-item:nth-child(3) {
    margin-top: -40px;
}

.about-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr !important;
        margin-top: 30px;
    }
    
    .about-image-item {
        margin-top: 0 !important;
    }
    
    .about-image-item img {
        height: 250px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Vision & Mission ===== */
.vision-mission-section {
    background-color: var(--light-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.vm-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vm-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.vm-content {
    color: var(--gray-color);
    line-height: 1.8;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vm-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list li i {
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

.vm-list li span {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== Values ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white-color);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: #667eea;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-description {
    color: var(--gray-color);
}

/* ===== Features List ===== */
.features-list {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    background-color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateX(5px);
}

.feature-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item-icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.feature-item-content {
    flex: 1;
}

.feature-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-item-description {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== Contact Section Homepage ===== */
.contact-section-homepage {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

.contact-section-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(102, 126, 234, 0.2) 15%, 
        rgba(102, 126, 234, 0.4) 30%, 
        rgba(102, 126, 234, 0.5) 50%, 
        rgba(102, 126, 234, 0.4) 70%, 
        rgba(102, 126, 234, 0.2) 85%, 
        transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    transition: transform 0.4s ease;
    border-radius: 0 0 5px 5px;
    animation: gradientShift 3s ease infinite;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card .contact-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.contact-card .contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card .contact-text {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-card .contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card .contact-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Maps Container - Full Width */
.maps-container {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.maps-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    display: block;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info-text {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 15px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon i {
    color: var(--white-color);
    font-size: 1.25rem;
}

.contact-detail-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-detail-content p,
.contact-detail-content a {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-detail-content a:hover {
    color: #667eea;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-social h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Operational Hours List */
.operational-hours-list {
    margin-top: 12px;
}

.operational-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.operational-hours-item:last-child {
    border-bottom: none;
}

.operational-hours-item:hover {
    background-color: #f8f9fa;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 6px;
}

.operational-hours-item span:first-child {
    font-weight: 600;
    color: var(--dark-color);
    min-width: 150px;
    flex-shrink: 0;
}

.operational-hours-item span:last-child {
    color: var(--gray-color);
    text-align: right;
    flex: 1;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .operational-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .operational-hours-item span:first-child {
        min-width: auto;
    }
    
    .operational-hours-item span:last-child {
        text-align: left;
        margin-left: 0;
    }
}

.contact-form-wrapper {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.required {
    color: var(--danger-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== Alerts ===== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

.alert ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    background-color: #20BA5A;
    text-decoration: none;
}

.whatsapp-float:active {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.3);
    outline-offset: 2px;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.scroll-top i {
    font-size: 1.25rem;
    color: var(--white-color);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray-color);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-footer {
        margin-top: 50px;
    }
    
    .section-divider {
        margin: 45px 0;
        height: 1.5px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid,
    .portfolio-grid,
    .testimonials-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--box-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        min-width: auto !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .maps-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .maps-container iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
}
/* ========================================
   PERBAIKAN HERO SECTION - RESPONSIVE
   Paste di AKHIR file style.css Anda
   ======================================== */

/* Reset hero base - hapus max-height yang membatasi */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px !important;
    margin-top: 80px;
    overflow: hidden;
}

/* Hero content - lebih flexible */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px !important;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Hero Title - Responsive sizing */
.hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Hero Subtitle - Responsive sizing */
.hero-subtitle {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
    margin-bottom: 40px !important;
    max-width: 750px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Buttons - Stack on mobile */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px !important;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 14px 28px !important;
    font-size: 1rem !important;
}

/* Hero Stats - Responsive Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
    padding: 18px 12px !important;
}

.hero-stat-number {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
}

.hero-stat-label {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

/* ============================================
   TABLET (992px ke bawah)
   ============================================ */
@media (max-width: 992px) {
    .hero {
        padding: 140px 0 70px !important;
        min-height: auto !important;
    }
    
    .hero-content {
        padding: 0 25px 35px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 35px !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* ============================================
   TABLET PORTRAIT (768px ke bawah)
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px !important;
    }
    
    .hero-content {
        padding: 0 20px 30px !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .hero-tagline {
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        text-align: center !important;
        padding: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 350px;
        margin-bottom: 40px !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        min-width: auto !important;
        padding: 13px 24px !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding-top: 30px;
    }
    
    .hero-stat-item {
        padding: 15px 10px !important;
    }
    
    .hero-stat-number {
        font-size: 2rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.85rem !important;
    }
}

/* ============================================
   MOBILE (480px ke bawah)
   ============================================ */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px !important;
    }
    
    .hero-content {
        padding: 0 15px 25px !important;
    }
    
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 8px 20px !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        margin-bottom: 18px !important;
        line-height: 1.25 !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
        line-height: 1.6 !important;
    }
    
    .hero-buttons {
        gap: 10px !important;
        margin-bottom: 35px !important;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    /* Stats jadi 1 kolom di mobile kecil */
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding-top: 25px;
    }
    
    .hero-stat-item {
        padding: 12px 8px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-stat-item:last-child {
        border-bottom: none;
    }
    
    .hero-stat-number {
        font-size: 1.8rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.8rem !important;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (360px ke bawah)
   ============================================ */
@media (max-width: 360px) {
    .hero {
        padding: 90px 0 45px !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-stat-number {
        font-size: 1.6rem !important;
    }
}

/* ============================================
   LANDSCAPE MODE di Mobile
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px !important;
        min-height: auto !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        padding-top: 20px;
    }
    
    .hero-stat-item {
        padding: 10px 8px !important;
    }
    
    .hero-stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 4px !important;
    }
    
    .hero-stat-label {
        font-size: 0.75rem !important;
    }
}

/* Override untuk memastikan text tidak overflow */
.hero-title,
.hero-subtitle,
.hero-stat-label {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}