html,
body {
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Colors */
:root {
    --primary-gold: #C6934B;
    --primary-maroon: #5E1823;
    --ticker-bg: #1A0508;
    --text-light: #F5F5F5;
}

/* Layout Utilities */
.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Top Bar / Ticker */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.top-bar {
    background-color: var(--ticker-bg);
    color: white;
    font-size: 0.75rem;
    padding: 4px 0;
    border-bottom: 2px solid var(--primary-maroon);
    margin-bottom: 0;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: inline-block;
    vertical-align: middle;
    line-height: 18px;
    animation: ticker-scroll 30s linear infinite;
}

/* Pause on hover if desired */
.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
}

.ticker-label {
    color: #999;
    margin-right: 5px;
}

.ticker-value {
    font-weight: 600;
}

.value-up {
    color: #28a745;
}

.value-down {
    color: #dc3545;
}



/* Navbar */
.navbar {
    background-color: var(--primary-maroon);
    width: 100%;
    z-index: 1010;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

/* Nav Links inside Navbar */
.navbar-nav .nav-link {
    color: #ccc;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold);
}

.navbar-nav .nav-link.active {
    color: var(--primary-gold);
    font-weight: 700;
}


.btn-primary-custom {
    background-color: var(--primary-gold);
    color: var(--primary-maroon);
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #b08240;
    color: white;
}

/* Helper Classes */
.fw-medium {
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    /* Adjust height as needed, vh or fixed pixels */
    height: 100vh;
    min-height: 700px;
    background-color: #f5f5f5;
    /* Fallback */
}

.carousel-item {
    height: 100vh;
    min-height: 700px;
    transition: transform 0.6s ease-in-out !important;
}

/* Explicitly disable fade if accidentally triggered or browser default shift */
.carousel-fade .carousel-item {
    opacity: 1 !important;
    transition: transform 0.6s ease-in-out !important;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Vertically center content */
    /* pointer-events: none; If buttons are in overlay, we need pointer-events auto on them */
}

/* Ensure content is clickable */
.hero-content {
    /* pointer-events: auto; */
    color: var(--primary-maroon);
    margin-top: 80px;
    /* Offset for fixed header content if needed */
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-text-1 {
    color: #781629;
}

.hero-text-2 {
    color: #101011;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 333px;
}


/* Buttons in Hero */
.btn-hero-primary {
    background-color: var(--primary-gold);
    color: white;
    /* or maroon? Screenshot shows brownish */
    color: #5E1823;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-outline {
    background-color: transparent;
    border: 2px solid #5E1823;
    color: #5E1823;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

/* Carousel Indicators Customization */
.carousel-indicators {
    justify-content: flex-start;
    /* Align left */
    margin-left: 0;
    margin-right: 0;
    bottom: 50px;
}

/* We need to align indicators to the 8-col grid start. 
   We can wrap indicators in a container or use calc. 
   Let's try positioning them relative to the container.
*/
.indicators-wrapper {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-gold);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Partner Section */
.partner-section {
    background-color: #FFFFFF;
    /* White background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 46.2316px;
    line-height: 56px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #781629;
    width: 445.64px;
    /* height: 168px; Removed fixed height to prevent clipping on wrap, but using max-width for shape */
    max-width: 100%;
    margin: 0 auto 25px auto;
}

.partner-content {
    padding: 0 15px;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 0 10px;
    /* Reduced side padding within item */
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    height: 80px;
    /* Increased from 60px */
    width: auto;
}

.feature-title {
    color: #1A0508;
    font-weight: 700;
    font-size: 1.25rem;
    /* Increased size */
    margin-bottom: 12px;
}

.feature-desc {
    color: #666;
    font-size: 1rem;
    /* Increased size */
    line-height: 1.5;
}

/* Vertical Divider for Top Row */
.vertical-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100px;
    /* Increased height */
    border-left: 1px solid #E6E6E6;
    /* Sharp 1px line */
    background-color: transparent;
    z-index: 1;
}

/* Side Hands */
.partner-hand-left,
.partner-hand-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-hand-left img,
.partner-hand-right img {
    /* Ensure they fill the width strictly */
    width: 100%;
    height: auto;
    display: block;
    /* No mix-blend-mode needed on white */
}

/* Specific Alignment tweaks */
.partner-hand-left {
    justify-content: flex-start;
}


.partner-hand-right {
    justify-content: flex-end;
}

/* Services Section */
.services-section {
    background-image: url('../assets/services-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    /* Increased padding */
    position: relative;
    /* Darken background slightly to ensure text pops if needed, 
       but relying on image mostly. */
}

/* Header Wrapper */
.services-header {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Trusted Badge */
.trusted-badge {
    background-color: var(--primary-gold);
    color: #1A0508;
    /* Dark text for contrast */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 20px;
    /* Pill shape */
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 3.5rem;
    /* Larger as per likely design standard */
    margin: 0;
    line-height: 1.2;
}

.service-item {
    background: transparent;
    border-radius: 0;
    /* Removing radius to be cleaner or as per image */
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure no overflow clipping that hides outline */
    overflow: visible;
}

.service-item .service-img {
    width: 100%;
    height: auto;
    /* Aspect ratio maintenance */
    object-fit: contain;
    /* or cover, depending on image nature. Contain prevents cutting. */
    border-radius: 0;
    transition: transform 0.3s ease;
    display: block;
}

.service-name {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Hover Effects */
.service-item:hover .service-img {
    transform: scale(1.05);
    /* Outline Removed per request
       box-shadow: 0 0 0 2px var(--primary-gold);
    */
    box-shadow: none;
}

.service-item:hover .service-name {
    color: var(--primary-gold);
}

.services-heading {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 46.2316px;
    line-height: 56px;
    letter-spacing: -0.03em;
    color: #DBBE72;
    width: 445.64px;
    max-width: 100%;
    margin-bottom: 25px;
}

/* Text Gradient Utility - Keeping just in case, but unused in services now */
.text-gradient-gold {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-gold);
}

/* Gold Investment Calculator Section */
.calculator-section {
    padding: 131px 0;
    background-color: #FFFFFF;
}

.calc-main-heading {
    line-height: 1.2;
}

.calc-heading-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
}

.calc-heading-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
}

.calc-form-title {
    color: #4A0E13;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.calc-label {
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
}

.calc-input {
    background-color: #C69C59;
    /* Muted Gold */
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
}

.calc-input:focus {
    background-color: #b08a4e;
    color: #FFFFFF;
    box-shadow: none;
}

/* Custom Select Arrow Styling override if needed, 
   Bootstrap form-select usually handles it but color might need tweak. 
   For now standard white arrow on gold background. */
.form-select.calc-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.btn-calc-submit {
    background-color: #C69C59;
    color: #4A0E13;
    /* Dark Red text */
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
}

.btn-calc-submit:hover {
    background-color: #b08a4e;
    color: #4A0E13;
}

.calc-result-card {
    background-color: #4A0E13;
    /* Deep Burgundy */
    border-radius: 12px;
    padding: 60px 40px;
    min-height: 300px;
    /* Ensure substantial height */
}

.result-label {
    color: #C69C59;
    /* Gold */
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.result-value {
    color: #FFFFFF;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.result-subtext {
    color: #C69C59;
    /* Gold */
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .calc-heading-top,
    .calc-heading-bottom {}

    .result-value {
        font-size: 3rem;
    }
}

/* Bullion vs Jewelry Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-image: url('../assets/bg-comparison.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* ensure text is visible if image is dark? user said white title, so image implies dark/rich. 
       But user cards are light. */
}

.comparison-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18.9474px;
    line-height: 53px;
    text-align: center;
    color: #C9A35E;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    text-transform: uppercase;
}

.comparison-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #FFFFFF;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
}

