@charset "UTF-8";

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1f2937;
    --dark-sidebar: #111827;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Scroll offset for section anchors */
[id] {
    scroll-margin-top: 70px;
}

body.landing-body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    padding-top: 70px;
}

/* Navbar Landing */
.navbar-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1030;
    display: flex;
    align-items: center;
}

.navbar-landing > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-landing .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.navbar-landing .navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-landing .navbar-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.navbar-landing .navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    margin: 5px 0;
}

.navbar-landing .navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.navbar-landing .navbar-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 0.375rem 0.5rem;
    transition: color 0.2s ease;
}

.navbar-landing .navbar-link:hover {
    color: var(--primary);
}

.navbar-landing .navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-landing .navbar-actions .btn {
    padding: 0.4rem 0.875rem;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
}

.navbar-landing .navbar-actions .btn-primary {
    padding: 0.4rem 0.875rem;
}

/* Responsive navbar */
@media (max-width: 991px) {
    .navbar-landing .navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0;
    }
    
    .navbar-landing .navbar-menu.active {
        display: flex;
    }
    
    .navbar-landing .navbar-menu .navbar-link {
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .navbar-landing .navbar-toggle {
        display: block;
    }
    
    .navbar-landing .navbar-actions {
        display: none;
    }
    
    .navbar-landing .navbar-actions.active {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

.section {
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

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

.bg-dark {
    background-color: var(--dark-sidebar);
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

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

.hero-image {
    position: relative;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
}

.stats-section .stat-item {
    text-align: center;
}

.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stats-section .stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
}

@media (max-width: 767px) {
    .stats-section .stat-number {
        font-size: 1.75rem;
    }
}

.hero-screenshot {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-200);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Features Section */
.features {
    background-color: var(--white);
}

/* Features Tabs */
.features-tabs .nav-tabs {
    border: none;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.features-tabs .nav-tabs .nav-item {
    border: none;
}

.features-tabs .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    background-color: var(--white);
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.features-tabs .nav-tabs .nav-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.features-tabs .nav-tabs .nav-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.features-tabs .nav-tabs .nav-link svg {
    flex-shrink: 0;
}

.features-tabs .tab-content {
    margin-top: 1rem;
}

.features-tabs .tab-pane {
    display: none;
}

.features-tabs .tab-pane.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* How It Works Section */
.steps {
    background-color: var(--gray-100);
}

.step-item {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-description {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

.benefit-item:hover {
    background-color: var(--gray-100);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
}

/* Pricing Section */
.pricing {
    background-color: var(--gray-100);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.toggle-label.active {
    color: var(--dark);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background-color: var(--gray-300);
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background-color: var(--primary);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
    transform: translateX(26px);
}

.save-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-left: 0.5rem;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gray-300);
    background-color: var(--white);
    color: var(--gray-600);
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.currency-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 1.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
}

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

.plan-users {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.plan-price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.plan-price-annual {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-600);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.plan-cta {
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-card {
    padding: 2rem;
    background-color: var(--gray-100);
    border-radius: 1.5rem;
    height: 100%;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

/* FAQ Section */
.faq {
    background-color: var(--gray-100);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

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

.faq-question:focus {
    outline: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--gray-500);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--dark-sidebar);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--gray-400);
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright, .makisan-credit {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin: 0;
}

.makisan-credit a {
    color: var(--gray-400);
}

.footer-bottom .footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-bottom .footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-700);
    border-radius: 0.5rem;
    color: var(--gray-300);
    transition: all 0.2s ease;
    visibility: visible;
    opacity: 1;
}

.footer-bottom .footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-bottom .footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
}

.navbar-brand img {
    height: 32px;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-menu .navbar-link {
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-actions.active {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
    }
    
    .navbar-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--dark);
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

@media (min-width: 992px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.navbar-link:hover {
        color: var(--primary);
    }
    
/* Responsive */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image .hero-screenshot {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .navbar-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1040;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

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

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    color: white;
    stroke: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1040;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    background-color: var(--primary);
    border-color: var(--primary);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.back-to-top:hover svg {
    color: white;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-100);
}

.contact-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-icon.email {
    background-color: rgba(79, 70, 229, 0.1);
}
.contact-icon.email svg {
    color: var(--primary);
}

.contact-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
}
.contact-icon.whatsapp svg {
    color: #25D366;
}

.contact-icon.location {
    background-color: rgba(239, 68, 68, 0.1);
}
.contact-icon.location svg {
    color: var(--danger);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-text {
    color: var(--gray-500);
    margin: 0;
}

.contact-text a {
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--primary);
}

/* Pricing - Show savings */
.price-original {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.savings-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.annual-savings {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 500;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-slide .row {
    justify-content: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Makisan Tech Footer */
.makisan-credit {
    text-align: center;
    padding: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.makisan-credit a {
    color: var(--primary);
    font-weight: 500;
}