/* Premium Styling for TRUST Encash Jewellery */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy-dark: #960000;
    --navy-medium: #1C2541;
    --navy-light: #3A506B;
    --gold: #D4AF37;
    --gold-bright: #F3C623;
    --gold-light: #F7E7B4;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3C623 50%, #C5A059 100%);
    --navy-gradient: linear-gradient(135deg, #960000 50%, #1C2541 100%);
    --white-soft: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--white-soft);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    box-shadow: 0px 12px 30px rgba(37, 211, 102, 0.6);
}

/* Header & Navigation */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white-soft) !important;
}
.navbar-brand span {
    color: var(--gold-bright);
}
.navbar {
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 5px;
    font-family: var(--font-heading);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-bright) !important;
}

/* Hero & Slider Section */
.hero-slider {
    position: relative;
    background: var(--navy-dark);
    color: white;
    padding: 100px 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(28, 37, 65, 0.8) 0%, transparent 60%);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy-dark) !important;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 198, 35, 0.5);
    background: linear-gradient(135deg, #F3C623 0%, #D4AF37 100%);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}
.section-title-white {
    color: white;
}
.section-title-white::after {
    background: var(--gold-bright);
}

.bg-navy {
    background: var(--navy-gradient);
    color: white;
}

/* Cards & Widgets */
.premium-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 30px;
    height: 100%;
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}
.premium-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gold Rate Live Widget */
.live-rate-widget {
    background: var(--navy-dark);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
    color: white;
}
.rate-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
}
.rate-up {
    background-color: rgba(37, 211, 102, 0.2);
    color: #25D366;
}
.rate-down {
    background-color: rgba(220, 53, 69, 0.2);
    color: #DC3545;
}

/* Process Timeline (Under 30 Min) */
.timeline-container {
    position: relative;
    padding: 20px 0;
}
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    border-left: 2px dashed rgba(212, 175, 55, 0.5);
}
.timeline-item:last-child {
    border-left: none;
    margin-bottom: 0;
}
.timeline-badge {
    position: absolute;
    left: -16px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Comparison Table Styling */
.comparison-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comparison-table th {
    background-color: #F1F3F5;
    color: var(--navy-dark);
    font-weight: 700;
    font-family: var(--font-heading);
}
/* Trust Gold Column Highlight */
.comparison-table .col-trust {
    background-color: var(--navy-dark) !important;
    color: white !important;
    text-align: center;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.comparison-table th.col-trust {
    background-color: var(--navy-dark) !important;
    border-top: 4px solid var(--gold);
    color: var(--gold-bright) !important;
}
.comparison-table tr:last-child .col-trust {
    border-bottom: 4px solid var(--gold);
}
.comparison-table .col-trust .fa-check-circle {
    color: var(--gold-bright);
    font-size: 1.25rem;
}
.comparison-table .col-unorganized {
    color: var(--text-muted);
    text-align: center;
}
.comparison-table .col-unorganized .fa-times-circle {
    color: #DC3545;
    font-size: 1.25rem;
}

/* Rating Breakdown Bar */
.rating-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rating-bar-label {
    width: 60px;
    font-weight: 600;
    font-size: 0.85rem;
}
.rating-bar-fill-track {
    flex-grow: 1;
    height: 8px;
    background: #E9ECEF;
    border-radius: 4px;
    margin: 0 15px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
}
.rating-bar-percent {
    width: 40px;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Google review card */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}
.google-badge {
    background-color: #4285F4;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

/* Calculator Card */
.calc-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--gold);
}
.calc-result-box {
    background: var(--navy-dark);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    border: 1px solid var(--gold);
    text-align: center;
}
.calc-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-bright);
    font-family: var(--font-heading);
}

/* Branch Detail Cards */
.branch-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}
.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--gold);
}
.branch-header {
    background: var(--navy-dark);
    color: white;
    padding: 20px;
    border-bottom: 3px solid var(--gold);
}
.branch-body {
    padding: 25px;
}
.map-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    border-radius: 0 0 15px 15px;
}
.map-responsive iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    border: none;
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--gold);
}
footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: var(--gold-bright);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* Custom Alert Banner */
.custom-alert {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    border-left: 4px solid var(--gold);
    color: white;
}

/* Pulse animation for key CTAs */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
.pulse-btn {
    animation: pulse-gold 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .calc-container {
        padding: 20px;
    }
}

.social-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.social-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float {
    bottom: 20px;
    background: #25D366;
}

.instagram-float {
    bottom: 85px;
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.facebook-float {
    bottom: 150px;
    background: #1877F2;
}