/* Global Styles */
:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --secondary: #7209b7;
    --accent: #f72585;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f8f9fa;
    --border: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-medium);
    background-color: #ffffff;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Hotel Section */
.hotel-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.hotel-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hotel-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-content {
    padding: 20px;
}

.hotel-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.location {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.location i {
    margin-right: 6px;
    color: var(--primary);
}

/* Hotel Specs */
.hotel-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-medium);
}

.spec-item i {
    margin-right: 8px;
    color: var(--primary);
    width: 16px;
    text-align: center;
}

/* Hotel Stats */
.hotel-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0 15px;
}

.stat {
    text-align: center;
    padding: 10px;
    background: rgba(67, 97, 238, 0.05);
    border-radius: var(--radius-sm);
}

.stat .value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.stat .label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

/* Progress Bar */
.progress-container {
    margin: 15px 0;
    width: 100%;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.invest-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invest-btn i {
    margin-right: 8px;
}

.invest-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* No Hotels State */
.no-hotels {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}

.no-hotels img {
    width: 150px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-hotels h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-hotels p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.refresh-btn {
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: var(--primary-dark);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    padding: 12px 30px;
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.load-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.popup-gallery {
    height: 100%;
    position: relative;
}

.gallery-main {
    height: 350px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    background: #f5f5f5;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
    border-color: var(--primary);
}

.popup-content {
    height: 100%;
    overflow-y: auto;
    padding: 30px;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.popup-header .location {
    font-size: 15px;
    color: var(--text-light);
}

.popup-body {
    padding-bottom: 20px;
}

/* Property Specs in Popup */
.property-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.property-specs .spec-item {
    font-size: 14px;
    color: var(--text-medium);
}

/* Investment Stats */
.investment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: #f8f9ff;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.stat-card .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-light);
}

/* Investment Progress */
.investment-progress {
    margin-bottom: 30px;
}

.investment-progress .progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.investment-progress .progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.investment-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 0.8s ease;
}

.investment-progress .progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}

/* Description Section */
.description {
    margin-bottom: 30px;
}

.description h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Facilities Section */
.facilities h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.facilities h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.facility-badge {
    background: #f0f5ff;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.facility-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Popup Actions */
.popup-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.action-btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn i {
    margin-right: 8px;
}

.action-btn.secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-medium);
}

.action-btn.secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .popup-container {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .popup-gallery {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hotel-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .investment-stats {
        grid-template-columns: 1fr;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }
    
    .hotel-specs,
    .hotel-stats {
        grid-template-columns: 1fr;
    }
    
    .popup-container {
        border-radius: var(--radius-md);
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
    
    .property-specs {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background-color: #343434;
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #4a4a4a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fffd8f;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4361ee;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #c9c9c9;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c9c9c9;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #0a89ff;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #c9c9c9;
    font-size: 14px;
    line-height: 1.5;
}

.contact-icon {
    margin-right: 10px;
    color: #4361ee;
    font-size: 16px;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4361ee;
    color: #fff;
    transform: translateY(-3px);
}

/* App Download Section */
.app-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #4a4a4a;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.app-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.3;
}

.app-text span:first-child {
    font-size: 10px;
    color: #c9c9c9;
}

/* Partners Section */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 80px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #c9c9c9;
}

/* Responsive Footer */
@media (max-width: 1199px) {
    .footer-about {
        grid-column: span 3;
    }
    
    .footer-app {
        grid-column: 1;
    }
    
    .footer-partners {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-partners {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about,
    .footer-app,
    .footer-partners {
        grid-column: span 1;
    }
    
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Login Required Popup */
.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-popup-container {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.login-popup-overlay.active .login-popup-container {
    transform: translateY(0);
}

.login-popup-content {
    text-align: center;
}

.login-popup-content i {
    font-size: 50px;
    color: var(--warning);
    margin-bottom: 20px;
}

.login-popup-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-popup-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.popup-buttons .btn-secondary,
.popup-buttons .btn-primary {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-buttons .btn-secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-medium);
}

.popup-buttons .btn-secondary:hover {
    background: #f1f5f9;
}

.popup-buttons .btn-primary {
    background: var(--primary);
    color: white;
    text-decoration: none;
    border: none;
}

.popup-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================= */
/* INVESTMENT PAGE SPECIFIC STYLES (ADDED) */
/* ========================================= */

.investment-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}

.investment-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.investment-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.investment-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.investment-body {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem;
}

.investment-image {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}

.investment-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.investment-details {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0 15px;
}

.detail-item {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--text-medium);
}

.detail-value {
    font-weight: 500;
}

.token-form {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.token-input-group {
    display: flex;
    align-items: center;
}

.token-input-group button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.token-input-group button:hover {
    background: #f0f0f0;
}

.token-input-group input {
    flex: 1;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    font-size: 1rem;
    font-weight: 600;
}

.total-investment {
    background: #e8f4ff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    text-align: center;
}

.total-investment .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.total-investment .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.investment-info {
    background: #f9f9f9;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FIXED CHECKBOX STYLES */
.terms-container {
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
}

.terms-title {
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    margin: 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.term-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.term-item:last-child {
    border-bottom: none;
}

/* Penyebab checkbox tidak terlihat sebelumnya:
   1. Tidak ada reset appearance untuk browser default
   2. Gaya browser default yang tidak konsisten
   3. Ukuran yang terlalu kecil tanpa border jelas */
.term-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    margin-right: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    /* Pastikan checkbox memiliki background */
    background-color: white;
    /* Pastikan tidak ada properti yang menutupi */
    display: inline-block;
    opacity: 1;
}

.term-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.term-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.term-label {
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.btn-payment {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-payment:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .investment-image,
    .investment-details {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .investment-image {
        margin-bottom: 1.5rem;
    }
}

/* Testimoni Section */
.testimoni-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimoni-section .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
    color: #2c3e50;
}

.testimoni-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimoni-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimoni-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimoni-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #3498db;
}

.testimoni-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimoni-photo .no-photo {
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 1.5rem;
}

.testimoni-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.testimoni-info p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimoni-content {
    position: relative;
}

.testimoni-rating {
    margin-bottom: 15px;
    color: #f39c12;
}

.testimoni-content blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: #34495e;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.testimoni-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #3498db;
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimoni-grid {
        grid-template-columns: 1fr;
    }
    
    .testimoni-section {
        padding: 60px 0;
    }
}