/* css/style.css */
/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Styles */
.navbar {
    background-color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(to right, #e74c3c, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);            
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 100;
    padding: 100;
}

.nav-item {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c8a4a;
}

.nav-link.active {
    color: #3498db;
    font-weight: 600;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}
        
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 15px;
    }
    
    .nav-item {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-toggler {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
}

/* Secondary Navigation Styles */
.secondary-nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 0;
    border-bottom: 1px solid #465c78;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.secondary-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3498db 50%, transparent 100%);
}

.secondary-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.secondary-nav-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border-right: 1px solid #465c78;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-nav-link:last-child {
    border-right: none;
}

.secondary-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.secondary-nav-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.secondary-nav-link:hover::before {
    width: 80%;
}

.secondary-nav-link:active {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(1px);
}

/* Mobile Dropdown Styles */
.secondary-nav-mobile {
    text-align: center;
    padding: 15px 0;
}

.secondary-nav-select {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    background: white url(data:image/svg+xml,%3Csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ width=\'16\'\ height=\'16\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'%232c3e50\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3E%3Cpath\ d=\'M6\ 9l6\ 6\ 6-6\'/%3E%3C/svg%3E) no-repeat right 16px;
    border: 2px solid #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    appearance: none;
    background-position-x:right; background-position-y:16px; background-size:16px; transition:all 0.3s ease; box-shadow:0 2px 8px rgba(0,0,0,0.1); padding-left:16px; padding-right:16px; padding-top:12px; padding-bottom:12px; background-image:url(data:image/svg+xml,%3Csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ width=\'16\'\ height=\'16\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'%232c3e50\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3E%3Cpath\ d=\'M6\ 9l6\ 6\ 6-6\'/%3E%3C/svg%3E); background-repeat:no-repeat
}

.secondary-nav-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.secondary-nav-select:hover {
    border-color: #bdc3c7;
}

/* Active state for current page */
.secondary-nav-link[href*="amazfit"] {
    color: #3498db;
    font-weight: 600;
}

.secondary-nav-link[href*="amazfit"]::before {
    width: 80%;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .secondary-nav-links {
        justify-content: center;
    }
    
    .secondary-nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .secondary-nav {
        padding: 0;
    }
    
    .secondary-nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
    }
    
    .secondary-nav-link {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-right: 1px solid #465c78;
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
    }
    
    .secondary-nav-link:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .secondary-nav-link {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-width: 110px;
    }
    
    .secondary-nav-select {
        max-width: 280px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Animation for smooth transitions */
@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secondary-nav {
    animation: navFadeIn 0.4s ease-out;
}

/* Responsive Utilities */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Enhanced mobile dropdown for better UX */
.secondary-nav-select option {
    padding: 8px;
    font-size: 0.9rem;
}

.secondary-nav-select option[value=""] {
    color: #7f8c8d;
    font-style: italic;
}

/* Focus styles for accessibility */
.secondary-nav-link:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: -2px;
    background: rgba(52, 152, 219, 0.15);
}

/* css/search-box.css */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 650px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    height: 100%;
    min-height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    background: white;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    color: #333;
    border-radius: 30px 0 0 30px;
    line-height: normal;
}

.search-input::placeholder {
    color: #95a5a6;
    opacity: 1;
}

.search-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    cursor: pointer;
    padding: 0 15px;
    height: 100%;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.search-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-text {
    display: inline-block;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-content {
    padding: 5px;
}

.search-result-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1a0dab;
}

.search-result-content p {
    font-size: 0.9rem;
    color: #4d5156;
    margin-bottom: 5px;
    line-height: 1.4;
}

.search-result-url {
    color: #006621;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 15px;
    text-align: center;
    margin-top: 5px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    padding: 15px;
    color: #7f8c8d;
    text-align: center;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
    margin-top: -1px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    text-decoration: none;
    display: block;
}

.suggestion-item:hover, 
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-highlight {
    font-weight: bold;
    color: #3498db;
}

.search-highlight {
    background-color: #fff8c6;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-item.selected {
    background-color: #f0f7fd !important;
    border-left: 3px solid #3498db !important;
}

@media (max-width: 1280px) {
    .search-container {
        width: 630px;
    }
    
    .search-button {
        padding: 8px 10px;
    }
}

@media (max-width: 1024px) {
    .search-container {
        width: 420px;
        margin-left: 25px;
    }
}

@media (max-width: 912px) {
    .search-container {
        width: 350px;
        margin-left: 20px;
    }
}

@media (max-width: 853px) {
    .search-container {
        width: 315px;
        margin-left: 15px;
    }
}

@media (max-width: 820px) {
    .search-container {
        width: 278px;
        margin-left: 18px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        height: 40px;
        margin: 15px 0;
        margin-left: 10px;
        order: 3;
    }
    
    .search-form {
        border-radius: 5px;
        min-height: 40px;
    }
    
    .search-input {
        border-radius: 5px 0 0 5px;
    }
    
    .search-button {
        border-radius: 0 5px 5px 0;
    }
}

/* Product Recommendation Styles */
.product-recommendation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    margin-top: 28px;
}

