:root {
    --primary-gold: #ad9032;
    --dark-gold: #8a7328;
    --light-gold: #d4bc74;
    --gold-gradient: linear-gradient(135deg, #ad9032 0%, #8a7328 100%);
    --gold-glow: rgba(173, 144, 50, 0.4);
    --dark-bg: #0a0a0a;
    --dark-surface: #121212;
    --glass-bg: rgba(0, 0, 0, 0.7); /* Dark Glass */
    --glass-border: rgba(173, 144, 50, 0.3);
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

body {
    background-color: #f5f5f5;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Premium Top Bar */
.header-info-area {
    background: var(--dark-bg);
    padding: 12px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(173, 144, 50, 0.1);
}

.header-info-area a {
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-info-area a i {
    color: var(--primary-gold);
    margin-right: 6px;
}

/* Hero Section - Dark & Premium */
.hero-section {
    padding: 80px 0 120px;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(173, 144, 50, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(173, 144, 50, 0.1) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Dark Glass Card for Hero */
.hero-content-card {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.logo-wrapper {
    margin-bottom: 40px;
    display: inline-block;
}

.hero-logo {
    max-width: 650px;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white; 
    text-transform: uppercase;
}

.hero-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.55rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Contact Links Above Buttons */
.contact-quick-links {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link-item {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
}

.contact-link-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.contact-link-item:hover {
    color: var(--primary-gold);
    background: rgba(173, 144, 50, 0.05);
}

.contact-link-item i.fa-whatsapp {
    color: #25D366;
}

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

/* Rates Section */
.rates-section {
    margin-top: -60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.table-container {
    background: white;
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--card-shadow);
}

.table-container h4 {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.rate-value {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.currency-code {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1;
}

.currency-symbol {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-right: 12px;
    min-width: 25px;
    text-align: center;
}

.currency-cell {
    display: flex;
    align-items: center;
}

.table td {
    vertical-align: middle !important;
    padding: 15px 12px;
}

/* Action Buttons - Fixed Alignment */
.action-buttons-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.btn-custom {
    background: var(--gold-gradient);
    color: white !important;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px var(--gold-glow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-dark-custom {
    background: var(--dark-bg);
}

.btn-custom:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Mobile Specific */
@media (max-width: 768px) {
    .hero-section { padding: 40px 0 80px; }
    .hero-content-card { padding: 30px 20px; margin: 0 15px; }
    .hero-logo { max-width: 340px; }
    .hero-title { font-size: 1.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .rates-section { margin-top: -40px; }
    
    .table-container { padding: 20px; }
    
    .action-buttons-wrapper .col-md-6, 
    .action-buttons-wrapper .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Multi-Calculator Styles */
.btn-outline-gold {
    color: var(--primary-gold);
    border-color: #eee;
    background: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #f8f9fa;
    color: var(--dark-gold);
}

.btn-outline-gold.active {
    background: var(--primary-gold) !important;
    color: white !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.multi-calc-row {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.multi-calc-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    border-color: var(--primary-gold);
}

.total-display-box.active {
    transform: scale(1.02);
    box-shadow: 0 15px 30px var(--gold-glow) !important;
}

.multi-amount-input {
    border-radius: 10px 0 0 10px !important;
    border: 1px solid #eee !important;
    padding: 25px 15px !important;
}

.multi-amount-input:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: none !important;
}

.input-group-text {
    border-radius: 0 10px 10px 0 !important;
    border: 1px solid #eee !important;
    background: #f8f9fa !important;
    font-weight: 600;
}

#multi_grand_total {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .btn-outline-gold {
        padding: 10px 5px !important;
        font-size: 0.8rem;
    }
    #multi_grand_total {
        font-size: 1.8rem;
    }
}