/* Column Wrapper - Just for semantic grouping if needed, 
   CSS Grid gap is handled by Bootstrap row g-4 */

.comp-card {
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    /* Gap between stacked cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comp-card:last-child {
    margin-bottom: 0;
}

/* Bullion Theme (Cream) */
.bullion-theme .comp-card {
    background-color: #FFF8E7;
}

/* Jewelry Theme (Pink/White) */
.jewelry-theme .comp-card {
    background-color: #FFFFFF;
}

/* Card Specifics */
.comp-card-top {
    padding-top: 40px;
    padding-bottom: 40px;
}

.comp-icon {
    width: 60px;
    height: 60px;
}

.comp-title {
    color: #5E1823;
    /* Deep Maroon */
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
}

.comp-subtitle {
    color: #C6934B;
    /* Gold */
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

.comp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-label {
    color: #C6934B;
    /* Muted Gold/Tan */
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-value {
    color: #5E1823;
    /* Deep Maroon */
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.comp-verdict {
    font-size: 1.5rem;
}

/* =========================================
   Gold Investment Roadmap Section
   ========================================= */
.roadmap-section {
    padding: 100px 0;
    position: relative;
    background-color: #FFFFFF;
    /* Or match section background if needed */
    overflow: hidden;
}

.roadmap-header {
    margin-bottom: 80px;
}

.roadmap-title {
    margin-bottom: 10px;
    line-height: 1.2;
}

.roadmap-title-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.roadmap-title-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.roadmap-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17.4316px;
    line-height: 53px;
    text-align: center;
    color: #C9A35E;
    width: 788.97px;
    max-width: 100%;
    margin: 0 auto;
}

/* Timeline Container */
.roadmap-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Central Vertical Line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #C69C59;
    /* Gold Line */
    transform: translateX(-50%);
    z-index: 0;
}

/* Row Styling */
.roadmap-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
    /* Space between steps */
}

.roadmap-row:last-child {
    margin-bottom: 0;
}

/* Columns */
.roadmap-col-left,
.roadmap-col-right {
    flex: 1;
    position: relative;
    padding: 0 50px;
    /* Space from center line */
}

.roadmap-col-left {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.roadmap-col-right {
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

/* Central Marker */
.roadmap-marker {
    width: 60px;
    height: 60px;
    background-color: #FFFFFF;
    border: 2px solid #C69C59;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #C69C59;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px #FFFFFF;
    /* White ring to mask line behind */
}

/* =========================================
   Client Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    overflow: hidden;
    /* Handle overlapping elements */
}

/* Headings */
.testimonial-heading-top {
    display: block;
    color: #1A0508;
    /* Black */
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

.testimonial-heading-bottom {
    display: block;
    color: #5E1823;
    /* Deep Maroon */
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

/* Wrapper Layout */
.testimonial-wrapper {
    margin-top: 60px;
    padding-bottom: 50px;
    /* Space for shadow/overflow if needed */
}

/* Image Box */
.testimonial-img-box {
    width: 100%;
    height: 500px;
    /* Fixed height for consistency */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #FDECE5;
    /* Light Peach/Beige */
    border-radius: 20px;
    /* Large rounded corners */
    padding: 60px;
    position: relative;
    z-index: 2;
    /* On top of image */
    margin-left: -100px;
    /* The Overlap magic */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    min-height: 400px;
    /* Minimum height for stability */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Content Typography */
.testimonial-quote {
    font-size: 1.25rem;
    color: #333333;
    /* Dark Grey/Black */
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    margin-bottom: 40px;
}

.author-name {
    color: #000000;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-role {
    color: #666666;
    font-weight: 400;
    font-size: 1rem;
}

/* Navigation Buttons */
.testimonial-nav {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.testi-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    background-color: transparent;
    border: 1px solid #333;
    /* Thin dark border */
    color: #333;
}

.prev-btn:hover {
    background-color: #333;
    color: #fff;
}

.next-btn {
    background-color: #C06C4F;
    /* Rust/Copper */
    border: 1px solid #C06C4F;
    color: #fff;
}

.next-btn:hover {
    background-color: #a05a41;
    border-color: #a05a41;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-card {
        margin-left: 0;
        /* Reset overlap */
        margin-top: -50px;
        /* Slight vertical overlap or just padding */
        margin-top: 20px;
        /* Stacked with gap */
        width: 90%;
        /* Center slightly narrower */
        margin: -40px auto 0;
        /* Pull up slightly over image if desired, or just stack */
        margin: 20px 0 0 0;
        /* Let's keep it simple stack as per mobile request "Stack them vertically" */
    }

    .testimonial-heading-top,
    .testimonial-heading-bottom {
        font-size: 2rem;
    }

    .testimonial-img-box {
        height: 350px;
    }

    .testimonial-card {
        padding: 40px;
        min-height: auto;
    }
}

@media (max-width: 767px) {

    /* Explicit Mobile Rules */
    .testimonial-wrapper .row {
        flex-direction: column;
    }

    .testimonial-img-box {
        border-radius: 20px;
        /* Keep consistent */
    }

    .testimonial-card {
        margin-left: 0;
        margin-top: 20px;
        /* Clean stack */
        width: 100%;
        border-radius: 20px;
    }

    .testimonial-heading-top,
    .testimonial-heading-bottom {
        font-size: 1.8rem;
    }
}

/* Text Card Styling */
.roadmap-card {
    background-color: #4A0E13;
    /* Deep Burgundy */
    border: 1px solid #C69C59;
    /* Thin Gold Border */
    border-radius: 15px;
    padding: 30px;
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Constrain width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roadmap-card-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.roadmap-card-text {
    color: #C69C59;
    /* Muted Gold */
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Icon Positioning inside Card */
.roadmap-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    /* Subtle background alignment */
    /* Or specifically placed as per request: "aligned to the side closest to the center line" */
    /* Let's make it fully visible as a feature */
    opacity: 1;
    width: 50px;
    height: 50px;
}

/* Odd Rows (Text Left, Image Right) - Icon on Right of Card */
.roadmap-row.odd .roadmap-card .roadmap-icon {
    right: -25px;
    /* Floating on the edge pointing to center */
    background: #4A0E13;
    /* Mask border behind */
    border: 1px solid #C69C59;
    padding: 10px;
    border-radius: 50%;
    /* Override for clean look inside card? 
       Request says: "placed inside this card, aligned to the side closest to the center line (or floating right)."
       Let's put it inside, aligned to right edge for Left Card.
    */
    position: static;
    align-self: flex-end;
    /* Flexbox approach */
    margin-top: 20px;
    border: none;
    background: transparent;
    width: 60px;
    height: 60px;
    top: auto;
    transform: none;
}

/* Even Rows (Image Left, Text Right) - Icon on Left of Card */
.roadmap-row.even .roadmap-card .roadmap-icon {
    position: static;
    align-self: flex-start;
    margin-top: 20px;
    width: 60px;
    height: 60px;
    top: auto;
    transform: none;
    background: transparent;
    border: none;
}


/* Image Styling */
.roadmap-img-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    /* Fixed height for consistency */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.roadmap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.roadmap-img-wrapper:hover .roadmap-img {
    transform: scale(1.05);
}


/* Responsive Styles (Mobile < 992px) */
@media (max-width: 991px) {
    .roadmap-timeline::before {
        left: 30px;
        /* Move line to left side */
        transform: none;
    }

    .roadmap-row {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
        /* Offset for line */
        padding-left: 30px;
        /* Gap from line */
        margin-bottom: 50px;
    }

    .roadmap-col-left,
    .roadmap-col-right {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 20px;
        display: block;
        /* Reset flex */
    }

    /* Re-order visual specifically if needed, but simple stack is: Left Col then Right Col.
       Odd Row: Text(Left) -> Image(Right). OK.
       Even Row: Image(Left) -> Text(Right). We want Text then Image usually? 
       User said: "Mobile Responsiveness: Stack everything vertically in a single column."
       Standard stack is fine.
    */

    .roadmap-row.even {
        flex-direction: column-reverse;
        /* Put text (Right col) above Image (Left col) if desired? 
           Actually, usually step title/text comes first. 
           Even Row = Image Left, Text Right. 
           In HTML: [Col Left: Image] [Marker] [Col Right: Text]
           Flex column: Image on top, Text bottom. 
           Maybe better to have Text on top? Let's leave as source order unless requested. 
           Usually "Text then Image" is better for flow. 
           Let's use column-reverse for Even rows in Mobile.
        */
        flex-direction: column-reverse;
    }

    /* Marker Position for Mobile */
    .roadmap-subtitle {
        line-height: 29px;
        max-width: 75%;
    }




    .roadmap-marker {
        left: 0px;
        /* On the line */
        top: 0;
        /* Align with top of content roughly */
        transform: translateX(-50%);
        margin-top: 0;
    }

    .store-card {
        max-width: 350px;
        margin: 0 auto;
    }

    /* Hide pagination numbers on mobile */
    .pagination-numbers {
        display: none !important;
    }

    /* Roadmap Fix - Mobile */
    .roadmap-timeline::before {
        left: 50px !important;
    }

    .roadmap-row {
        margin-left: 50px !important;
    }

    .roadmap-marker {
        left: 0 !important;
    }

    .roadmap-card {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .roadmap-img-wrapper {
        max-width: 100%;
        height: 250px;
    }

    .roadmap-row.odd .roadmap-card .roadmap-icon,
    .roadmap-row.even .roadmap-card .roadmap-icon {
        align-self: flex-start;
        /* Always align left on mobile cards usually? Or keep alternating? */
    }
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 80px 0;
    background-color: #FFFBFB;
    /* Light Pink/White Base */
}

.new-arrivals-heading-top {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto 5px auto;
}

.new-arrivals-heading-bottom {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    text-transform: none;
    /* Removed uppercase per user snippet */
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    /* Square */
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Pagination Styling */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-arrow {
    background: none;
    border: none;
    color: #C69C59;
    /* Muted Gold */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}

.pagination-arrow:hover {
    color: #4A0E13;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    color: #999;
    /* Inactive Gray */
    transition: all 0.3s ease;
}

.page-number.active {
    background-color: transparent;
    color: #4A0E13;
    /* Deep Burgundy */
    font-weight: 800;
    border: 1px solid #4A0E13;
    /* Optional circle for active */
}

.page-number:hover:not(.active) {
    color: #C69C59;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .new-arrivals-grid {
        grid-template-columns: 1fr;
        /* 1 image at a time */
        max-width: 400px;
        /* Constrain width on mobile */
        margin: 0 auto 30px auto;
    }
}

/* =========================================
   Preserving Wealth Section
   ========================================= */
.preserving-wealth-section {
    padding: 80px 0;
    /* Pure white background as requested */
    background-color: #FFFFFF;
    overflow: hidden;
}

.pw-image-wrapper {
    text-align: center;
    position: relative;
    /* Ensure image doesn't overflow container on mobile */
    max-width: 100%;
}

.pw-image {
    max-width: 100%;
    height: auto;
    /* Ensure it looks good */
    display: inline-block;
}

.pw-text-content {
    /* Right text alignment */
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* Add some padding for spacing on desktop */
    padding-left: 2rem;
}

.pw-heading {
    line-height: 1.2;
    margin-bottom: 2rem;
}

.pw-heading-line-1 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    text-align: right;
    width: 467px;
    max-width: 100%;
}

.pw-heading-line-2 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    text-align: right;
    width: 467px;
    max-width: 100%;
}

/* Container for paragraph and gold line */
.pw-mission-container {
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    align-items: stretch;
    /* Stretch to match height for the line */
}

.pw-mission-text {
    font-style: italic;
    font-weight: 500;
    /* Medium weight */
    color: #333333;
    /* Dark gray/black */
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    /* Limit width for readability */
    padding-right: 20px;
    /* Space between text and line */
    margin-bottom: 0;
}

/* The Vertical Gold Line */
.pw-gold-line {
    width: 4px;
    background-color: #C69C59;
    /* It will stretch automatically due to flex stretch */
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    .pw-heading-line-1,
    .pw-heading-line-2,
    .pw-heading-line-3 {
        font-size: 2.5rem;
    }

    .preserving-wealth-section {
        padding: 50px 0;
    }

    /* On mobile/tablet, image on top, text below */
    .pw-text-content {
        text-align: right;
        padding-left: 0;
        padding-top: 2rem;
        align-items: flex-end;
        /* Align flex items to right */
    }

    .pw-mission-container {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {

    .pw-heading-line-1,
    .pw-heading-line-2,
    .pw-heading-line-3 {
        font-size: 2rem;
    }

    .pw-text-content {
        align-items: center;
        text-align: center;
    }

    .pw-mission-container {
        justify-content: center;
    }

    .pw-mission-text {
        padding-right: 15px;
        text-align: right;
    }
}

/* =========================================
   Best Bullion Online Store Section
   ========================================= */
.online-store-section {
    padding: 100px 0;
    background-color: #FFE5E3;
}

.store-heading-top {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.store-heading-bottom {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    display: block;
}

/* Store Card */
.store-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
    /* Subtle border */
    height: 100%;
    /* Equal height */
    position: relative;
    cursor: pointer;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #C69C59;
    /* Gold border on hover */
}

/* Image Box */
.store-img-box {
    background-color: #F8F8F8;
    /* Light gray background for product */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.store-card-img {
    width: 100%;
    max-width: 180px;
    /* Constrain image size */
    height: auto;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.store-card:hover .store-card-img {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
}

/* Text Box */
.store-text-box {
    padding: 30px;
    text-align: center;
}

.store-card-title {
    color: #4A0E13;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.store-card:hover .store-card-title {
    color: #C69C59;
    /* Gold on hover */
}

.store-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Shop Button - Text Link Style */
.shop-btn {
    display: inline-block;
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.shop-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #C69C59;
    /* Gold underline */
    transform: scaleX(0.3);
    /* Start small */
    transform-origin: left;
    transition: transform 0.3s ease;
}

.store-card:hover .shop-btn {
    color: #C69C59;
}

.store-card:hover .shop-btn::after {
    transform: scaleX(1);
    /* Full expand on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .store-heading-bottom {
        /* font-size: 2.5rem; */
    }
}

/* =========================================
   Contact / Assist You Section
   ========================================= */
.contact-section {
    padding: 100px 0;
    background-color: #F9FAFB !important;
    /* Very light subtle gray or white */
}

.contact-heading-top {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    text-align: center;
    width: 723.41px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.contact-heading-bottom {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    text-align: center;
    width: 723.41px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Box (Left) */
.contact-info-box {
    background-color: #FFE4D6;
    /* Peach */
    padding: 60px 40px;
    height: 100%;
}

.contact-info-title {
    color: #4A0E13;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info-desc {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    min-width: 40px;
    color: #4A0E13;
}

.contact-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Contact Form Box (Right) */
.contact-form-box {
    background-color: #FFFFFF;
    padding: 60px 50px;
}

.contact-input {
    background-color: #F8F8F8;
    border: 1px solid rgba(74, 14, 19, 0.2);
    /* Slightly more visible reddish border */
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
}

.contact-input:focus {
    background-color: #FFF;
    border-color: #4A0E13;
    box-shadow: none;
}

.contact-input::placeholder {
    color: #AAA;
}

.btn-contact-submit {
    background-color: #4A0E13;
    /* Deep Maroon */
    color: #FFFFFF;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    width: 100%;
    /* Or auto based on preference, request said centered or wide. Wide plays well in form. */
    max-width: 300px;
}

.btn-contact-submit:hover {
    background-color: #6d1c26;
    color: #FFF;
}

/* Responsive */
@media (max-width: 991px) {

    .contact-heading-top,
    .contact-heading-bottom {
        /* font-size: 2rem; */
    }

    .contact-card {
        border-radius: 20px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Stack vertical handled by Bootstrap col-lg-5/7 automatically, 
       just need to Ensure flex order or display behaves. */
}

/* =========================================
   Footer Section
   ========================================= */
.footer-section {
    background-color: #000000;
    color: #CCCCCC;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-brand .footer-logo {
    height: 50px;
    /* Adjust based on svg ratio */
}

.footer-desc {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--primary-gold);
    transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
    /* Subtle indicator */
}

/* Newsletter */
.newsletter-label {
    display: block;
    color: var(--primary-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.newsletter-title {
    color: #FFFFFF;
    font-family: 'Times New Roman', serif;
    /* Or similar serif */
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-input-group {
    position: relative;
    max-width: 100%;
}

.newsletter-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px !important;
    padding: 12px 60px 12px 25px;
    color: white;
    width: 100%;
}

.newsletter-input:focus {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
    color: white;
}

.btn-newsletter-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: background 0.3s;
}

.btn-newsletter-submit:hover {
    background-color: #fff;
    color: #000;
}

.footer-terms-label {
    font-size: 0.8rem;
    color: #888;
}

.custom-check {
    background-color: transparent;
    border-color: #555;
    background-image: none;
    /* Override bootstrap default check svg color if needed */
}

.custom-check:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
}

.copyright-text {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-badges img {
    height: 24px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-badges img:hover {
    opacity: 1;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .payment-badges {
        margin: 15px 0;
    }
}

.testimonial-heading-top {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #101011;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.testimonial-heading-bottom {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57.0164px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    text-align: center;
    width: 719.24px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* ====================================================================================================
   MOBILE RESPONSIVENESS FIXES (Repaired)
   ==================================================================================================== */
@media (max-width: 991px) {

    /* Explicitly requested: All H2 headings 53px on mobile */
    h2,
    .partner-title,
    .section-title,
    .services-heading,
    .calc-main-heading,
    .roadmap-title,
    .new-arrivals-heading-top,
    .new-arrivals-heading-bottom,
    .cast-bars-heading-top,
    .cast-bars-heading-bottom,
    .pw-heading-line-2 {
        font-size: 53px !important;
        line-height: 1.1 !important;
    }

    /* Hero Alignment - Top on Mobile */
    .hero-overlay {
        align-items: flex-start !important;
        padding-top: 0px;
        margin-top: 0px;
    }

    /* Hero Alignment - Top on Mobile */
    .hero-content {

        margin-top: 20px;
    }





    /* Partner Section - Hide Hands */
    .partner-hand-img {
        display: none !important;
    }



    /* Preserving Wealth */
    .pw-mission-container {
        flex-direction: column;
        align-items: center;
    }

    .pw-mission-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
        order: 1;
    }

    .pw-gold-line {
        order: 2;
        width: 60px;
        height: 4px;
    }

    .pw-text-content {
        padding-left: 0;
        text-align: center !important;
        align-items: center !important;
    }

    .pw-heading {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .pw-heading-line-1,
    .pw-heading-line-2 {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    /* Testimonials */
    .testimonial-card {
        width: 95%;
        margin: -30px auto 0 auto;
    }

    .testimonial-img-box {
        height: 300px;
    }

    /* Pagination Hide (Targeting Mobile/Tablet) */
    .pagination-numbers {
        display: none !important;
    }
}


/* =========================================
   Live Market Rates Section
   ========================================= */
.live-rates-section {
    padding: 150px 0;
    /* 150px top and bottom */
    background-color: #FFE5E3;
}

.rates-heading {
    line-height: 1.2;
}

.rates-heading-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 57px;
    /* Matches other section headings */
    font-weight: 700;
    color: #4A0E13;
    /* Deep Maroon */
}

.rates-heading-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 57px;
    font-weight: 800;
    /* Extra Bold */
    color: #101011;
    /* Black */
}

/* Spot Widget (Top Card) */
.spot-widget {
    background-color: #4A0E13;
    /* Deep Burgundy */
    border-radius: 20px 20px 0 0;
    /* Top corners rounded */
    padding: 30px 0;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-col {
    position: relative;
    padding: 10px 20px;
}

.border-end-custom {
    border-right: 1px solid rgba(198, 156, 89, 0.3);
    /* Muted Gold divider */
}

.spot-label-sm {
    display: block;
    color: #C69C59;
    /* Muted Gold */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.spot-title-lg {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}

.spot-range {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-top: 5px;
}

.range-low span {
    color: #E74C3C;
}

.range-high span {
    color: #2ECC71;
}

.range-sep {
    margin: 0 8px;
    color: #555;
}


.price-label {
    display: block;
    color: #C69C59;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
    /* For flash effect */
}

.value-red {
    color: #E74C3C;
}

.value-green {
    color: #2ECC71;
}

.value-white {
    color: #FFFFFF;
}


/* Local Rates Table */
.rates-table-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.rates-table-header {
    background-color: #4A0E13;
    /* Deep Maroon */
    padding: 15px 30px;
}

.header-cell {
    color: #C69C59;
    /* Gold */
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rates-table-body {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-top: none;
}

.rate-row {
    padding: 20px 30px;
    border-bottom: 1px solid #F0F0F0;
    align-items: center;
    transition: background-color 0.2s;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-row:hover {
    background-color: #FAFAFA;
}

.metal-name {
    color: #4A0E13;
    /* Maroon */
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.metal-sub {
    color: #C69C59;
    /* Gold */
    font-size: 0.9rem;
    font-weight: 500;
}

.rate-currency {
    color: #C69C59;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 5px;
    vertical-align: middle;
}

.rate-price {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: middle;
    transition: color 0.3s;
}

.price-sell {
    color: #A93226;
}

.price-buy {
    color: #229954;
}

/* Updated Heading Rates Typography */
.rates-heading-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57px;
    /* Matches 57.0164px */
    line-height: 53px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #781629;
}

.rates-heading-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57px;
    /* Matches 57.0164px */
    line-height: 53px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #101011;
}

/* Mobile Response for Table */
@media (max-width: 768px) {

    .rates-heading-top,
    .rates-heading-bottom {
        font-size: 2.5rem;
    }

    .spotlight-col {
        border-right: none;
        border-bottom: 1px solid rgba(198, 156, 89, 0.3);
        padding: 20px 0;
    }

    .spotlight-col:last-child {
        border-bottom: none;
    }

    .border-end-custom {
        border-right: none;
    }

    .header-cell {
        font-size: 0.8rem;
    }

    .rate-row {
        padding: 15px;
    }

    .metal-name {
        font-size: 1rem;
    }

    .rate-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {

    /* Hero Section Mobile Updates */
    .hero-text-1,
    .hero-text-2 {
        font-size: 39px !important;
    }

    /* Hide breaks inside the spans */
    .hero-text-1 br,
    .hero-text-2 br {
        display: none !important;
    }



    /* New Arrivals - 1 Column */
    .new-arrivals-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .store-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* --- Full Screen Mobile Menu --- */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-maroon);
        z-index: 1050;
        padding: 80px 20px 100px 20px;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
        display: flex;
        /* Important to switch from block */
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
    }

    .navbar-collapse.show {
        transform: translateY(0);
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        background-color: var(--primary-maroon);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center;
        padding-top: 80px;
    }

    .navbar-collapse.collapsing.show {
        transform: translateY(0);
    }

    /* Mobile Menu Logo */
    .mobile-menu-logo {
        margin-top: 20px;
    }

    .mobile-menu-logo img {
        height: 50px;
        width: auto;
    }

    /* Links in Full Screen Menu */
    .navbar-nav {
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .new-arrivals-grid.grabbing {
        cursor: grabbing;
        cursor: -webkit-grabbing;
    }

    /* Carousel Animation */
    @keyframes fadeInSlide {
        from {
            opacity: 0;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .product-card {
        animation: fadeInSlide 1.2s ease-out forwards;
    }


    .navbar-nav .nav-link {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 20px;
        color: white;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-gold);
    }

    /* Close Button */
    .btn-close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .btn-close-menu::before,
    .btn-close-menu::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: white;
        top: 50%;
        left: 0;
        transform-origin: center;
    }

    .btn-close-menu::before {
        transform: rotate(45deg);
    }

    .btn-close-menu::after {
        transform: rotate(-45deg);
    }
}

/* Top Gold Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.brands-heading-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 57px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #781629;
    margin: 0 auto;
}

.brands-heading-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 800; /* Extra bold */
    font-size: 57px;
    line-height: 53px;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 auto;
}

/* Ensure responsiveness for the headings similar to others */
@media (max-width: 768px) {
    .brands-heading-top,
    .brands-heading-bottom {
        font-size: 40px;
        line-height: 48px;
    }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 75%;
    margin: 0 auto;
}

.brand-card {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

/* Tablet Layout */
@media (max-width: 991px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        width: 85%;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 95%;
    }
}

/* Mobile Layout */
@media (max-width: 575px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
}

/* =========================================
   Gold Casted Bullion Bars Section
   ========================================= */
.cast-bars-section {
    padding: 180px 0;
    background-color: transparent;
}

.cast-bars-heading {
    margin-bottom: 25px;
}

.cast-bars-heading-top {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #7B1113;
}

.cast-bars-heading-bottom {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #000000;
}

.cast-bars-desc {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cast-bars-main-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.cast-product-card {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.cast-product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-buy-gold-cast {
    display: block;
    width: 100%;
    background-color: #C69C59;
    color: #000000;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-buy-gold-cast:hover {
    background-color: #b08a4e;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cast-bars-text {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .cast-bars-section {
        padding: 80px 0;
    }
}
/* ── Contact Form Status Message ──────────────────────────────────────────── */
.form-status-msg {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 18px;
    transition: opacity 0.4s ease;
}

.form-status-msg.success {
    background-color: #f0faf4;
    border: 1px solid #2e9e5b;
    color: #1e6e3e;
}

.form-status-msg.error {
    background-color: #fdf2f3;
    border: 1px solid #c0392b;
    color: #922b21;
}

.form-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-status-msg.success .form-status-icon {
    background-color: #2e9e5b;
    color: #fff;
}

.form-status-msg.error .form-status-icon {
    background-color: #c0392b;
    color: #fff;
}