.page-intro {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #2c3e50;
    position: relative;
}

.page-intro::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url(data:image/svg+xml,<svg\ xmlns=\"http://www.w3.org/2000/svg\"\ viewBox=\"0\ 0\ 24\ 24\"\ fill=\"%23f8f9fa\"><path\ d=\"M12\ 2C6.48\ 2\ 2\ 6.48\ 2\ 12s4.48\ 10\ 10\ 10\ 10-4.48\ 10-10S17.52\ 2\ 12\ 2zm-2\ 15l-5-5\ 1.41-1.41L10\ 14.17l7.59-7.59L19\ 8l-9\ 9z\"/></svg>) no-repeat;
    opacity: 0.1
}

.page-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 18px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.page-intro p:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid #e8ecef;
    border-radius: 12px;
    padding: 0;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d0d7de;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #f1f3f4;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 67.2px;
}

.product-price {
    font-size: 1.25rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.price-update {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.3;
    font-style: italic;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
}

.product-button:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    color: white;
    text-decoration: none;
}

.product-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .product-card {
        border-radius: 8px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 180px;
        padding: 15px;
    }
    
    .product-content {
        padding: 16px;
    }
    
    .price-update {
        font-size: 0.7rem;
        margin: 6px 0 10px 0;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
            
    .product-title {
        font-size: 0.95rem;
        min-height: 53.2px;
        -webkit-line-clamp: 2;
    }
    
    .product-button {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .page-intro {
        padding: 25px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }
    
    .page-intro p {
        font-size: 1rem;
        line-height: 1.65;
        text-align: left;
    }
    
    .page-intro::before {
        display: none;
    }
}

/* Comparison & Recommendation Section */
.comparison-section {
    margin: 50px 0;
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e74c3c, #3498db);
    border-radius: 3px;
}

.conclusion-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}

.conclusion-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71, #e74c3c);
    border-radius: 16px 16px 0 0;
}
    
.conclusion-title {
    color: #2c3e50;
    font-size: 2.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
        
.conclusion-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}
        
.conclusion-content {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.conclusion-content p {
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    padding-left: 0; /* Remove left padding */
}

.conclusion-content p::before {
    content: none; /* Remove the bullet completely */
}

.conclusion-content p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    margin-bottom: 25px;
}

.conclusion-content p:nth-child(2) {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
    margin-bottom: 25px;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
    
.rec-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}
    
.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
    
.rec-header {
    padding: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    display: flex;
    align-items: center;
}
    
.rec-header h4 {
    margin: 0;
    font-size: 1.1em;
}
    
.rec-product {
    padding: 20px;
    text-align: center;
}
    
.rec-product h5 {
    margin: 0 0 10px;
    color: #2c3e50;
}
    
.rec-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}
    
.rec-meta .feature {
    background: #e3f2fd;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #1976d2;
    text-align: center;
}
    
.rec-reason {
    padding: 15px;
    background: #f8f9fa;
    font-size: 0.95em;
    line-height: 1.6;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}
    
.rec-card.best-overall .rec-header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}
    
.rec-card.budget .rec-header {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}
    
.rec-card.premium .rec-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.key-findings {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}
    
.key-findings h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
    
.key-findings ul {
    list-style: none;
    padding-left: 0;
}
    
.key-findings li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.expert-tips {
    margin-bottom: 30px;
}
    
.expert-tips h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
    
.expert-tips h4 i {
    margin-right: 10px;
    color: #3498db;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
    
.tip-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}
    
.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
    
.tip-card h5 {
    margin: 0 0 10px;
    color: #2c3e50;
}
    
.tip-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9em;
    line-height: 1.6;
}

.final-thoughts {
    background: linear-gradient(135deg, #3498db15 0%, #2ecc7115 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecf1;
}

.final-thoughts::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #3498db10 0%, transparent 70%);
    border-radius: 50%;
}
    
.final-thoughts h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.final-thoughts h4 i {
    margin-right: 12px;
    color: #3498db;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
    
.final-thoughts p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.final-thoughts {
    transition: all 0.3s ease;
}

.final-thoughts:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.15);
    border-left-color: #2ecc71;
}

