/* Liqu.ID Redesign - Rev.com Style Emulation */

:root {
    /* Design System Colors (Keep for reference, adjust usage) */
    --dark-navy-blue: #0D1B2A;
    --dark-navy: #0E121E; /* Added */
    --soft-white: #F4F4F4;
    --metallic-gold: var(--light-slate-gray); /* Keep reference? */
    --light-slate-gray: #A7B3C9; /* UPDATED from #778DA9 */
    --deep-charcoal: #1B263B;
    --emerald-accent: #2A9D8F;

    /* Gold Shades */
    --luxury-gold-light: var(--light-slate-gray);
    --luxury-gold-dark: var(--light-slate-gray);
    --bright-gold-yellow: var(--light-slate-gray);
}

/* Custom Scrollbar (Optional) */
/* ::-webkit-scrollbar { width: 8px; } */
/* ::-webkit-scrollbar-track { background: var(--deep-charcoal); } */
/* ::-webkit-scrollbar-thumb { background: var(--metallic-gold); border-radius: 4px; } */
/* ::-webkit-scrollbar-thumb:hover { background: var(--luxury-gold-dark); } */

/* --- Scrollbar Styles (New Dark Theme) --- */
/* Set overall scrollbar width (optional, adjust as needed) */
::-webkit-scrollbar {
  width: 10px; /* Width of the vertical scrollbar */
  height: 10px; /* Height of the horizontal scrollbar */
}

/* Style the track (the area the scrollbar runs along) */
::-webkit-scrollbar-track {
  background: #222; /* Dark gray track background */
  border-radius: 5px; /* Optional rounding */
}

/* Style the thumb (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
  background-color: #666; /* Medium gray thumb */
  border-radius: 5px; /* Rounded corners for the thumb */
  border: 2px solid #222; /* Creates padding around thumb, matching track */
}

/* Style the thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #888; /* Lighter gray thumb on hover */
}

/* --- END OF NEW SCROLLBAR STYLES --- */

/* Define Background Animation */
/* Updated to handle two background layers */
@keyframes moveGradient {
  0% { background-position: center center, 0% 50%; } /* Lines fixed, Gradient moves */
  50% { background-position: center center, 100% 50%; }
  100% { background-position: center center, 0% 50%; }
}

/* --- Global Styles (Step 1 - Animated Background) --- */
html {
    scroll-behavior: smooth;
    /* Firefox scrollbar styling */
    scrollbar-width: auto; /* Or 'thin' */
    scrollbar-color: #666 #222; /* thumb color, track color */
}

