/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

.body-wrapper {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.page-container {
    scroll-behavior: smooth;
}

/* Advertisement Disclosure */
.ad-disclosure {
    background-color: #f1f1f1;
    color: #666;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #2ecc71;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta-btn {
    padding: 18px 45px;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}

.hero-cta-btn:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Comparison Section */
.comparison-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e67e22;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.product-info {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.product-provider {
    color: #2ecc71;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-icon {
    color: #2ecc71;
    font-weight: 700;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
}

.comparison-details {
    padding-top: 25px;
    border-top: 1px solid #eee;
    margin-bottom: 35px;
}

.detail-box {
    margin-bottom: 20px;
}

.detail-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.detail-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.cta-button:hover {
    background-color: #27ae60;
}

.secondary-cta {
    background-color: #3498db;
}

.secondary-cta:hover {
    background-color: #2980b9;
}

/* Tips Detail Section */
.tips-detail-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 25px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #2ecc71;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tip-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tip-p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
}

/* Guide Selection Section */
.guide-selection {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 25px;
    text-align: center;
}

.guide-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.type-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.type-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.type-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2ecc71;
}

.type-p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.type-recommendation {
    font-size: 1.1rem;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 80px 25px;
    text-align: center;
}

.max-content {
    max-width: 1200px;
    margin: 0 auto;
}

.text-white {
    color: #fff !important;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-h {
    color: #2ecc71;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.trust-p {
    color: #bdc3c7;
    margin: 0;
}

/* Footer Styles */
.main-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 25px;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.consumer-notice {
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #34495e;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: #2ecc71;
    border-bottom-color: #2ecc71;
}

.copyright-text {
    font-size: 0.8rem;
    margin: 0;
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.popup-text {
    color: #333;
}

.popup-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 2px solid #2ecc71;
    display: inline-block;
    padding-bottom: 5px;
}

.popup-section-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .hero-section {
        height: 60vh;
    }
}
