:root {
    --primary-gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --bg-dark: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(212, 175, 55, 0.2);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-effect: blur(10px);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
}

#loader-logo {
    width: 150px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.loader-bar {
    width: 100px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to { left: 100%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    padding: 1rem 0;
    backdrop-filter: var(--glass-effect);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    transition: var(--transition);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:not(.btn-contact):not(#toggle-lang)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn-contact):not(#toggle-lang):hover::after {
    width: 100%;
}

.btn-contact {
    border: 1px solid var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
}

.btn-contact:hover {
    background: var(--primary-gold);
    color: var(--bg-dark) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 6, 8, 0.95) 20%, rgba(6, 6, 8, 0.45) 100%),
                linear-gradient(to bottom, transparent 30%, rgba(6, 6, 8, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--primary-gold);
}

/* Market Section */
.market {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.market-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: var(--glass-effect);
    transition: var(--transition);
    position: relative;
    overflow: hidden; /* Keep the shimmer inside boundaries */
}

/* Luxury Gold Sheen Sweep overlay */
.market-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0.18) 50%,
        rgba(212, 175, 55, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 1;
    transition: none;
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

/* Hover sheen trigger */
.market-card:hover::after {
    animation: goldSheenSweep 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Tick sheen trigger classes */
.market-card.tick-up-pulse::after,
.market-card.tick-down-pulse::after {
    animation: goldSheenSweep 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes goldSheenSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.market-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price-info {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-left: 5px;
}

.change {
    font-size: 1rem;
    font-weight: 600;
}

.up { color: #4ade80; }
.down { color: #f87171; }

.price-cell.flash {
    color: var(--primary-gold);
    animation: priceFlash 1s ease;
}

@keyframes priceFlash {
    0% { transform: scale(1); text-shadow: 0 0 10px var(--primary-gold); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px var(--primary-gold); }
    100% { transform: scale(1); text-shadow: none; }
}

/* Flash Effects for Live Changes */
@keyframes flashGreen {
    0% { background: rgba(76, 175, 80, 0.4); }
    100% { background: transparent; }
}

@keyframes flashRed {
    0% { background: rgba(244, 67, 54, 0.4); }
    100% { background: transparent; }
}

.flash-up td.price-cell {
    animation: flashGreen 1.5s ease-out;
}

.flash-down td.price-cell {
    animation: flashRed 1.5s ease-out;
}

.price-cell {
    transition: color 0.3s ease;
    position: relative;
}

.market-table-container {
    overflow-x: auto;
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.market-table th, .market-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.market-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}

/* Tools Section */
.tools {
    padding: 8rem 0;
    background: rgba(212, 175, 55, 0.02);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.tool-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: var(--glass-effect);
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.tool-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-card p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.input-group input, 
.input-group select {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    width: 100%; /* Kutuların taşmasını engeller */
    display: block;
}

.input-group select option {
    background: #1a1a1a;
    color: #fff;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--primary-gold);
    background: #222;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Küçük ekranlarda kutuların alt alta geçmesi için */
@media (max-width: 600px) {
    .input-row {
        grid-template-columns: 1fr;
    }
}

/* === E-COMMERCE & PAYTR STYLES === */
.cart-icon-wrapper { position: relative; }
#cart-count { position: absolute; top: -8px; right: -12px; background: #ef4444; color: white; border-radius: 50%; padding: 2px 6px; font-size: 0.7rem; font-weight: bold; }

/* Modern Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: 0.6s;
}

.btn-add-to-cart:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    border-color: var(--primary-gold);
}

.btn-add-to-cart:hover::before {
    left: 100%;
}

.btn-add-to-cart i {
    transition: transform 0.3s ease;
}

.btn-add-to-cart:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.checkout-form-container { display: flex; flex-direction: column; gap: 15px; }
.form-section { background: rgba(255,255,255,0.03); padding: 15px; border-radius: 10px; border: 1px solid var(--border-color); }
.form-section h3 { margin-bottom: 15px; color: var(--primary-gold); font-size: 1.1rem; border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding-bottom: 8px; }
.cart-summary { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 15px; }
#cart-items { max-height: 300px; overflow-y: auto; }
.footer-payment-logos i { transition: transform 0.3s; }
.footer-payment-logos i:hover { transform: scale(1.1); }

.calculator-result {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    text-align: center;
    border: 1px dashed var(--primary-gold);
}

.calculator-result .label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.pl-results {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pl-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.pl-item .label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

#pl-current-value {
    font-weight: 700;
    font-size: 1.2rem;
}

#pl-diff {
    font-weight: 700;
    font-size: 1.2rem;
}

#pl-diff.up { color: #4caf50; }
#pl-diff.down { color: #f44336; }

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    pointer-events: none;
    font-size: 0.8rem;
}

select {
    appearance: none;
    -webkit-appearance: none;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    padding: 3.5rem 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--border-color);
    background: rgba(255,255,255,0.05);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-content {
    flex: 1;
}

.about-content span {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--primary-gold);
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--text-white);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-item .number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-item .label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: var(--glass-effect);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.reviewer-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.reviewer-info span {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-gray);
}

.contact-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    backdrop-filter: var(--glass-effect);
    width: 100%;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.empty-portfolio p {
    color: var(--text-gray);
    margin-top: 1rem;
}



/* PWA Install Button */
.pwa-install-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: var(--transition);
}

.pwa-install-btn.show {
    transform: translateY(0);
    opacity: 1;
}

.pwa-install-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .pwa-install-btn { bottom: 90px; right: 15px; padding: 10px 18px; font-size: 0.9rem; }
}

.cta-card p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 0;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.author-credit {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: rgba(212, 175, 55, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    aspect-ratio: 16/9;
    cursor: none;
    transition: var(--transition);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-flex { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .nav-links { 
        display: flex; 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn { display: flex !important; }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
    .btn-secondary { margin-left: 0; }
}
/* New Features Styles */



/* 1. Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
}

.portfolio-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: var(--glass-effect);
}

.portfolio-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.btn-add-asset {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-add-asset:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.portfolio-summary {
    display: flex;
    gap: 3rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item span {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.summary-item strong {
    font-size: 1.5rem;
    color: var(--text-white);
}

.portfolio-list {
    display: grid;
    gap: 1.5rem;
}

.empty-portfolio {
    text-align: center;
    padding: 5rem 0;
    color: var(--text-gray);
}

.empty-portfolio i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.asset-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.asset-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-color);
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.asset-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.asset-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.asset-details span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.asset-values {
    text-align: right;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.asset-current-val strong {
    display: block;
    font-size: 1.1rem;
}

.asset-current-val span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.asset-profit {
    font-weight: 700;
    min-width: 100px;
}

.btn-delete-asset {
    background: transparent;
    border: none;
    color: #f87171;
    cursor: pointer;
    opacity: 0.3;
    transition: var(--transition);
    padding: 10px;
}

.btn-delete-asset:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* 3. Alarm Toast */
.alarm-toast {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background: #1a1a1a;
    border: 1px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alarm-toast.show {
    bottom: 30px;
}

.alarm-toast i {
    font-size: 2rem;
    color: var(--primary-gold);
    animation: bellRing 1s infinite;
}

@keyframes bellRing {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    100% { transform: rotate(0); }
}

/* WhatsApp Button in Table */
.btn-table-wa {
    background: #25d366;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-table-wa:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px #25d366;
}

/* Language Switch */
.lang-switch a {
    font-weight: 700 !important;
    color: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Hover scales */
a, button, .market-card, .tool-card {
    cursor: none; /* Let the custom cursor show */
}

/* 6. Map styles */
.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #111;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2.5rem;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-gold);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .portfolio-summary {
        width: 100%;
        justify-content: space-between;
    }
    
    .asset-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .asset-values {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
}

/* New Feature Styles */
.chart-modal-content {
    background: #0a0a0a !important;
}

.range-info {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.range-info span span {
    font-weight: 700;
}

[id$="-low"] { color: #f87171; }
[id$="-high"] { color: #4ade80; }

.btn-secondary i {
    margin-right: 8px;
}


/* ==========================================================================
   GOLD & CARBON ULTIMATE LUXURY THEME OVERRIDES (B2B JEWELER REDESIGN)
   ========================================================================== */

:root {
    --primary-gold: #c5a85c;
    --gold-bright: #ffd700;
    --gold-dark: #8a6f27;
    --gold-glow: rgba(197, 168, 92, 0.4);
    --gold-gradient: linear-gradient(135deg, #f7e0a3 0%, #c5a85c 40%, #8a6f27 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #ffd700 40%, #c5a85c 100%);
    --bg-dark: #060608;
    --bg-luxury-radial: radial-gradient(circle at 50% 30%, #15151e 0%, #060608 100%);
    --card-bg: rgba(18, 18, 24, 0.75);
    --border-color: rgba(197, 168, 92, 0.15);
    --border-color-glow: rgba(255, 215, 0, 0.55);
    --text-white: #ffffff;
    --text-gray: #ababaf;
    --glass-effect: blur(20px);
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    background: var(--bg-luxury-radial) !important;
    background-attachment: fixed !important;
}

/* Ambient Ambient Gold Glow Behind Main Sections */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.03) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Glassmorphism & Gold Glow Cards */
.market-card, .tool-card, .service-item, .stat-item, .review-card, .cta-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    backdrop-filter: var(--glass-effect) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.03) !important;
    transition: var(--transition) !important;
    overflow: hidden;
}

.market-card:hover, .tool-card:hover, .service-item:hover, .stat-item:hover, .review-card:hover, .cta-card:hover {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 15px 40px rgba(197, 168, 92, 0.12), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    transform: translateY(-8px) !important;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #060608;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Preloader Upgrades */
.preloader {
    background: #060608 !important;
}

/* Navbar Luxury Glare */
.navbar {
    background: rgba(6, 6, 8, 0.4) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(197, 168, 92, 0.08) !important;
}

.navbar.scrolled {
    background: rgba(6, 6, 8, 0.88) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

/* ==========================================================================
   LIVE REAL-TIME PRICE TICK INDICATORS (NEON GLOW)
   ========================================================================== */

@keyframes pulseBorderGreen {
    0% { border-color: rgba(74, 222, 128, 0.8); box-shadow: 0 0 15px rgba(74, 222, 128, 0.4); }
    100% { border-color: var(--border-color); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
}

@keyframes pulseBorderRed {
    0% { border-color: rgba(248, 113, 113, 0.8); box-shadow: 0 0 15px rgba(248, 113, 113, 0.4); }
    100% { border-color: var(--border-color); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
}

.tick-up-pulse {
    animation: pulseBorderGreen 1.8s ease-out forwards;
}

.tick-down-pulse {
    animation: pulseBorderRed 1.8s ease-out forwards;
}

/* ==========================================================================
   BLOOMBERG-STYLE INTERACTIVE TECHNICAL TERMINAL
   ========================================================================== */

.terminal-control-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-terminal {
    background: rgba(197, 168, 92, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-terminal:hover, .btn-terminal.active {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: var(--gold-bright);
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* ==========================================================================
   FAVORITE STAR SYSTEM & WATCHLIST CONTAINER
   ========================================================================== */

.watchlist-section {
    background: rgba(197, 168, 92, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3.5rem;
    display: none; /* Only show when there are favorites */
    animation: fadeIn 0.8s ease-out;
}

.watchlist-title {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(197, 168, 92, 0.1);
    padding-bottom: 10px;
}

.watchlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.btn-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.btn-fav:hover {
    color: var(--gold-bright);
    transform: scale(1.2);
}

.btn-fav.active {
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* ==========================================================================
   ADVANCED B2B CART DRAWER (SLIDING PANEL)
   ========================================================================== */

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #0d0d12;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 9995;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 168, 92, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.cart-drawer-header h2 {
    color: var(--primary-gold);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--gold-bright);
    transform: rotate(90deg);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 5px;
}

.cart-drawer-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.cart-drawer-item:hover {
    border-color: var(--primary-gold);
    background: rgba(197, 168, 92, 0.03);
}

.cart-item-info h4 {
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
}

.cart-remove-icon {
    color: #f87171;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove-icon:hover {
    transform: scale(1.2);
}

.cart-drawer-footer {
    border-top: 1px solid rgba(197, 168, 92, 0.1);
    padding-top: 1.5rem;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-drawer-checkout {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-drawer-checkout:hover {
    box-shadow: 0 8px 25px var(--gold-glow);
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   DYNAMIC PRICE ALARM PANEL & ALARM ENGINE STYLES
   ========================================================================== */

.alarm-controls-card {
    background: rgba(197, 168, 92, 0.03);
    border: 1px dashed var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.alarm-grid-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .alarm-grid-inputs {
        grid-template-columns: 1fr;
    }
}

.alarm-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 12px 25px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.alarm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.alarm-list-container {
    margin-top: 1.5rem;
    max-height: 150px;
    overflow-y: auto;
}

.alarm-item-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.1);
    border-radius: 30px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.alarm-remove-btn {
    color: #f87171;
    cursor: pointer;
}

/* ==========================================================================
   PORTFOLIO DISTRIBUTION WHEEL GRAPHICS (LIGHT SVG)
   ========================================================================== */

.portfolio-dashboard {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .portfolio-dashboard {
        grid-template-columns: 1fr;
    }
}

.portfolio-wheel-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.portfolio-donut-svg {
    transform: rotate(-90deg);
}

.portfolio-donut-center-text {
    position: absolute;
    text-align: center;
}

.portfolio-donut-center-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.portfolio-donut-center-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* ==========================================================================
   FLOATING WhatsApp ASSISTANT BUBBLE (LUCKY DIALOG)
   ========================================================================== */

.wa-assistant-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9980;
    transition: var(--transition);
}

.wa-assistant-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.wa-assistant-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-assistant-box {
    position: fixed;
    bottom: 105px;
    left: -400px;
    width: 360px;
    background: #0d0d12;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    z-index: 9985;
    transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wa-assistant-box.active {
    left: 30px;
}

.wa-assistant-header {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-assistant-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-assistant-header span {
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.wa-assistant-body {
    padding: 1.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.wa-assistant-rep {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.08);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.wa-assistant-rep:hover {
    border-color: var(--primary-gold);
    background: rgba(197, 168, 92, 0.03);
}

.wa-assistant-avatar {
    width: 45px;
    height: 45px;
    background: rgba(197, 168, 92, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 1px solid var(--border-color);
}

.wa-assistant-rep-info {
    flex: 1;
}

.wa-assistant-rep-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.wa-assistant-rep-info span {
    font-size: 0.8rem;
    color: #4ade80;
}

.wa-assistant-msg {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.05);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.wa-assistant-btn-call {
    width: 35px;
    height: 35px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.wa-assistant-btn-call:hover {
    transform: scale(1.15);
}

.wa-assistant-shortcuts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-shortcut-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 92, 0.1);
    color: var(--text-white);
    padding: 10px 15px;
    text-align: left;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-shortcut-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(197, 168, 92, 0.04);
}

.wa-shortcut-btn i {
    color: var(--primary-gold);
}

.wa-assistant-hours {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Align and clean responsive for WA Bubble */
@media (max-width: 768px) {
    .wa-assistant-btn { bottom: 15px; left: 15px; width: 50px; height: 50px; font-size: 1.5rem; }
    .wa-assistant-box { left: -400px; bottom: 80px; width: calc(100% - 30px); }
    .wa-assistant-box.active { left: 15px; }
}

/* ==========================================================================
   PREMIUM ASYMMETRICAL B2B HERO STYLING & MIXED TYPOGRAPHY
   ========================================================================== */

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--primary-gold);
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 5px;
}

.hero-ticker-widget {
    display: flex;
    gap: 2.5rem;
    background: rgba(18, 18, 24, 0.45);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: var(--glass-effect);
    margin-bottom: 3rem;
    max-width: 680px;
}

.ticker-widget-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-widget-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    background: rgba(197, 168, 92, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(197, 168, 92, 0.15);
}

.ticker-widget-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.ticker-widget-item span {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-ticker-widget {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem;
    }
}

/* Luxury Sheen Animated Button Effect */
.btn-luxury-sheen {
    position: relative;
    overflow: hidden;
}

.btn-luxury-sheen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    animation: luxurySheenSweep 5s infinite ease-in-out;
}

@keyframes luxurySheenSweep {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

/* Luxury Secondary Outline Button Style */
.btn-luxury-outline {
    background: transparent !important;
    border: 1px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    border-radius: 5px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-luxury-outline:hover {
    background: var(--gold-gradient) !important;
    color: var(--bg-dark) !important;
    border-color: var(--gold-bright) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* ==========================================================================
   CANLI KART İÇİ SVG GRAFİKLER (SPARKLINES)
   ========================================================================== */
.sparkline-container {
    width: 100%;
    height: 40px;
    margin: 1.2rem 0 0.8rem 0;
    position: relative;
    z-index: 2;
    pointer-events: none; /* Let card clicks work perfectly */
    overflow: visible;
}

.sparkline-svg {
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.4));
    overflow: visible;
}

.market-card {
    padding: 2.2rem 1.5rem 1.5rem 1.5rem !important;
}

/* ==========================================================================
   GOLD CALCULATOR KARAT BADGES & RANGE SLIDER
   ========================================================================== */
.btn-karat-badge {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-gray) !important;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    outline: none;
}

.btn-karat-badge.active,
.btn-karat-badge:hover {
    background: var(--gold-gradient) !important;
    color: var(--bg-dark) !important;
    border-color: var(--gold-bright) !important;
    box-shadow: 0 4px 15px var(--gold-glow) !important;
}

.luxury-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.luxury-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 1px solid var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-glow);
    cursor: pointer;
    transition: var(--transition);
}

.luxury-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.luxury-range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 1px solid var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-glow);
    cursor: pointer;
    transition: var(--transition);
}

.luxury-range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* ==========================================================================
   B2B BİRİKİM HEDEFI DASHBOARD CARD
   ========================================================================== */
.portfolio-goal-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(197, 168, 92, 0.12) !important;
    padding: 1.8rem 1.5rem !important;
    border-radius: 12px;
    backdrop-filter: var(--glass-effect);
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-goal-card:hover {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 8px 25px rgba(197, 168, 92, 0.05);
}

.btn-edit-goal:hover {
    color: var(--gold-bright) !important;
    transform: scale(1.15);
}

/* ==========================================================================
   SMART GUIDE & ADDRESS ACTIONS BUTTONS
   ========================================================================== */
.btn-address-action {
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    color: var(--primary-gold) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    outline: none !important;
}

.btn-address-action:hover {
    background: var(--gold-gradient) !important;
    color: var(--bg-dark) !important;
    border-color: var(--gold-bright) !important;
    box-shadow: 0 4px 15px var(--gold-glow) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   B2B BANK ACCOUNTS & COPY EFFECT
   ========================================================================== */
.bank-account-card {
    transition: var(--transition);
}

.bank-account-card:hover {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 10px 30px rgba(197, 168, 92, 0.08);
    transform: translateY(-5px);
}

.btn-copy-iban:hover {
    color: var(--gold-bright) !important;
    transform: scale(1.15);
}

/* ==========================================================================
   B2B ECONOMIC CALENDAR ANIMATIONS & HOVER
   ========================================================================== */
.calendar-event-item {
    transition: var(--transition);
}

.calendar-event-item:hover {
    border-color: rgba(197, 168, 92, 0.25) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    transform: translateX(5px);
}

.event-impact {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.event-timer {
    font-family: monospace;
    font-size: 0.85rem;
}

/* ==========================================================================
   B2B INVOICE HIGH-FIDELITY PRINT STYLES
   ========================================================================== */
@media print {
    /* Hide all elements on screen except the print template */
    body * {
        visibility: hidden;
    }
    
    #b2b-print-template, 
    #b2b-print-template * {
        visibility: visible;
    }
    
    #b2b-print-template {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: #fff !important;
        color: #000 !important;
    }

    .print-invoice-wrapper {
        padding: 0 !important;
        box-shadow: none !important;
    }
}
