/* ==========================================================================
   Theme 4 - Solid Wealth Limited - Premium Gold/Black Theme
   Extracted from monolithic home.blade.php into modular stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --gold: #D4AF37;
    --gold-light: #F5D76E;
    --gold-dark: #B8860B;
    --gold-primary: #D4AF37;
    --black: #000000;
    --dark-gray: #121212;
    --dark-bg: #000000;
    --dark-deeper: #0a0a0a;
    --dark-lighter: #111111;
    --dark-card: #0d0d0d;
}

/* --------------------------------------------------------------------------
   2. Base / Reset
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--black);
    color: white;
}

/* --------------------------------------------------------------------------
   3. Particles Background
   -------------------------------------------------------------------------- */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-bg {
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   5. Typography & Decorative
   -------------------------------------------------------------------------- */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.5));
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --------------------------------------------------------------------------
   6. Cards – Testimonial & Team
   -------------------------------------------------------------------------- */
.testimonial-card {
    transition: all 0.3s ease;
    background-color: var(--dark-gray);
    color: white;
}

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

.team-card {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-gray);
}

.team-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Scroll Animations
   -------------------------------------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   8. Utility Decorations
   -------------------------------------------------------------------------- */
.gold-border {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* --------------------------------------------------------------------------
   9. Navigation
   -------------------------------------------------------------------------- */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.hidden {
    transform: translateY(-20px);
    opacity: 0;
}

/* --------------------------------------------------------------------------
   10. Sections – Dark Backgrounds
   -------------------------------------------------------------------------- */
.section-dark {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-deeper) 100%);
    color: #ffffff;
    position: relative;
}

.form-section {
    background-color: rgba(25, 25, 25, 0.96);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */
.subscription-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.subscription-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   12. Buttons
   -------------------------------------------------------------------------- */
.gold-button {
    background-color: var(--gold);
    color: #000000;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.gold-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------------------------------------
   13. Investment Cards
   -------------------------------------------------------------------------- */
.investment-card {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-lighter));
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 8px 8px 0 0;
}

.plan-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.plan-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer-plan 3s infinite;
}

@keyframes shimmer-plan {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.rate-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.02);
    position: relative;
}

.rate-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--gold-primary), transparent, var(--gold-primary));
    animation: rotate-circle 4s linear infinite;
    z-index: -1;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-item {
    padding: 12px;
    margin: 8px 0;
    background: rgba(212, 175, 55, 0.02);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.invest-btn {
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transition: left 0.5s ease;
}

.invest-btn:hover::before {
    left: 100%;
}

.invest-btn:hover {
    background: var(--gold-primary);
    color: black;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.plan-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--gold-primary);
    opacity: 0.15;
    transition: all 0.3s ease;
}

.investment-card:hover .plan-icon {
    opacity: 0.4;
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: black;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
}

/* --------------------------------------------------------------------------
   14. Certificates / Licenses
   -------------------------------------------------------------------------- */
.certificate-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-container:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* --------------------------------------------------------------------------
   15. Google Translate Widget Overrides — loaded from /asset/css/google-translate.css
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   16. Site Header — Ticker Row
   -------------------------------------------------------------------------- */
#ticker-row {
    background: #000;
}

