/* CSS Reset and Styling Variables */
:root {
    --color-bg: #070a13;
    --color-bg-alt: #0c1222;
    --color-card: rgba(17, 24, 43, 0.65);
    --color-card-hover: rgba(25, 35, 62, 0.8);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    
    --color-primary: #e2b857; /* Premium Gold */
    --color-primary-hover: #f1cf7c;
    --color-primary-glow: rgba(226, 184, 87, 0.25);
    
    --color-emerald: #10b981; /* Investment growth green */
    --color-emerald-glow: rgba(16, 185, 129, 0.2);
    
    --color-red: #ef4444;
    
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-speed: 0.3s;
    --border-radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Glow Decorative Elements */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.bg-glow-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
}

.bg-glow-2 {
    top: 40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-emerald-glow) 0%, transparent 70%);
}

.bg-glow-3 {
    bottom: -10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
}

/* Typography & General Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(226, 184, 87, 0.08);
    border: 1px solid rgba(226, 184, 87, 0.2);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-emerald);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--color-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: transform var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
    gap: 8px;
}

.btn-icon svg {
    transition: transform 0.2s ease;
}

.btn-icon:hover svg {
    transform: scale(1.1) translateX(1px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #070a13;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    box-shadow: 0 6px 20px rgba(241, 207, 124, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 6px;
    background-color: rgba(226, 184, 87, 0.05);
    border: 1px solid rgba(226, 184, 87, 0.15);
    color: var(--color-primary);
}

.btn-nav:hover {
    background-color: var(--color-primary);
    color: #070a13;
    box-shadow: 0 4px 10px var(--color-primary-glow);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(32, 186, 90, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(7, 10, 19, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 18px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.logo-accent {
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.nav-link:hover, .nav-link.active-nav-link {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px 0;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Visual Card (Portfolio simulation) */
.hero-visual {
    position: relative;
    width: 100%;
}

.visual-card {
    border-color: rgba(226, 184, 87, 0.15);
    background: linear-gradient(135deg, rgba(17, 24, 43, 0.8) 0%, rgba(10, 15, 29, 0.9) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.portfolio-chart-placeholder {
    width: 100%;
    height: 160px;
    background: rgba(7, 10, 19, 0.6);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.chart-tooltip {
    position: absolute;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chart-tooltip strong {
    color: var(--color-primary);
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.text-gold {
    color: var(--color-primary);
}

/* Sections General */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Comprehensive Market Analysis Cards */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.analysis-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(226, 184, 87, 0.08);
    border: 1px solid rgba(226, 184, 87, 0.15);
    border-radius: 12px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.analysis-card:nth-child(2) .icon-wrapper {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
}

.card-heading {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Working Hours Section Layout */
.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hours-info {
    max-width: 500px;
}

.hours-info .section-title {
    margin-top: 10px;
}

.live-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-top: 24px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.live-status-indicator.open .status-dot {
    background-color: var(--color-emerald);
}

.live-status-indicator.closed .status-dot {
    background-color: var(--color-red);
}

.status-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-card {
    padding: 24px 32px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.hours-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Dynamic current day highlight style */
.hours-row.active-day {
    background: rgba(226, 184, 87, 0.05);
    border-color: rgba(226, 184, 87, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hours-row.active-day .day-name {
    color: var(--color-primary);
    font-weight: 600;
}

.day-name {
    font-weight: 500;
    font-size: 1rem;
}

.day-time {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.hours-row.active-day .day-time {
    color: var(--color-text);
}

.row-closed {
    opacity: 0.75;
}

.row-closed .day-time {
    color: var(--color-red);
}

/* Footer Section */
.footer {
    background-color: #03060c;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 440px;
}

.footer-desc {
    color: var(--color-text-muted);
    margin-top: 18px;
    font-size: 0.95rem;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-list svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal:hover {
    color: var(--color-text);
}

.temp-tag {
    background-color: rgba(226, 184, 87, 0.08);
    border: 1px solid rgba(226, 184, 87, 0.15);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.animate-slide-up-more {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s ease 0.4s forwards;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hours-info {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}