body {
    font-family: 'Montserrat', sans-serif !important; /* Universal Sans-Serif Font */
    /* --- New Animated Background --- */
    /* Fallback solid color */
    background-color: #05081F; /* NEW Very Dark Base */

    /* Layered Backgrounds: Lines on top, Gradient below */
    background-image:
      /* Layer 1: White Wavy Lines */
      url('/static/images/wavy-lines-background.svg'), 
      /* Layer 2: Animated Color Gradient */
      radial-gradient(ellipse at center, #1A1C4F 0%, #05081F 70%); /* NEW Very Dark Gradient */

    /* Control how backgrounds repeat */
    background-repeat: no-repeat, no-repeat; /* Lines likely no-repeat, gradient definitely no-repeat */

    /* Control background positioning */
    background-position: center center, center center; /* Center both layers */

    /* Control background sizing */
    background-size: cover, 300% 300%; /* Size lines to cover viewport, make gradient large for animation */

    /* Apply the updated animation definition */
    animation: moveGradient 15s ease infinite;
    /* --- End New Animated Background --- */
    
    color: var(--light-slate-gray); /* Default text color */
    letter-spacing: 0.2px;
    line-height: 1.6; 
    margin: 0;
    padding: 0;
    font-size: 16px; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh; /* Ensure full viewport height coverage */
    padding-top: 130px !important; /* INCREASED from 80px to clear navbar */
}

/* Ensure ALL elements use Montserrat (reiteration) */
h1, h2, h3, h4, h5, h6,
p, span, label, input, textarea, select, .btn, .nav-link, 
.dropdown-item, .card, .footer, .text-muted, .form-label, .small,
.navbar-brand /* Add any other text elements */
{
    font-family: 'Montserrat', sans-serif !important; /* Force font */
}

/* Basic Link Styling */
a {
    text-decoration: none;
    color: var(--metallic-gold); /* Default link color */
    transition: color 0.3s ease;
}
a:hover {
    color: var(--luxury-gold-light);
}

/* --- END OF STEP 1 --- */
/* --- Header / Navbar (Pill Shape) --- */
.navbar {
    background-color: transparent !important;
    /* backdrop-filter: blur(12px); */ /* MOVED to inner container */
    /* -webkit-backdrop-filter: blur(12px); */ /* MOVED to inner container */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

/* Inner container defines the pill shape and holds the blur */
.navbar > .container,
.navbar > .container-fluid {
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 2.5rem; /* Ensure correct padding */
    /* Subtle background for blur effect */
    background-color: rgba(40, 40, 80, 0.1);
    /* Apply blur here */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Clip the blur effect to the rounded corners */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

/* Logo Styling - Hero Style & Alignment Tweak */
.navbar-brand {
    color: var(--soft-white) !important;
    font-weight: 700;
    font-size: 2.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    /* display: inline-flex; */
    /* align-items: center; */
    background-color: transparent !important;
    border: none !important;
    line-height: 1.5;
    position: relative; /* Add positioning context */
    top: 10px;         /* Nudge upwards slightly (adjust px value if needed) */
    padding-left: 25px;
}
.navbar-brand i { /* Hide icon */
    display: none;
    /* color: var(--soft-white) !important; */
    /* margin-right: 0.5rem; */
}

/* Desktop Navigation Links Styling (Hidden on Mobile by default) */
.navbar-nav {
    /* margin-left: auto; */ /* REMOVED */
    /* margin-right: auto; */ /* REMOVED */
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0; 
}

/* Nav Link Specifics - Adjust line-height */
.nav-link {
    font-family: 'Montserrat', sans-serif !important; 
    color: var(--soft-white) !important; 
    text-decoration: none !important;
    border-bottom: none !important;
    padding: 0.5rem 1.25rem; 
    margin: 0; 
    transition: opacity 0.3s ease; 
    font-weight: 500; 
    font-size: 0.9rem; 
    line-height: 1.5; /* Added consistent line-height */
}
.nav-link:after { content: none !important; } /* Remove old underline pseudo-element */
.nav-link.active { 
    font-weight: 500; /* Remove bold active state */ 
    color: var(--soft-white) !important; /* Ensure active is same color */
}

/* Subtle Hover Effect */
.navbar-nav .nav-link:hover {
    color: var(--soft-white) !important; /* Keep white */
    opacity: 0.8; /* Slight fade */
}

/* Hide toggler on desktop */
@media (min-width: 992px) { 
    .navbar-toggler {
        display: none;
        padding-right: 2.5rem;
    }
    .navbar-collapse {
        display: flex !important; /* Ensure collapse block is visible */
        flex-basis: auto;
        flex-grow: 0; /* REVERTED */
        /* margin-left: auto; */ /* Keep removed */
    }
    /* Adjust nav links on desktop */
     .navbar-nav {
        flex-direction: row; /* Ensure horizontal */
        /* margin-left: auto; */ /* REMOVED */
    }

    /* Vertical Separators - Apply only on desktop */
    .navbar-nav .nav-item:not(:last-child) { 
        border-right: 1px solid rgba(255, 255, 255, 0.07); /* Fainter separator */
        /* Spacing handled by nav-link padding */
    }
}

/* Explicitly style toggler for mobile */
.navbar-toggler {
    /* Remove potential Bootstrap default margins */
    margin: 0;
    padding: 0.25rem 0.5rem; 
    border: none; 
    background-color: transparent; 
    /* Positioning */
    position: relative; /* Allow shifting */
    right: 2.5rem; /* Move 2.5rem left from its right-aligned position */
}
.navbar-toggler:focus {
    box-shadow: none; 
}

/* --- END OF NAVBAR REVAMP --- */

/* --- Text Styling & Hierarchy (Step 3) --- */

/* Global Colors */
body {
    /* ... font, background ... */
    color: var(--light-slate-gray); /* Default/Secondary Text Color */
    /* ... */
}

/* Primary Headings */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.section-title,
.card-header h5
{
    /* ... font ... */
    color: var(--soft-white); /* Primary Text on Dark BG */
    /* ... */
}

/* Subtitles / Less important text */
.small,
.text-muted,
.footer p, .footer li a,
.detail-label /* Specific label example */
{
    color: var(--light-slate-gray);
}

/* Font Size Hierarchy (Example Sizes - Adjust as needed) */
h1, .display-1 { font-size: 3.5rem; line-height: 1.2; }
h2, .display-2, .section-title { font-size: 2.5rem; line-height: 1.2; }
h3, .display-3 { font-size: 2rem; line-height: 1.3; }
h4, .display-4 { font-size: 1.75rem; line-height: 1.3; }
h5, .display-5 { font-size: 1.25rem; line-height: 1.4; }
h6, .display-6 { font-size: 1rem; line-height: 1.4; }

body { font-size: 1rem; } /* Base font size for paragraphs etc. */
p { font-size: 1rem; }
.lead { font-size: 1.25rem; font-weight: 300; } /* Bootstrap lead paragraph */
.small { font-size: 0.875rem; }

/* --- END OF STEP 3 --- */
/* --- Start of Old Styles (To be removed/reviewed later) --- */
/* ... (Keep old styles below this line for now) ... */

/* Premium Luxury Styles for NFC Wine Authentication System */

:root {
    --luxury-gold: var(--light-slate-gray);
    --luxury-gold-light: var(--light-slate-gray);
    --luxury-gold-dark: var(--light-slate-gray);
    --luxury-burgundy: #800020;
    --luxury-burgundy-rgb: 128, 0, 32;
    --luxury-dark: #1a1a1a;
    --luxury-light: #f5f5f5;
    --luxury-accent: var(--light-slate-gray);
    --luxury-gradient: var(--light-slate-gray);
    --dark-navy-blue: #0D1B2A;
    --deep-charcoal: #1B263B;
    --soft-white: #F4F4F4;
    --light-slate-gray: #778DA9;
    --emerald-accent: #2A9D8F;
}

/* Global Style Enhancements */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-navy-blue);
    letter-spacing: 0.2px;
    color: var(--light-slate-gray);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.feature-title,
.card-header
{
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
}

/* Base text elements */
p,
span,
label,
input,
textarea,
select,
.card,
.footer,
.dropdown-item,
.text-muted,
.card-text,
.footer p, .footer li a
{
    font-family: 'Montserrat', sans-serif;
    color: var(--light-slate-gray);
}

/* Adjust paragraph margin */
p {
    margin-bottom: 1.2rem;
}

/* Luxury Styles */
.luxury-container {
    padding: 2rem;
    border: 1px solid var(--luxury-gold);
    border-radius: 0.5rem;
    background-color: rgba(20, 20, 20, 0.8);
}

.luxury-text {
    color: var(--luxury-gold);
}

/* Gold accent elements */
.gold-accent {
    color: var(--luxury-gold);
}

.gold-border {
    border: 1px solid var(--luxury-gold);
}

/* Style for the original .gold-bg class -> Make Transparent */
.gold-bg {
    /* background-color: var(--soft-white); */ /* OLD: Container Background */
    background-color: transparent; /* NEW: Allow main gradient through */
    padding: 3rem 0; /* Keep padding */
}
.gold-bg h1, .gold-bg h2, .gold-bg h3 {
    /* color: var(--deep-charcoal); */ /* OLD: Primary Text on Light BG */
    color: var(--soft-white); /* NEW: White text on dark gradient */
}
.gold-bg p, .gold-bg div, .gold-bg small {
     /* color: var(--light-slate-gray); */ /* OLD: Secondary Text on Light BG */
     color: var(--light-slate-gray); /* Keep as secondary text color */
}
.gold-bg .fw-bold {
     /* color: var(--deep-charcoal); */ /* OLD */
     color: var(--soft-white); /* NEW: White text for emphasis */
}
.gold-bg .fa-shield-alt { /* Adjust icon color on dark bg */
    /* color: var(--deep-charcoal); */ /* OLD */
    color: var(--metallic-gold); /* NEW: Gold accent */
}

/* Animated elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar-brand {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--soft-white) !important;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0.75rem;
    font-weight: 500;
    position: relative;
    color: var(--soft-white) !important;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.3rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--luxury-gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--luxury-gold) !important;
}

.nav-link.active {
     color: var(--soft-white) !important;
     font-weight: bold;
}

.nav-link.active:hover {
    color: var(--soft-white) !important;
}

/* Cards */
.card {
    border: none;
    background-color: var(--deep-charcoal);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.card-header {
    border-bottom: 1px solid rgba(119, 141, 169, 0.3);
    background-color: rgba(var(--deep-charcoal), 0.7);
    padding: 1.25rem 1.5rem;
    color: var(--soft-white);
}

/* Footer */
footer {
    /* --- New Animated Background (Matching Body) --- */
    /* Fallback solid color */
    background-color: #05081F; /* NEW Very Dark Base */

    /* Layered Backgrounds: Lines on top, Gradient below */
    background-image:
      /* Layer 1: White Wavy Lines */
      url('/static/images/wavy-lines-background.svg'), 
      /* Layer 2: Animated Color Gradient */
      radial-gradient(ellipse at center, #1A1C4F 0%, #05081F 70%); /* NEW Very Dark Gradient */

    /* Control how backgrounds repeat */
    background-repeat: no-repeat, no-repeat; /* Lines likely no-repeat, gradient definitely no-repeat */

    /* Control background positioning */
    background-position: center center, center center; /* Center both layers */

    /* Control background sizing */
    background-size: cover, 300% 300%; /* Size lines to cover viewport, make gradient large for animation */

    /* Apply the updated animation definition */
    animation: moveGradient 15s ease infinite;
    /* --- End New Animated Background --- */
    
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 5rem; /* Ensure space above footer */
    color: var(--light-slate-gray); /* Default text color */
}

footer h5 {
     color: var(--soft-white); /* White headings */
     font-family: 'Montserrat', sans-serif !important; /* Ensure Sans-serif */
     margin-bottom: 1.5rem; /* Consistent spacing */
}

footer p {
    color: var(--light-slate-gray); /* Secondary text */
}

footer ul {
    padding-left: 0; /* Remove default padding */
}

footer li {
     margin-bottom: 0.5rem; /* Space between links */
}

footer a {
    color: var(--soft-white); /* White links */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--metallic-gold); /* Gold hover */
}

/* Left Column Specifics */
footer .gold-accent {
    color: var(--metallic-gold) !important; /* Ensure gold icon */
}

/* Blockchain/NFC Badges */
footer .badge {
    background-color: transparent !important; /* Transparent background */
    border: 1px solid rgba(255, 255, 255, 0.5) !important; /* Subtle white border */
    color: var(--soft-white) !important; /* White text */
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

footer .badge i {
    color: var(--soft-white); /* White icon */
    opacity: 0.8;
}

/* Horizontal Rule */
footer hr {
    border-color: rgba(255, 255, 255, 0.15); /* Subtle white/gray */
    margin: 2rem 0; /* Adjust spacing */
}

/* Copyright Text */
footer .mb-md-0 {
    color: var(--light-slate-gray);
}

/* Social Links */
footer .footer-links a {
    color: var(--soft-white); /* White icons */
    font-size: 1.1rem; /* Adjust size */
}

footer .footer-links a:hover {
    color: var(--metallic-gold); /* Gold hover */
}

/* --- END OF FOOTER STYLES --- */

/* Dropdown */
.dropdown-menu {
    background-color: var(--deep-charcoal);
    border: 1px solid rgba(119, 141, 169, 0.3);
}

.dropdown-item {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--luxury-gold);
    background-color: rgba(var(--dark-navy-blue), 0.5);
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif !important;
    padding: 10px 25px; /* REDUCED padding */
    border-radius: 10px; 
    font-size: 1rem; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent; /* Updated base border thickness */
    transition: all 0.3s ease;
    cursor: pointer;
    display: block; 
    width: 100%; 
    max-width: 320px; /* ...but constrain it */
    margin: 0; /* Reset individual margins (gap handles spacing) */
    text-align: center;
}

/* Primary Button (Register Bottle) - Rev Style */
.btn-primary,
.btn-register {
    background-image: linear-gradient(to right, #8A2BE2, #4682B4); /* BlueViolet to SteelBlue */
    background-color: #8A2BE2; /* Fallback */
    color: var(--soft-white);
    border: none;
    padding: 10px 25px; /* Keep reduced padding */
    border-radius: 10px; /* Keep rounded corners */
    /* Inherits other base .btn styles */
}

/* Hover effect for Primary Button - Rev Style */
.btn-primary:hover,
.btn-register:hover {
    background-image: linear-gradient(to right, #9932CC, #5A9BD8); /* Slightly brighter/shifted gradient */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px); /* Subtle lift */
}

/* Secondary Button (Verify Bottle) - Rev Style */
.btn-secondary,
.btn-verify,
.btn-outline-light {
    background-color: #101018; /* Dark base background */
    border: 100px solid transparent; /* Base for border-image */
    border-image-source: linear-gradient(to right, #8A2BE2, #4682B4); /* Gradient */
    border-image-slice: 1; /* Use full gradient */
    color: var(--soft-white);
    padding: 10px 25px; /* Match primary padding */
    border-radius: 10px; /* Match primary radius */
    /* Inherits other base .btn styles */
}

/* Hover effect for Secondary Button - Rev Style */
.btn-secondary:hover,
.btn-verify:hover,
.btn-outline-light:hover {
    background-color: #101018; /* Keep dark background */
    border-image-source: linear-gradient(to right, #9932CC, #5A9BD8); /* Brighter gradient border */
    border-image-slice: 1;
    color: var(--soft-white); /* Keep text white */
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.2); /* Subtle glow matching border */
    transform: translateY(-1px); /* Subtle lift */
}

/* Title Underline */
.title-underline::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--luxury-gold);
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Section Alt Background */
.feature-section-alt {
    background-color: var(--deep-charcoal);
    padding: 4rem 1rem;
}
.feature-section-alt h1,
.feature-section-alt h2,
.feature-section-alt h3,
.feature-section-alt .feature-title {
    color: var(--soft-white);
}
.feature-section-alt p,
.feature-section-alt .feature-description {
    color: var(--light-slate-gray);
}

/* Feature Icon */
.feature-icon {
    color: var(--luxury-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Spacing */
section, .section {
    padding: 4rem 0;
}

.container, .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}
.hero-section h1 {
    margin-bottom: 1rem;
}
.hero-section p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.auth-hero {
    position: relative;
    padding: 160px 0 140px;
    margin-bottom: 80px;
    border-radius: 0;
    overflow: hidden;
}

.auth-hero-content {
    position: relative;
    z-index: 2;
}

.auth-hero h1 {
    color: var(--soft-white);
    font-family: 'Playfair Display', serif;
}

.auth-hero p.lead, /* Target description */
.auth-hero .description /* Alternative class */ {
    color: var(--soft-white); 
    font-size: 1.1rem;
    font-weight: 400; 
    max-width: 550px; /* Constrain width further - ADJUSTED */
    margin-left: auto; /* Ensure centering */
    margin-right: auto; /* Ensure centering */
    margin-bottom: 1rem; 
    line-height: 1.7;
}

.tag-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(119, 141, 169, 0.5));
}

/* Feature Cards */
.feature-card {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.feature-card h4 {
    color: var(--soft-white);
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--light-slate-gray);
    font-family: 'Montserrat', sans-serif;
}

/* Bottle Cards */
.bottle-card {
    transition: all 0.5s ease;
}

.bottle-card .card-body {
    position: relative;
    padding: 30px 20px;
}

.bottle-card .card-title {
    color: var(--soft-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.bottle-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.bottle-card:hover .card-title::after {
    width: 70px;
}

/* Verification Steps */
.verification-steps {
    position: relative;
    padding-left: 15px;
}

.verification-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 24px;
    height: calc(100% - 80px);
    width: 2px;
    background: linear-gradient(to bottom, var(--metallic-gold), var(--luxury-gold-dark));
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--deep-charcoal);
    color: var(--metallic-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(119, 141, 169, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--metallic-gold);
}

.d-flex:hover .step-circle {
    box-shadow: 0 8px 20px rgba(119, 141, 169, 0.4);
}

.verification-steps h4 {
    color: var(--soft-white);
    font-family: 'Playfair Display', serif;
}

.verification-steps p {
    color: rgba(255, 255, 255, 0.7);
}

/* NFC Scan Area */
.nfc-scan-area {
    border: 2px solid var(--metallic-gold);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    margin: 40px 0;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Blockchain Info Styling */
.blockchain-info {
    font-family: 'Courier New', monospace;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 20px;
    border-left: 3px solid var(--metallic-gold);
    margin: 20px 0;
    color: var(--light-slate-gray);
}

.hash-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    color: var(--luxury-gold);
    padding: 10px;
    background-color: rgba(119, 141, 169, 0.05);
    border-radius: 4px;
}

/* Mobile Specific Styles */
@media (max-width: 992px) {
    .auth-hero {
        padding: 100px 0 80px;
    }
    
    .auth-hero h1 {
        font-size: 2.8rem;
    }
    
    .auth-hero p.lead {
        font-size: 1.2rem;
    }
    
    .verification-steps::before {
        left: 19px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .feature-card h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .auth-hero {
        padding: 80px 0 60px;
    }
    
    .auth-hero h1 {
        font-size: 2.2rem;
    }
    
    footer {
        padding: 40px 0 20px !important;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Dashboard Styles */
.stat-card {
    border-radius: 0;
    margin-bottom: 30px;
    border: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--luxury-gold);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .card-body {
    padding: 30px;
    background-color: var(--bs-dark);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.chart-container {
    height: 350px;
    margin: 20px 0;
    padding: 20px;
    background-color: var(--bs-dark);
    border: 1px solid rgba(119, 141, 169, 0.1);
}

/* Authentication Results */
.verification-status {
    padding: 40px;
    border-radius: 0;
    text-align: center;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.verification-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.verification-failed {
    background-color: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.verification-pending {
    background-color: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--luxury-gold);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Bottle Detail Page */
.bottle-detail-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.bottle-detail-header {
    padding: 30px;
    position: relative;
    border-bottom: 3px solid var(--metallic-gold);
}

.bottle-detail-header h2 {
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

.bottle-detail-body {
    padding: 30px;
}

.detail-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(119, 141, 169, 0.1);
}

.detail-label {
    font-weight: 700;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.detail-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

/* Authentication Badge */
.auth-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.auth-badge-authentic {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.auth-badge-enhanced {
    background-color: rgba(119, 141, 169, 0.1);
    color: var(--luxury-gold);
    border: 1px solid rgba(119, 141, 169, 0.2);
}

/* --- Bottles Page Specific Styles --- */

/* Search Form */
.search-form .form-control {
    background-color: var(--deep-charcoal);
    border-color: var(--light-slate-gray);
    color: var(--soft-white);
    border-radius: 6px;
}
.search-form .form-control::placeholder {
    color: var(--light-slate-gray);
    opacity: 0.7;
}
.search-form .btn-search {
    background-color: var(--metallic-gold);
    border-color: var(--metallic-gold);
    color: var(--deep-charcoal);
}
.search-form .btn-search:hover {
    background-color: var(--luxury-gold-light);
    border-color: var(--luxury-gold-light);
    color: var(--deep-charcoal);
}

/* Bottle List Card */
.bottle-list-card {
    margin-bottom: 1.5rem;
}

.bottle-list-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottle-list-card .card-header h5 {
    margin-bottom: 0 !important;
}

.bottle-list-card .card-body strong {
    color: var(--soft-white);
    font-weight: 500;
    margin-right: 0.5em;
}

/* Bottle Card Body Text */
.bottle-list-card .card-body p,
.bottle-list-card .card-body span,
.bottle-list-card .card-body small {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-slate-gray);
    margin-bottom: 0.5rem;
}

/* Status Badges Override Bootstrap */
.bottle-list-card .badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid transparent;
}

.bottle-list-card .badge.bg-success {
    background-color: rgba(var(--emerald-accent), 0.15) !important;
    color: var(--emerald-accent) !important;
    border-color: rgba(var(--emerald-accent), 0.3) !important;
}

.bottle-list-card .badge.bg-secondary {
    background-color: rgba(var(--light-slate-gray), 0.15) !important;
    color: var(--light-slate-gray) !important;
    border-color: rgba(var(--light-slate-gray), 0.3) !important;
}

.bottle-list-card .badge.bg-danger {
    background-color: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545 !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

/* View Details Button in Footer */
.bottle-list-card .card-footer {
    background-color: transparent;
    border-top: none;
    padding: 0 1.25rem 1.25rem;
}

.bottle-list-card .card-footer .btn-primary {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
}

/* Dropdown Menu in Navbar */
.navbar .dropdown-menu {
    background-color: var(--deep-charcoal);
    border: 1px solid rgba(119, 141, 169, 0.2);
}
.navbar .dropdown-item {
    color: var(--soft-white);
    padding: 0.5rem 1rem;
}
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
    color: var(--metallic-gold);
    background-color: rgba(var(--dark-navy-blue), 0.5);
}

/* Ensure container inside navbar doesn't restrict width */
.navbar > .container,
.navbar > .container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Hero Section Text (Step 3) --- */
.hero-section { /* Apply this class to the main hero container div */
    text-align: center;
    padding: 4rem 1.5rem; /* Adjust padding */
}

.hero-section h1 {
    /* Font already set */
    color: var(--soft-white);
    font-size: 3.0rem; /* Large heading size */
    font-weight: 700; /* Bold */
    margin-bottom: 1.5rem; /* Space below heading */
    line-height: 1.2;
    /* text-transform: uppercase; */ /* Optional */
}
.hero-section h1::after { content: none; } /* Remove any old underlines */

.hero-section p.lead, /* Target description */
.hero-section .description /* Alternative class */ {
    color: var(--soft-white); 
    font-size: 1.1rem;
    font-weight: 400; 
    max-width: 550px; /* Constrain width further - ADJUSTED */
    margin-left: auto; /* Ensure centering */
    margin-right: auto; /* Ensure centering */
    margin-bottom: 1rem; 
    line-height: 1.7;
}

.hero-section .subtitle, /* Target "POWERED BY..." */
.hero-section .powered-by {
    color: var(--light-slate-gray);
    font-size: 0.875rem; 
    font-weight: 400;
    margin-top: 0; /* Reduce top margin if needed */
    margin-bottom: 3rem; /* Increased space before buttons */
    opacity: 0.8; /* Slightly reduced opacity */
    text-transform: uppercase; /* Optional */
    letter-spacing: 0.5px; /* Optional */
}

/* --- END OF STEP 3 --- */
/* --- Start of Old Styles ... */

/* --- Button Styling (Step 4) --- */

/* Container for stacked buttons */
.hero-buttons {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;   /* Center items horizontally */
    gap: 1rem;             /* Space BETWEEN the buttons */
    margin-top: 2.5rem;      /* Space ABOVE the button group */
    /* Remove width limits from container, let button max-width control */
    /* max-width: 280px; */ 
    margin-left: auto;   /* Keep container centered if needed */
    margin-right: auto;  /* Keep container centered if needed */
}

/* Base Button Style Reset - Explicit overrides */
.hero-buttons .btn {
    font-family: 'Montserrat', sans-serif !important;
    padding: 10px 25px !important; /* Override padding */
    border-radius: 10px !important; 
    font-size: 1rem !important; /* Override font size */
    font-weight: 600 !important; 
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    border: 2px solid transparent !important; 
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;  
    width: 100% !important; 
    max-width: 320px !important; 
    text-align: center !important;
    margin: 0 !important; 
    line-height: 1.5 !important; /* Override Bootstrap line-height if needed */
}

/* Primary Button (Register Bottle) - Increased Specificity */
.hero-buttons .btn-primary,
.hero-buttons .btn-register {
    background-image: linear-gradient(to right, #6A0DAD, #3A5FCD) !important; /* NEW Darker Gradient */
    background-color: #6A0DAD !important; /* NEW Darker Fallback */
    color: var(--soft-white) !important;
    border: none !important;
    /* Padding, etc., inherited or overridden by .hero-buttons .btn */
}

/* Secondary Button (Verify Bottle) - Increased Specificity */
.hero-buttons .btn-secondary,
.hero-buttons .btn-verify,
.hero-buttons .btn-outline-light {
    background-color: #101018 !important; 
    border: 0px solid transparent !important; /* Keep transparent border */
    /* border-image-source: linear-gradient(to right, #8A2BE2, #4682B4) !important; */ /* REMOVED */
    /* border-image-slice: 1 !important; */ /* REMOVED */
    color: var(--soft-white) !important;
    border-radius: 10px !important; /* Ensure matching radius */
    /* overflow: hidden; */ /* REMOVED */
    position: relative; /* Needed for pseudo-element positioning */
    z-index: 1; /* Ensure button content is above pseudo-element */
    /* Padding, etc., inherited or overridden by .hero-buttons .btn */
}

/* Pseudo-element for Gradient Border */
.hero-buttons .btn-secondary::before,
.hero-buttons .btn-verify::before,
.hero-buttons .btn-outline-light::before {
    content: ''; 
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1; /* Behind the button content */
    border-radius: 10px; /* Match button's radius */
    padding: 2px; /* Creates the border thickness */
    
    /* NORMAL STATE GRADIENT */
    background-image: linear-gradient(to right, #8A2BE2, #4682B4); 
    
    /* Masking technique for border effect */
    background-clip: padding-box; /* Important: clips background to padding edge */
    /* Prefixed version */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    /* Standard version */
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; /* Prefixed */
    mask-composite: exclude; /* Standard syntax */
    
    transition: background-image 0.3s ease; /* Transition for hover */
}

/* Hover effect for Primary Button - Increased Specificity */
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-register:hover {
    background-image: linear-gradient(to right, #7A1EA1, #4A6FD1) !important; /* NEW Darker Hover Gradient */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-1px) !important;
}

/* Hover effect for Secondary Button - Increased Specificity */
.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-verify:hover,
.hero-buttons .btn-outline-light:hover {
    /* background-color: #101018 !important; */ /* REMOVED - Handled by base */
    /* border-image-source: linear-gradient(to right, #9932CC, #5A9BD8) !important; */ /* REMOVED - Handled by ::before:hover */
    /* border-image-slice: 1 !important; */ /* REMOVED */
    /* color: var(--soft-white) !important; */ /* REMOVED - Handled by base */
    /* Keep only transform/shadow */
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.2) !important; 
    transform: translateY(-1px) !important;
}

/* Hover effect for Secondary Button Pseudo-element */
.hero-buttons .btn-secondary:hover::before,
.hero-buttons .btn-verify:hover::before,
.hero-buttons .btn-outline-light:hover::before {
    /* HOVER STATE GRADIENT */
    background-image: linear-gradient(to right, #9932CC, #5A9BD8); /* Brighter gradient */
}

/* Desktop Layout for Hero Buttons */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row; /* Arrange side-by-side */
        justify-content: center; /* Center the buttons horizontally */
        /* Keep gap: 1rem; for spacing */
    }
    .hero-buttons .btn {
        width: auto; /* Allow buttons to size naturally */
        /* max-width: 320px; is already set and still applies */
    }
}

/* --- END OF BUTTON OVERRIDES --- */

/* ... rest of styles ... */

/* --- Verification Excellence Section (Refactored) --- */
.verification-section {
    /* Optional overall section padding */
     padding: 4rem 0;
}

/* Removed empty .verification-section .col-lg-6 ruleset */

/* Removed empty .verification-text-column ruleset */

.verification-text-column h2 {
    color: var(--soft-white); /* White title */
    font-family: 'Montserrat', sans-serif !important; /* Force Sans-Serif */
    font-weight: 600; /* Adjust weight */
    font-size: 2.2rem; /* Adjust size */
    margin-bottom: 1.5rem; /* Spacing below title */
    position: relative; /* Needed for pseudo-element */
    padding-bottom: 0.75rem; /* Space for underline */
}

/* Gold underline for title */
.verification-text-column h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px; /* Underline width */
    height: 3px;
    background-color: var(--metallic-gold);
}

.verification-text-column p.intro-paragraph {
    color: var(--light-slate-gray); /* Gray paragraph */
    font-family: 'Montserrat', sans-serif !important; 
    font-size: 1rem; /* Adjust size */
    line-height: 1.7;
    margin-bottom: 2rem; /* Spacing below paragraph */
}

/* ... rest of styles ... */

/* Core Concept Blocks */
.concept-block {
    margin-bottom: 1.5rem; /* Spacing between blocks */
}
.concept-block:last-child {
    margin-bottom: 0;
}

.concept-block h5 {
    color: var(--soft-white); /* White heading */
    font-family: 'Montserrat', sans-serif !important; /* Ensure Sans-serif */
    font-weight: 600;
    font-size: 1.1rem; /* Slightly larger than body */
    margin-bottom: 0.5rem !important; /* Override default h5 margin */
}

.concept-block p {
    color: var(--light-slate-gray); /* Gray text */
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0 !important; /* Remove extra space if last element */
}
.concept-block .mb-3 { /* Keep margin if specified */
     margin-bottom: 1rem !important;
}

/* Right Column Visual Placeholder */
.verification-visual-column {
    display: flex;
    align-items: center; /* Vertically center content if needed */
    justify-content: center;
}

.visual-placeholder {
    background-color: var(--deep-charcoal); /* Dark background */
    border-radius: 12px; /* Rounded corners */
    min-height: 400px; /* Minimum height */
    width: 100%; /* Take full column width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.visual-placeholder span {
    color: var(--light-slate-gray); /* Text color */
    font-family: 'Montserrat', sans-serif !important; 
    font-size: 1rem;
}

/* Increase navbar width on very large screens */
@media (min-width: 2560px) { /* Target screens wider than 2560px (adjust breakpoint if needed) */
    .navbar > .container,
    .navbar > .container-fluid {
        max-width: 1800px; /* Increase max-width significantly - ADJUST VALUE AS NEEDED */
        /* Keep margin: auto for centering */
        margin-left: auto !important; /* Ensure centering override */
        margin-right: auto !important; /* Ensure centering override */
    }
}

/* Optional: Add another breakpoint for even wider screens if needed */
/* @media (min-width: 3000px) { 
    .navbar > .container,
    .navbar > .container-fluid {
        max-width: 2400px; 
    }
   } */

/* --- Dropdown Pill Styling for Navbar --- */

/* Ensure dropdown parent list item is positioned */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

/* Style the dropdown menu itself */
.navbar-nav .dropdown-menu {
    display: block; /* Override JS display for CSS transitions */
    position: absolute;
    top: 100%; /* Position it right below the nav link */
    left: 50%; /* Center horizontally relative to the parent */
    transform: translateX(-50%) scaleY(0) translateY(-10px); /* Start centered, scaled 0 height, slightly up */
    transform-origin: center top; /* Animate scale/position from top center */
    
    min-width: 110px; /* Adjusted width */
    background-color: transparent !important; /* Keep background transparent */
    border-radius: 0; /* Removed overall menu border-radius */
    padding: 0.5rem; /* Add padding around items */
    margin-top: 1.9rem; /* Reduced space below the nav link */
    border: none; /* Removed border */
    box-shadow: none; /* Removed shadow */
    
    opacity: 0; /* Start hidden */
    visibility: hidden;
    pointer-events: none; /* Not interactive when hidden */
    
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Smooth animation */
    z-index: 1000; /* Ensure it's above other content */
}

/* Style the links inside the dropdown */
.navbar-nav .dropdown-item {
    color: var(--soft-white) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.7rem; /* Reduced font size further to fit */
    padding: 0.5rem 1.5rem; /* Adjusted padding for pill */
    background-color: rgba(40, 40, 80, 0.5) !important; /* Translucent background */
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
    transition: background-color 0.2s ease; /* Transition background */
    border-radius: 50px !important; /* Pill shape */
    margin-bottom: 0.5rem; /* Space between items */
    display: block; /* Ensure block display */
}
/* Remove margin from last item */
.navbar-nav .dropdown-item:last-child {
    margin-bottom: 5px;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(60, 60, 100, 0.7) !important; /* Slightly darker/more opaque on hover */
    color: var(--soft-white) !important; /* Keep text color */
    /* Opacity removed */
}

/* --- CLICK TRIGGER (Using Bootstrap .show class) --- */
/* Show dropdown when Bootstrap adds the .show class on click */
.navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1) translateY(0); /* Animate height and position */
}

/* Remove default Bootstrap caret if present */
.navbar-nav .nav-link.dropdown-toggle::after {
    display: none !important;
}

/* --- Inline Pill Submenu (MOBILE ONLY) --- */

@media (max-width: 991.98px) { /* Target mobile breakpoint */

    /* Style the PARENT list item ('ANALYTICS') in mobile menu */
    .navbar-collapse .nav-item.has-submenu {
        /* No special flex needed if main menu is already vertical */
        position: relative; 
        padding-bottom: 0.5rem; /* Add space below main link */
    }

    /* Style the submenu list container */
    .navbar-collapse .submenu-pill-list {
        list-style: none;
        padding: 0; /* Remove all padding */
        /* padding-left: 1.5rem; */ /* REMOVED */
        margin: 0;
        width: auto; /* Allow natural width based on centered items */
        
        /* Collapse handles visibility, but add base styles */
        overflow: hidden; /* Needed for smooth collapse */
        /* Transitions handled by Bootstrap collapse JS */
        /* text-align: center; */ /* REMOVED - Centering handled by items */
    }
    
    /* Style the individual submenu links as pills */
    .navbar-collapse .submenu-pill-item {
        display: block; /* Make it a block element */
        /* max-width: auto; */ /* Changed from user edit */
        max-width: 130px; /* Set a max width for centering */
        margin-left: auto; /* Center the block */
        margin-right: auto; /* Center the block */
        background-color: rgba(60, 60, 100, 0.8); /* Darker purple pill - ADJUST */
        color: var(--soft-white) !important;
        font-size: 0.6rem; /* Smaller font */
        font-weight: 500;
        padding: 0.4rem 1.2rem; /* Smaller padding */
        border-radius: 50px; /* Pill shape */
        margin-top: 0.5rem; /* Space above the first pill */
        /* margin-right: 0.5rem; */ /* REMOVED */
        margin-bottom: 5px; /* Space between items */
        text-decoration: none;
        transition: background-color 0.2s ease, transform 0.2s ease;
        border: 1px solid rgba(255, 255, 255, 0.1); /* Optional faint border */
        white-space: nowrap;
        text-align: center; /* Ensure text inside is centered */
    }
    .navbar-collapse .submenu-pill-item:hover {
        background-color: rgba(80, 80, 120, 0.9); /* Lighter hover - ADJUST */
        transform: scale(1.05);
        opacity: 1 !important; 
    }

    /* Ensure the container itself centers its items */
    .navbar-collapse .navbar-nav {
        display: flex !important; /* Ensure flex */
        flex-direction: column !important; /* Ensure vertical stacking */
        align-items: center !important; /* HORIZONTALLY CENTER flex items */
        width: 100% !important; /* Take full width */
        padding-left: 0 !important; /* Reset Bootstrap padding if any */
    }

    /* Force centering for main nav links in collapsed menu */
    .navbar-collapse .navbar-nav .nav-link { /* Increased specificity */
         padding-top: 0.8rem;
         padding-bottom: 0.8rem;
         padding-left: 1rem; /* Add some padding */
         padding-right: 1rem; /* Add some padding */
         /* text-align: center !important; */ /* REMOVED - Handled by align-items */
         /* display: block !important; */ /* REMOVED - Let flex control */
         /* width: 100% !important; */  /* REMOVED - Let flex control */
    }

    /* Optional: Ensure list items themselves don't force left align */
    .navbar-collapse .navbar-nav .nav-item {
         /* text-align: center !important; */ /* REMOVED - Handled by align-items */
         width: auto; /* Let item size naturally */
    }

    /* Remove desktop separators on mobile */
     .navbar-nav .nav-item:not(:last-child) { 
        border-right: none !important;
    }
    
} /* End of mobile media query */

/* --- Desktop styles should NOT include the submenu styling --- */
/* Ensure the submenu is hidden by default on desktop if HTML exists */
/* REMOVED - Handled by d-lg-none on mobile structure
@media (min-width: 992px) {
    .navbar-nav .submenu-pill-list {
        display: none !important; 
    }
     // ... rest of rules ...
}
*/

/* --- Interactive Feature Section Styling --- */

.interactive-features {
    /* Optional: Add border like Rev example */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem; /* Space below intro paragraph */
}

.feature-trigger-wrapper {
    margin-bottom: 1rem; /* Space between features */
}
.feature-trigger-wrapper:last-child {
    margin-bottom: 0;
}

.feature-trigger {
    color: var(--light-slate-gray); /* Default trigger color */
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important; /* Reduce space below trigger */
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex; /* Align icon and text */
    align-items: center;
}

.feature-trigger .trigger-icon {
    font-size: 0.8em; /* Smaller icon */
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4); /* Dim icon color */
}

.feature-trigger:hover {
    color: var(--soft-white); /* Highlight on hover */
}
.feature-trigger:hover .trigger-icon {
    color: rgba(255, 255, 255, 0.7);
}

/* Active Trigger Styling */
.feature-trigger.active {
    color: var(--soft-white); /* Active trigger is white */
}
.feature-trigger.active .trigger-icon {
    transform: rotate(90deg); /* Rotate icon when active */
    color: var(--soft-white);
}

/* Content Block Styling */
.feature-content {
    color: var(--light-slate-gray);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.75rem; /* Indent content under icon */

    /* Animation: Hide initially */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-in 0.1s, margin-top 0.4s ease-out; /* Delay opacity */
    margin-top: 0;
}

/* Active Content Block Styling */
.feature-content.active {
    max-height: 200px; /* Allow space for content - ADJUST if needed */
    opacity: 1;
    margin-top: 0.5rem; /* Add space when revealed */
}

/* --- User Benefits Carousel (Old - Commented Out) --- */
/*
.user-benefits-swiper { 
    width: 100%;
    padding-top: 20px; 
    padding-bottom: 50px; 
    overflow: hidden; 
}
.user-benefits-swiper .swiper-slide {
    display: flex; 
    justify-content: center; 
    align-items: stretch; 
    height: auto; 
    box-sizing: border-box;
    padding: 0 10px; 
}
.user-benefits-swiper .swiper-slide .card {
    width: 100%; 
    margin-bottom: 0; 
}
.user-benefits-swiper .swiper-pagination-bullet {
    background-color: var(--light-slate-gray);
    opacity: 0.7;
}
.user-benefits-swiper .swiper-pagination-bullet-active {
    background-color: var(--soft-white);
    opacity: 1;
}
*/

/* --- User Benefits Focus Carousel --- */

.user-benefits-focus-section .swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    /* overflow: visible; */ /* Allow seeing partial slides */
}

.user-benefits-focus-section .swiper-wrapper {
    align-items: center; /* Vertically align slides if heights differ slightly */
}

.user-benefits-focus-section .swiper-slide {
    width: 65%; /* Adjust width of the slide container (e.g., 60-80%) */
    opacity: 0.5; /* Non-active slides are faded */
    transform: scale(0.85); /* Non-active slides are smaller */
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto; /* Let card height determine slide height */
}

.user-benefits-focus-section .swiper-slide-active {
    opacity: 1; /* Active slide is fully visible */
    transform: scale(1); /* Active slide is full size */
    z-index: 1; /* Ensure active slide is on top */
}

/* Styling for the benefit cards inside slides */
.user-benefits-focus-section .benefit-card {
    background-color: rgba(30, 30, 60, 0.7); /* Apply translucent background */
    border-radius: 12px; /* Consistent rounding */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--light-slate-gray);
    width: 100%; /* Card takes full slide width */
    display: flex; /* Ensure card body takes full height */
    flex-direction: column;
}
.user-benefits-focus-section .benefit-card .card-body {
    flex-grow: 1; /* Allow body to fill space */
}

.user-benefits-focus-section .benefit-icon i {
    color: var(--soft-white); /* White icon */
    opacity: 0.8;
}

.user-benefits-focus-section .benefit-card h4 {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif !important; /* Ensure sans-serif */
    font-weight: 600;
}

/* Custom Navigation Buttons */
.swiper-navigation-custom .btn {
    border-radius: 50px; /* Pill shape */
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}
.swiper-navigation-custom .btn:hover {
    border-color: var(--soft-white);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--soft-white);
}

/* Hide default swiper arrows/pagination if HTML was uncommented/exists */
.user-benefits-focus-swiper .swiper-button-prev,
.user-benefits-focus-swiper .swiper-button-next,
.user-benefits-focus-swiper .swiper-pagination {
    display: none !important;
}

/* --- Registration Section Styling (Redesign) --- */

/* Ensure row items align top if heights differ */
.registration-card-row {
    align-items: flex-start; 
}

/* Main Card Container */
.registration-card {
    background-color: rgba(30, 30, 60, 0.7); /* Changed to translucent dark */
    padding: 2.5rem; /* p-5 equivalent */
    border-radius: 12px;
    border: none !important; /* Removed border */
    box-shadow: none;
    margin-bottom: 0; /* g-5 on row handles spacing */
    /* height: auto; */ /* Remove height: 100% if it was causing issues */
}

/* Card Header */
.registration-card .card-header {
    background-color: transparent;
    border-bottom: none !important; /* Removed border */
    padding: 0 0 2rem 0; /* More space below */
    margin-bottom: 2rem; /* Ensure space below header area */
}

.registration-card .card-header h3 {
    font-family: 'Montserrat', sans-serif !important;
    color: var(--soft-white);
    font-size: 1.3rem; /* Adjusted size */
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.registration-card .card-header h3 i {
    color: var(--soft-white);
    opacity: 0.9;
    margin-right: 0.75rem;
    font-size: 1.1em; /* Slightly smaller icon */
}

/* Form Subheadings */
.registration-card .registration-subheading { /* Target new class or h4 */
    color: var(--light-slate-gray);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif !important;
}

/* Form Labels */
.registration-card .form-label {
    color: var(--light-slate-gray);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: none;
}

/* Form Inputs/Textareas */
.registration-card .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--soft-white);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif !important;
    height: auto; /* Ensure consistent height */
}

.registration-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: var(--soft-white);
}

.registration-card .form-control::placeholder {
    color: var(--light-slate-gray);
    opacity: 0.7;
}

.registration-card .input-group-text {
     background-color: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.15);
     color: var(--light-slate-gray);
     border-left: none;
     border-radius: 0 8px 8px 0;
}

/* "Add Detailed Info" Toggle Link */
.registration-card .advanced-toggle {
    color: rgba(255, 255, 255, 0.7); /* Use text-white-50 in HTML */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    font-size: 0.8rem; /* Match small text size */
}

.registration-card .advanced-toggle:hover {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.registration-card .advanced-toggle i {
    transition: transform 0.3s ease;
}

.registration-card .advanced-toggle[aria-expanded="true"] i {
    transform: rotate(45deg); /* Change plus to X or rotate */
}

.registration-card .collapse.show {
    padding-top: 1.5rem;
}

/* Primary Buttons */
.registration-card .btn-primary {
    /* Assuming btn-primary has the gradient from hero section */
    padding: 0.6rem 1.5rem; 
    font-size: 0.9rem;
    /* Other styles like border-radius, font-weight should match hero */
}

.registration-card .btn-primary i {
    color: var(--soft-white);
}

/* "Supported" Badge */
.registration-card .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-slate-gray);
    border: none;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.registration-card .badge i {
    color: var(--light-slate-gray);
    opacity: 0.8;
    margin-right: 0.3rem;
}

/* Mobile Reg Checklist */
.registration-card .mobile-checklist .d-flex {
    align-items: flex-start; /* Align icon top */
}

.registration-card .mobile-checklist .check-icon i.fa-check-circle {
    color: #5A9BD8; /* Subtle accent color */
    font-size: 1.1em;
    margin-top: 0.15em; /* Adjust vertical alignment */
}

.registration-card .mobile-checklist .checklist-text {
    color: var(--light-slate-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Testimonials Section Styling --- */

.testimonials-section .card {
    background-color: rgba(30, 30, 60, 0.7); /* Apply translucent background */
    border: none; /* Remove default border */
    border-radius: 12px; /* Match other cards */
    /* p-4 class handles padding */
}

.testimonials-section .card h5 {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif !important;
}

.testimonials-section .card p {
    color: var(--light-slate-gray);
}

.testimonials-section .card .fa-quote-left {
    color: var(--light-slate-gray); /* Changed from gold-accent */
    opacity: 0.5;
}

/* --- General Content Card Styling (Verify Page, etc.) --- */
.content-card {
    background-color: rgba(30, 30, 60, 0.7); /* Translucent background */
    border: none !important;
    border-radius: 12px; /* Consistent rounding */
    /* Padding is handled by Bootstrap classes (p-5) or specific card rules */
}

/* Optional: Ensure text colors within these cards are appropriate */
.content-card .card-body p,
.content-card .card-body li div {
    color: var(--light-slate-gray);
}
.content-card .card-body h3, 
.content-card .card-body h4, 
.content-card .card-body h5 {
     color: var(--soft-white);
     font-family: 'Montserrat', sans-serif !important;
}

/* Remove any lingering gold accents specifically in verify.html cards */
.content-card .gold-accent {
    color: inherit; /* Reset color */
}
.content-card .card-header.gold-bg {
    background-color: transparent; /* Remove old gold bg */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add subtle separator like register page */
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.content-card .card-header h3 {
    text-align: left !important; /* Override text-center */
     font-size: 1.3rem;
     font-weight: 600;
}
.content-card .card-header h3 i {
    color: var(--soft-white);
    opacity: 0.9;
    font-size: 1.1em;
    margin-right: 0.75rem;
}
.content-card .d-flex .me-3 i.fa-check-circle { /* Style check icons like register */
     color: #5A9BD8; 
     font-size: 1.1em;
     margin-top: 0.15em;
}
.content-card .badge.gold-border {
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-slate-gray);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}
.content-card .badge i {
    color: var(--light-slate-gray);
    opacity: 0.8;
    margin-right: 0.3rem;
}

/* --- Bottle Card Styling (bottles.html) --- */

.bottle-card {
    background-color: rgba(30, 30, 60, 0.7) !important; /* Apply translucent background */
    border: none !important; /* Remove default/old borders */
    border-radius: 12px !important; /* Consistent rounding */
    color: var(--light-slate-gray); /* Default text color */
}

.bottle-card .card-header {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* Subtle separator */
    padding: 1rem 1.5rem;
}

.bottle-card .card-header h5 {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.bottle-card .card-body {
    padding: 1.5rem;
}

.bottle-card .card-body p {
    margin-bottom: 0.75rem; /* Adjust spacing */
    font-size: 0.9rem;
}

.bottle-card .card-body p strong {
    color: var(--soft-white);
    font-weight: 500;
    margin-right: 0.5em;
}

.bottle-card .card-footer {
    background-color: transparent !important;
    border-top: none !important;
    padding: 0 1.5rem 1.5rem; /* Padding bottom/sides */
}

/* Update badge styles for consistency */
.bottle-card .badge {
    border-radius: 6px; /* Match other badges */
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border: none;
}
.bottle-card .badge.bg-success {
    background-color: rgba(40, 167, 69, 0.2) !important; /* Subtle success */
    color: #77dd77 !important; /* Lighter green text */
}
.bottle-card .badge.bg-danger {
    background-color: rgba(220, 53, 69, 0.15) !important;
    color: #ff6961 !important; /* Lighter red text */
}
.bottle-card .badge.bg-secondary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--light-slate-gray) !important;
}

/* Update button style */
.bottle-card .btn-primary {
    /* Assuming btn-primary has the gradient */
    padding: 0.6rem 1.5rem; 
    font-size: 0.9rem;
}

/* --- About Page Specific Styling --- */

/* Ensure main content columns have auto height and visible overflow */
.about-page-content .col-lg-8,
#sidebar.col-lg-4 { /* Targeting sidebar by ID */
    height: auto !important; 
    overflow: visible !important;
}

/* Apply translucent background to main content cards */
.about-page-content .card {
    background-color: rgba(30, 30, 60, 0.7);
    border: none !important;
    border-radius: 12px; 
    color: var(--light-slate-gray);
    margin-bottom: 2rem; /* Ensure spacing */
}

/* Style headers within these cards */
.about-page-content .card .card-header {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; 
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.about-page-content .card .card-header h3 {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left !important; /* Override text-center */
    margin: 0;
    display: flex;
    align-items: center;
}
.about-page-content .card .card-header h3 i {
    color: var(--soft-white);
    opacity: 0.9;
    margin-right: 0.75rem;
    font-size: 1.1em;
}

/* Remove gold/old styles */
.about-page-content .gold-accent,
.about-page-content .card-header.gold-bg {
    color: inherit; /* Reset color */
    background-color: transparent !important;
}
.about-page-content .gold-border,
.about-page-content .feature-box {
    border: none !important;
}

/* Restyle titles that used gold */
.about-page-content h4 {
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}
.about-page-content h5 {
     color: var(--soft-white);
     font-family: 'Montserrat', sans-serif !important;
}

/* Restyle icons that used gold */
.about-page-content .feature-icon i,
.about-page-content .text-center i.fa-3x {
    color: var(--soft-white); /* Or use a subtle accent */
    opacity: 0.8;
}
.about-page-content .tag-option i {
    color: var(--soft-white);
}
.about-page-content .technology-stack i {
     color: var(--soft-white);
     opacity: 0.8;
     margin-right: 0.5rem;
}

/* Restyle step circles */
.step-circle {
    display: inline-flex; /* Use flex for centering */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 1rem !important; /* Ensure consistent spacing */
}

/* Ensure feature cards inside have consistent background/border */
.about-page-content .feature-card {
    background-color: rgba(45, 45, 75, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    word-wrap: break-word; /* Help prevent overflow */
}

/* Fix heading wrapping inside feature/tag cards */
.about-page-content .feature-card h4,
.about-page-content .tag-option h5 {
    word-break: normal; /* Prevent aggressive breaking */
    white-space: normal; /* Allow normal wrapping */
    hyphens: auto; /* Allow hyphenation if needed */
    line-height: 1.4;
}

/* Accordion Styling (make darker) */
.about-page-content .accordion-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--soft-white);
}
.about-page-content .accordion-button:not(.collapsed) {
     background-color: rgba(255, 255, 255, 0.1);
     box-shadow: none;
}
.about-page-content .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}
.about-page-content .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-page-content .accordion-body {
    background-color: var(--deep-charcoal); /* Match card bg */
    color: var(--light-slate-gray);
}

/* -----------------------------------------------------------
   Liqu.ID – About page fixes (2024‑04‑22)
----------------------------------------------------------- */

/* Safe minimum width for all card styles */
.feature-card,
.tag-option,
.step-card { min-width: 260px; }

/* Prevent every‑letter wrapping */
.feature-card h4,
.tag-option h5,
.step-card h4,
.card-header h3 {
  white-space: normal;
  word-break: keep-all;
}

/* Let rows wrap instead of shrinking children */
.row.g-4,
.row.g-3 { flex-wrap: wrap; }

/* Remove obsolete gold accents */
[class*="gold-"],
.gold-accent,
.gold-border,
.gold-bg {
  color: var(--light-slate-gray) !important;
  border-color: rgba(255,255,255,0.06) !important;
  background: transparent !important;
}

/* Sidebar cards auto‑height */
#sidebar .card {
  height: auto;
  overflow: visible;
}

