/* Variabel Warna CENDRATAMA */
:root {
    --hijau: #2ecc71;
    --merah: #e74c3c;
    --ungu: #9b59b6;
    --hijau-gelap: #27ae60;
    --merah-gelap: #c0392b;
    --ungu-gelap: #8e44ad;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --gray: #ecf0f1;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--ungu);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--hijau-gelap) 0%, var(--ungu) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    padding: 0.8rem 0;
}

.navbar .brand-container {
    display: flex;
    align-items: center;
}

.navbar .brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--ungu);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    margin-right: 10px;
}

.navbar .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.navbar .brand-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .btn-cta {
    background-color: var(--merah);
    color: var(--white);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.navbar-nav .btn-cta:hover {
    background-color: var(--merah-gelap);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--hijau-gelap);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--ungu);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(155, 89, 182, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--hijau);
    border-color: var(--hijau);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--hijau-gelap);
    border-color: var(--hijau-gelap);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.hero-buttons .btn-outline {
    color: var(--ungu);
    border-color: var(--ungu);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--ungu);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.2), rgba(155, 89, 182, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image:hover::before {
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--hijau), var(--ungu));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--hijau);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hijau) 0%, var(--ungu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--ungu);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--ungu-gelap);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.product-btn {
    display: block;
    background-color: var(--merah);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: var(--merah-gelap);
    color: var(--white);
    text-decoration: none;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content .brand-highlight {
    color: var(--ungu);
    position: relative;
}

.about-content .brand-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(155, 89, 182, 0.2);
    z-index: -1;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-content strong {
    color: var(--ungu);
}

.btn-about {
    background-color: transparent;
    color: var(--hijau);
    border: 2px solid var(--hijau);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-about:hover {
    background-color: var(--hijau);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.about-stats {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--ungu) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--hijau-gelap) 0%, var(--ungu) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-cta-large {
    background-color: var(--merah);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-large:hover {
    background-color: var(--merah-gelap);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer .brand-container {
    margin-bottom: 1.5rem;
}

.footer .brand-name {
    font-size: 1.5rem;
}

.footer .brand-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--hijau);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--hijau);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--hijau);
    margin-right: 10px;
    margin-top: 5px;
    width: 20px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .navbar-nav .btn-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .services-section,
    .products-section,
    .about-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
/* Additional Styles */

/* Search Button */
.btn-search {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* User Menu */
.user-avatar {
    color: var(--white);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--ungu);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--ungu-gelap);
    transform: translateY(-3px);
}

/* Hero Features */
.hero-features {
    margin-top: 2rem;
}

.hero-features i {
    font-size: 1.2rem;
}

.hero-features span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--merah) 0%, var(--ungu) 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

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

.badge-title {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.badge-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1rem;
}

.feature-badge {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--hijau-gelap);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.feature-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--ungu);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--merah);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-body {
    padding: 1.5rem;
}

.product-price {
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--merah);
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-wishlist {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    color: var(--merah);
}

.btn-wishlist.active {
    color: var(--merah);
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(46, 204, 113, 0.8), rgba(155, 89, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.2);
    color: white;
}

.portfolio-body {
    padding: 1.5rem;
}

.portfolio-body h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tech-badge {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--hijau-gelap);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.client-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    color: #FFD700;
}

.testimonial-body p {
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--merah);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.blog-date .day {
    font-size: 1.2rem;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.8rem;
    opacity: 0.9;
}

.blog-body {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--hijau-gelap);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.blog-body h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-body h4 a:hover {
    color: var(--ungu);
}

.blog-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Newsletter */
.newsletter-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--ungu) 100%);
    border-radius: 15px;
    padding: 3rem;
    color: white;
}

.newsletter-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 0.8rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.8rem 2rem;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.form-check-label a {
    color: white;
    text-decoration: underline;
}

/* Price Calculator */
.price-calculator {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.calculator-header {
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.calculator-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.option-group select,
.option-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.calculator-result {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--merah);
    margin-bottom: 1rem;
}

.result-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--hijau);
    color: white;
    font-weight: 600;
}

.comparison-table .plan-header {
    background-color: var(--ungu);
    color: white;
    font-weight: 700;
}

.comparison-table .feature {
    text-align: left;
    font-weight: 600;
}

.comparison-table .check {
    color: var(--hijau);
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--merah);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--hijau);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
}

.chatbot-container.show {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--ungu) 100%);
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chatbot-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.chatbot-input button {
    background-color: var(--hijau);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.bot {
    background-color: #f1f1f1;
    align-self: flex-start;
}

.chat-message.user {
    background-color: var(--hijau);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background-color: var(--ungu);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.3);
}
/* Auth Pages Styling */
.auth-page {
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 1200px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.auth-header .brand-logo {
    display: flex;
    justify-content: center;
}

.auth-header .brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.auth-header .brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ecc71 0%, #9b59b6 100%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 12px;
    margin-bottom: 10px;
}

.auth-header .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    display: block;
}

.auth-header .brand-subtitle {
    font-size: 0.8rem;
    color: #666;
}

.auth-header h2 {
    color: #333;
    margin-top: 1rem;
    font-weight: 600;
}

.auth-header p {
    color: #666;
    margin-bottom: 0;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.form-check-input:checked {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

/* Separator */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    margin: 1.5rem 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.separator:not(:empty)::before {
    margin-right: 1rem;
}

.separator:not(:empty)::after {
    margin-left: 1rem;
}

/* Social Login Buttons */
.social-login .btn {
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 500;
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }
    
    .auth-header .brand-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .auth-header .brand-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
}
/* Styling untuk dropdown yang lebih rapi */
.dropdown-menu-lg {
    min-width: 280px;
}

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

/* Ikon pada mobile */
.nav-link .d-lg-none {
    display: inline-block !important;
}

@media (min-width: 992px) {
    .nav-link .d-lg-none {
        display: none !important;
    }
}

/* Tombol yang lebih sederhana */
.btn-primary {
    padding: 0.375rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

/* Floating button yang lebih minimalis */
.whatsapp-float {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Back to top button yang lebih kecil */
.back-to-top {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

/* Brand styling */
.brand-container {
    display: flex;
    align-items: center;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: white;
    color: #0d6efd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.brand-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}
.logo-80 {
    width: 80% !important;
    max-width: 80% !important;
    height: auto;
    margin: 0 auto;
}