/* ==============================================
   ABANGDA88 - MAIN STYLESHEET (OPTIMIZED)
   Dark Green Luxury Theme - High Contrast Accessibility
   Version: 2.0
   ============================================== */


/* ========== CSS RESET & BASE ========== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 1rem = 10px for easier calculation */
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(0, 60, 20, 0.4) 0%, rgba(0, 20, 5, 0.95) 100%), linear-gradient(135deg, #0a1a0a 0%, #051205 50%, #020a02 100%);
    color: #e8f5e9;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 1.6rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ========== TYPOGRAPHY ========== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: #d4ebd6;
}

a {
    text-decoration: none;
    color: #4caf50;
    transition: all 0.3s ease;
}

a:hover {
    color: #66bb6a;
}


/* ========== HEADER STYLES ========== */

.top-header {
    background: rgba(2, 12, 3, 0.98);
    border-bottom: 2px solid #1b5e20;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8rem;
    gap: 2rem;
}

.brand-link {
    display: block;
    flex-shrink: 0;
}

.brand-icon {
    max-width: 18rem;
    height: auto;
}

.top-menu {
    display: flex;
    gap: 1.5rem;
}

.top-menu a {
    padding: 1rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0a2a0a, #031203);
    border: 1px solid #2e7d32;
    color: #c8e6c9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.top-menu a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    border-color: #4caf50;
}

.top-menu a.primary {
    background: linear-gradient(135deg, #1b5e20, #0a2a0a);
    border-color: #4caf50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    color: #ffffff;
}


/* ========== HERO SECTION ========== */

.hero {
    padding: 4rem 0;
}

.hero-box {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.15), rgba(0, 30, 5, 0.4));
    border-radius: 2.8rem;
    border: 2px solid #2e7d32;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.hero-inner {
    padding: 3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10rem;
    background: rgba(10, 42, 10, 0.9);
    border: 1px solid #2e7d32;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #a5d6a7;
}

.badge i {
    width: 1rem;
    height: 1rem;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 12px #4caf50;
    display: inline-block;
}

.hero-image-wrap {
    padding: 1rem;
    background: linear-gradient(135deg, #1b5e20, #0a2a0a, #2e7d32);
    border-radius: 2.6rem;
}

.hero-image {
    border-radius: 2rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: block;
    padding: 1.4rem 2rem;
    border-radius: 1.2rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #ffffff;
    border: 1px solid #4caf50;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0a2a0a, #031203);
    color: #c8e6c9;
    border: 1px solid #2e7d32;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0e3a0e, #051805);
    transform: translateY(-2px);
}

.btn-blink {
    animation: btnBlink 1.5s infinite;
}

@keyframes btnBlink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    }
}


/* ========== SECTION STYLES ========== */

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    display: inline-block;
    margin-bottom: 1rem;
    color: #81c784;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 3.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #a5d6a7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ========== CARD GRID ========== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.8rem;
}

.item-card {
    background: linear-gradient(135deg, #0a1f0a, #020a02);
    border: 1px solid #2e7d32;
    border-radius: 1.6rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #4caf50;
}

.item-img {
    padding: 1rem;
}

.item-img img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

.item-name {
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #c8e6c9;
    background: linear-gradient(135deg, #1b5e20, #0a2a0a);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ========== INFO PANEL ========== */

.info-panel,
.article-panel {
    padding: 0.2rem;
    border-radius: 2.8rem;
    background: linear-gradient(135deg, #2e7d32, #0a2a0a, #1b5e20);
}

.info-inner,
.article-inner {
    border-radius: 2.6rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0a1f0a, #020a02);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #051205;
    border-radius: 1.6rem;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 1.5rem;
    border: 1px solid #1b5e20;
    text-align: left;
    color: #d4ebd6;
}

.info-table th {
    width: 35%;
    background: linear-gradient(135deg, #1b5e20, #0a2a0a);
    color: #ffffff;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 700;
}


/* ========== ARTICLE CONTENT ========== */

.article-inner h1,
.article-inner h2,
.article-inner h3 {
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.article-inner h1 {
    font-size: 3.2rem;
    text-align: center;
}

.article-inner h2 {
    font-size: 2.6rem;
    margin-top: 3rem;
    color: #81c784;
}

.article-inner h3 {
    font-size: 2rem;
    margin-top: 2rem;
    color: #a5d6a7;
}

.article-inner p {
    line-height: 1.8;
    color: #c8e6c9;
    margin-bottom: 1.5rem;
}


/* ========== CTA BUTTON ========== */

.cta-button-container {
    text-align: center;
    margin: 3rem 0;
}

.btn-cta {
    display: inline-block;
    padding: 1.6rem 4rem;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 1.2rem;
    border: 1px solid #4caf50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #388e3c, #2e7d32);
}


/* ========== REVIEWS SECTION ========== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #0a1f0a, #031203);
    padding: 2rem;
    border-radius: 1.6rem;
    border: 1px solid #2e7d32;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: #4caf50;
}

.reviewer-name {
    font-weight: 700;
    color: #81c784;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.review-text {
    line-height: 1.7;
    color: #c8e6c9;
    font-style: italic;
}

.review-text strong {
    color: #a5d6a7;
}


/* ========== FAQ SECTION ========== */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #051205;
    border: 1px solid #2e7d32;
    border-radius: 1.6rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.6rem;
    background: linear-gradient(135deg, #1b5e20, #0a2a0a);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.faq-answer {
    padding: 1.6rem;
    background: #0a1f0a;
    color: #c8e6c9;
    line-height: 1.8;
    border-top: 1px solid #2e7d32;
}


/* ========== FOOTER ========== */

footer {
    background: #020a02;
    border-top: 2px solid #1b5e20;
    padding: 4rem 0;
    text-align: center;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    max-width: 14rem;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #81c784;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.4rem;
}

.footer-links a:hover {
    color: #a5d6a7;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 1.2rem;
    color: #689f38;
}

.footer-copyright small {
    display: block;
    margin-top: 0.5rem;
    color: #558b2f;
}


/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-wrap {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    .hero-inner {
        padding: 2rem;
    }
    .cta-row {
        grid-template-columns: 1fr;
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    .info-table th {
        width: 100%;
    }
    .article-inner h1 {
        font-size: 2.4rem;
    }
    .article-inner h2 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 2.4rem;
    }
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .brand-icon {
        max-width: 14rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .btn {
        font-size: 1.4rem;
        padding: 1.2rem;
    }
    .btn-cta {
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
    }
    .article-inner h1 {
        font-size: 2rem;
    }
    .article-inner h2 {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1.4rem;
        padding: 1.2rem;
    }
    .footer-links {
        gap: 1rem;
    }
    .footer-links a {
        font-size: 1.2rem;
    }
}


/* ========== ACCESSIBILITY & UTILITY ========== */


/* Focus visible for keyboard navigation */

:focus-visible {
    outline: 3px solid #4caf50;
    outline-offset: 2px;
    border-radius: 4px;
}


/* Skip to content link for accessibility */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1b5e20;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 999;
}

.skip-to-content:focus {
    top: 0;
}


/* High contrast text selection */

::selection {
    background: #2e7d32;
    color: #ffffff;
}

::-moz-selection {
    background: #2e7d32;
    color: #ffffff;
}


/* Scrollbar styling for better UX */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #051205;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #2e7d32;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4caf50;
}


/* ========== ANIMATIONS ========== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.section {
    animation: fadeInUp 0.6s ease-out;
}


/* ========== LOADING STATES ========== */

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #2e7d32;
    border-top-color: #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}