/* Consistent spacing below section headers */
.section-title,
.card-header h3 { margin-bottom: 1.5rem; }

/* Responsive type scale */
@media (max-width: 991px) {
  h1 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.125rem; }
}

/* Scroll Animation */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: .6s ease-out; }
.animate-on-scroll.show { opacity: 1; transform: translateY(0); }

/* --- New Registration Process Section Styles --- */

.registration-process-section .col-lg-6 {
    padding: 2rem; /* Added consistent padding */
}

.registration-process-section h3 {
  color: var(--soft-white);
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.registration-process-section p {
  color: var(--light-slate-gray);
  font-family: 'Montserrat', sans-serif !important;
}

/* Feature List (Left Column) */
.feature-list li { 
  margin-bottom: 0.5rem; 
}
.feature-list i { 
  font-size: 0.8em; /* Updated size */ 
  position: relative; 
  top: 2px; /* Align icon better */ 
  color: var(--light-slate-gray); /* Updated color */
  opacity: 0.7; /* Added opacity */
}
.feature-list span { 
  font-size: 0.95rem; 
  color: var(--light-slate-gray); 
}
.feature-list i.fa-check-circle { 
  /* Removed specific color override, uses base subtle style now */
  /* color: #5A9BD8; */ 
}

/* Step Styling (Right Column) */
.registration-step {
  margin-bottom: 3rem; /* Increased spacing */
}
.registration-step:last-child {
  margin-bottom: 0; /* Remove margin from last step */
}

/* Step Circle - Update Global or scope like .registration-process-section .step-circle */
/* Updating the existing rule to apply the new subtle style */
.step-circle {
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  background-color: transparent; /* Updated background */
  color: var(--light-slate-gray); 
  border: 1px solid rgba(255, 255, 255, 0.1); /* Updated border */
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 500; /* Updated weight */
  font-size: 0.9rem; /* Updated size */
  flex-shrink: 0; 
  margin-right: 1rem !important; /* Updated spacing */
}

.registration-step h4 {
  color: var(--soft-white);
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  font-size: 1.15rem; /* Updated size */
  margin-bottom: 0.5rem;
}

.registration-step p {
  font-size: 0.95rem;
  line-height: 1.7; /* Updated line-height */
  /* Inherits color from section */
}

/* Remove Desktop Border for Right Column */
@media (min-width: 992px) {
  /* .registration-process-section .col-lg-7 { REMOVED */
  /*   border-left: 1px solid rgba(255, 255, 255, 0.1); REMOVED */
  /*   padding-left: 2.5rem; REMOVED */
  /* } REMOVED */
}

/* Optional: Dark Alert Style (if needed later) */
.alert-info-dark {
  color: var(--light-slate-gray);
  background-color: rgba(90, 155, 216, 0.1); /* Use a color derived from #5A9BD8 */
  border-color: rgba(90, 155, 216, 0.2);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.alert-info-dark .alert-link { 
  color: var(--soft-white); 
}
.alert-info-dark i { 
  color: var(--light-slate-gray); 
  margin-right: 0.5rem; 
}

/* --- Sidebar Tag Placement Redesign --- */

#sidebar .tag-placement-options { 
  /* Wrapper has p-4 for padding */
}

#sidebar .tag-placement-options h3 {
  font-family: 'Montserrat', sans-serif !important;
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex; /* Align icon */
  align-items: center;
}

#sidebar .tag-placement-options h3 i {
  color: var(--soft-white); /* Or --light-slate-gray */
  opacity: 0.9;
  font-size: 1em; /* Adjust relative size if needed */
  margin-right: 0.75rem;
}

#sidebar .tag-placement-options h4 {
  color: var(--light-slate-gray);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif !important;
}

.tag-option-item {
  margin-bottom: 2rem;
}
.tag-option-item:last-child {
  margin-bottom: 0; /* Remove margin from last item */
}

.tag-option-icon i {
  color: var(--soft-white);
  opacity: 0.8;
  font-size: 1.5rem;
  width: 25px;
  text-align: center;
}

.tag-option-text h5 {
  color: var(--soft-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem !important; /* Override Bootstrap if needed */
  font-family: 'Montserrat', sans-serif !important;
}

.tag-option-text p {
  color: var(--light-slate-gray);
  font-size: 0.85rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif !important;
}