.conclusion-highlight {
    background: linear-gradient(120deg, #a8e6cf30 0%, #dcedc130 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #a8e6cf;
    margin: 20px 0;
    position: relative;
}

.conclusion-highlight::before {
    content: "??";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-container {
    margin-top: 20px;
}
        
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
        
.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}
        
.faq-question:hover {
    background: #e9ecef;
}
        
.faq-question:before {
    content: "Q:";
    margin-right: 10px;
    font-weight: bold;
    color: #3498db;
}
        
.faq-answer {
    padding: 20px;
    background: white;
    line-height: 1.6;
}
        
.faq-answer p {
    margin: 0;
    color: #495057;
}

/* Internal Links Container */
.internal-links-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.internal-links-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.internal-links-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e74c3c, #3498db);
    border-radius: 3px;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.internal-link-card {
    display: flex;
    background: white;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border: 1px solid #e9ecef;
}

.internal-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.internal-link-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.internal-link-content {
    flex: 1;
}

.internal-link-card a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.internal-link-card a:hover {
    color: #3498db;
}

.internal-link-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .internal-link-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .internal-link-img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: 120px;
    }

    .rec-meta {
        flex-direction: column;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 1rem;
    }
            
    .faq-answer {
        padding: 15px;
    }
    
    .conclusion-section {
        padding: 25px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }
    
    .conclusion-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
        text-align: left;
    }
    
    .conclusion-title::after {
        left: 0;
        transform: none;
    }
    
    .conclusion-content {
        font-size: 1rem;
    }
    
    .conclusion-content p {
        text-align: left;
        padding: 20px !important; /* Consistent padding for all paragraphs */
    }
    
    .conclusion-content p:first-child,
    .conclusion-content p:nth-child(2) {
        padding: 20px;
        border-left-width: 3px;
    }
    
    .final-thoughts {
        padding: 20px;
        margin-top: 25px;
    }
    
    .final-thoughts h4 {
        font-size: 1.2rem;
    }
}

/* Ads Container */
.ads-container {
    background-color: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 5px;
}  


        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 30px;
        }

        .footer-links li {
            margin: 0 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            color: #ecf0f1;
            font-size: 0.9rem;
        }

/* Disclaimer Global Styles */
.disclaimer-global {
    background-color: #f8f9fa;
    border-left: 4px solid #e63946;
    padding: 1.25rem;
    margin: 2rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
    color: #e63946;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.disclaimer-global p {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.disclaimer-global a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.disclaimer-global a:hover {
    color: #c1121f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .disclaimer-global {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .disclaimer-global p {
        font-size: 0.8rem;
    }
}

/* Share Component Styles */
.share-article-container {
    display: none;
}

@media (min-width: 992px) {
    .share-article-container {
        display: flex;
        align-items: center;
    }
}

.share-container {
    display: inline-block;
    position: relative;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}

.share-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.share-button.active img {
    transform: rotate(45deg);
}

.share-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    transform: scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 420px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.share-dropdown h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    min-width: 60px;
}

.share-option:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.share-option img {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.share-option:hover img {
    transform: scale(1.15);
}

.share-option span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.copy-link-container {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 140px;
    border: 1px solid #e9ecef;
}

.copy-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.copy-link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.copy-link span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.share-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s forwards;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.share-notification img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

@keyframes fadeOut {
    from { opacity: 1; bottom: 20px; }
    to { opacity: 0; bottom: 0; }
}

@media (max-width: 768px) {
    .share-dropdown {
        width: 360px;
        right: -20px;
        padding: 20px;
    }

    .share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .copy-link-container {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .share-dropdown {
        width: 320px;
        right: -40px;
        padding: 15px;
    }

    .share-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .share-option {
        padding: 8px 4px;
    }

    .share-option img {
        width: 20px;
        height: 20px;
    }

    .share-option span {
        font-size: 10px;
    }

    .copy-link {
        min-width: 120px;
        padding: 8px 16px;
    }

    .copy-link span {
        font-size: 12px;
    }
    
    .page-intro {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .page-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .conclusion-section {
        padding: 20px 15px;
    }
    
    .conclusion-title {
        font-size: 1.6rem;
    }
    
    .conclusion-content p {
        font-size: 0.95rem;
        padding: 15px !important;
    }
    
    .final-thoughts h4 {
        font-size: 1.1rem;
    }
}

/* Animation for professional touch */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conclusion-section {
    animation: fadeInUp 0.6s ease-out;
}

.affiliate-disclosure-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.6;
}

.affiliate-disclosure-notice a {
    color: #0288d1;
    text-decoration: underline;
}

.affiliate-disclaimer {
	font-size: 0.8em;
	color: #666;
	margin: 10px 0;
	margin-top: 10px;
	border-top: 1px dashed #ddd;
	padding-top: 10px;
	font-style: italic;
}

/* Container untuk meta dan share */
.meta-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    width: 100%;
}

.meta {
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .meta-share-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .meta-share-container {
        align-items: center;
    }
}