/* ==========================================================
   एजंटमराठा - About Page Styles (Image-Matched)
   Aesthetics: Clean, Airy, Glassmorphism, Soft Pink/Purple
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-pink: #ff4d8d;
    --primary-purple: #c44dff;
    --primary-orange: #ff8d4d;
    --soft-bg: #f8faff;
    --glass-white: rgba(255, 255, 255, 0.7);
    --card-shadow: 0 15px 35px rgba(196, 77, 255, 0.12);
    --accent-blue: #4d7cff;
}

body {
    background-color: #f7f9ff;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 77, 141, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(196, 77, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(77, 141, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 141, 77, 0.05) 0px, transparent 50%);
    font-family: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
    color: #444;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Floating Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(196, 77, 255, 0.1));
    filter: blur(80px);
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: rgba(77, 141, 255, 0.08);
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 100px);
    }
}

/* --- Typography --- */
.text-gradient {
    background: linear-gradient(135deg, #4d7cff, #c44dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- Container --- */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 15px;
}

/* --- Header Section --- */
.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 20px;
}

/* --- Glass Card Base --- */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(196, 77, 255, 0.08), 0 0 0 1px rgba(196, 77, 255, 0.02);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(196, 77, 255, 0.12), 0 0 0 1px rgba(196, 77, 255, 0.05);
}

.feature-card {
    height: 100%;
    padding: 20px;
}

/* --- Section Headers --- */
.section-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.icon-box:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.section-head h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #2d3a6b;
}

/* --- Checklists --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 12px;
    transition: background 0.2s;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.4);
}

.feature-list li::before {
    content: '✦';
    color: var(--primary-pink);
    font-weight: 900;
    font-size: 1.1rem;
}

.cta-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff8d4d;
    font-weight: 600;
    font-size: 1rem;
}

/* --- Search Mockup Window --- */
.search-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f4ff;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.search-mockup::after {
    content: '✕';
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ccc;
    font-size: 0.9rem;
}

.mockup-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-info-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
}

.mockup-info-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4d7cff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    font-size: 0.75rem;
    color: #666;
}

.mockup-social {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: #777;
}

.mockup-input {
    width: 100%;
    border: 1px solid #e0e8ff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 12px;
}

.mockup-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.mockup-chip {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #eee;
    color: #888;
}

.mockup-btn {
    background: #f0f7ff;
    color: #4d7cff;
    border: none;
    border-radius: 6px;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    float: right;
}

/* --- Comparison Section --- */
.comparison-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
}

.comparison-card {
    transition: transform 0.3s ease-in-out;
    position: relative;
    padding-top: 35px !important;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comp-icon-top {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.other-card .comp-icon-top {
    background: linear-gradient(135deg, #ff4d4d, #d32f2f);
}

.agent-card .comp-icon-top {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.other-card {
    border: 1px solid rgba(211, 47, 47, 0.1) !important;
}

.agent-card {
    border: 1px solid rgba(46, 125, 50, 0.2) !important;
    background: rgba(232, 245, 233, 0.4) !important;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.comp-list li::before {
    content: '\f105';
    /* FontAwesome angle right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e91e63;
}

.comp-list.positive li::before {
    content: '\f00c';
    /* FontAwesome check */
    color: #2e7d32;
}

.comp-card-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-button-comp {
    background: linear-gradient(135deg, #ff4081, #f50057);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s;
}

.start-button-comp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: white;
}

/* --- New Grid Sections --- */
.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.credit-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(240, 244, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credit-card:hover::before {
    opacity: 1;
}

.credit-card.highlighted {
    background: linear-gradient(135deg, #fff 0%, #f8faff 50%, #f0f7ff 100%);
    border: 2px solid var(--primary-pink);
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 77, 141, 0.15), 0 0 0 1px rgba(255, 77, 141, 0.05);
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 20px 40px rgba(255, 77, 141, 0.15), 0 0 0 1px rgba(255, 77, 141, 0.05);
    }

    50% {
        box-shadow: 0 20px 40px rgba(255, 77, 141, 0.25), 0 0 0 3px rgba(255, 77, 141, 0.1);
    }
}

.credit-card.highlighted::before {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.4);
    animation: star-bounce 2s ease-in-out infinite;
}

@keyframes star-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.credit-card.highlighted i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 77, 141, 0.2));
}

.credit-card.highlighted h3 {
    color: var(--primary-pink);
    font-weight: 800;
}

.credit-card.highlighted .highlight-price {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}

.credit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(77, 124, 255, 0.12), 0 0 0 1px rgba(77, 124, 255, 0.05);
    border-color: rgba(77, 124, 255, 0.3);
}

.credit-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.credit-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 77, 141, 0.3));
}

.credit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.credit-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.highlight-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 6px 0;
    position: relative;
}

.highlight-price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
    border-radius: 2px;
}

.share-banner {
    background: linear-gradient(135deg, #4d7cff 0%, #c44dff 50%, #ff4d8d 100%);
    border-radius: 32px;
    padding: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(196, 77, 255, 0.25);
}

.share-banner::before {
    content: '🎁';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.share-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.share-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.badge-pill {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.8));
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(77, 124, 255, 0.2);
    box-shadow: 0 4px 15px rgba(77, 124, 255, 0.1);
    color: #2d3a6b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 124, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 124, 255, 0.2);
    border-color: rgba(77, 124, 255, 0.4);
}

.badge-pill:hover::before {
    left: 100%;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.privacy-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    color: #4d7cff;
}

.privacy-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.privacy-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* --- Trust Section --- */
.trust-area {
    text-align: center;
    margin-top: 40px;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-heart {
    font-size: 3rem;
    line-height: 1;
}

.trust-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3a6b;
}

.trust-tag {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 8px;
}

/* Inline style replacements */
.brand-heart {
    font-size: 1.4rem;
}

.credit-description {
    max-width: 700px;
}

.cta-arrow-custom {
    color: #ff8d4d;
    font-weight: 700;
}

.feature-list-small {
    font-size: 0.85rem;
}

.social-media-box {
    background: #f0fdf4;
    border: 1px dashed #22c55e;
}

.branch-contact-card {
    background: linear-gradient(135deg, #fff, #f0f7ff);
    border: 1px solid #e0e8ff;
}

.share-button-custom {
    color: #4d7cff;
}

.trust-tag-large {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Colors from Image */
.icon-blue-soft {
    background: #e0f0ff;
    color: #4d7cff;
}

.icon-pink-soft {
    background: #fee7f1;
    color: #ff4d8d;
}

.icon-purple-soft {
    background: #f5edff;
    color: #c44dff;
}

.icon-green-soft {
    background: #e8f9f0;
    color: #00c97a;
}

/* Additional utility classes */
.justify-content-center {
    justify-content: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Dark mode tweaks */
body.dark-mode {
    background-color: #0f1016;
}

body.dark-mode .glass-card {
    background: rgba(30, 32, 45, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode h2,
body.dark-mode .brand-title,
body.dark-mode .trust-name,
body.dark-mode .comp-card-title {
    color: #eee;
}

body.dark-mode .brand-desc,
body.dark-mode .feature-list li,
body.dark-mode .comp-list li {
    color: #bbb;
}

body.dark-mode .search-mockup {
    background: #1a1b26;
    border-color: #2a2b36;
}

body.dark-mode .search-mockup::after {
    color: #666;
}

body.dark-mode .mockup-header {
    color: #eee;
}

body.dark-mode .mockup-info-box {
    background: rgba(77, 124, 255, 0.1);
    border-color: rgba(77, 124, 255, 0.2);
}

body.dark-mode .mockup-info-title {
    color: #93c5fd;
}

body.dark-mode .mockup-info-items {
    color: #bbb;
}

body.dark-mode .mockup-input {
    background: #1a1b26;
    border-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
}

body.dark-mode .mockup-input::placeholder {
    color: #666;
}

body.dark-mode .mockup-chips {
    color: #bbb;
}

body.dark-mode .mockup-chip {
    border-color: rgba(255, 255, 255, 0.2);
    color: #bbb;
    background: rgba(30, 32, 45, 0.5);
}

body.dark-mode .search-chip {
    background: rgba(30, 32, 45, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    color: #bbb;
}

body.dark-mode .search-chip:hover {
    background: rgba(77, 124, 255, 0.2);
    border-color: rgba(77, 124, 255, 0.4);
}

body.dark-mode .mockup-btn {
    background: rgba(77, 124, 255, 0.2);
    color: #93c5fd;
}

body.dark-mode .mockup-btn:hover {
    background: rgba(77, 124, 255, 0.3);
}

body.dark-mode .mockup-social {
    border-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
}

body.dark-mode .mockup-social a {
    color: #93c5fd;
}

body.dark-mode .social-instagram,
body.dark-mode .social-snapchat {
    color: #bbb;
}

body.dark-mode .small {
    color: #bbb;
}

body.dark-mode h5 {
    color: #eee;
}

body.dark-mode .text-dark {
    color: #eee !important;
}

body.dark-mode .fw-bold {
    color: #eee;
}

body.dark-mode .search-info-card {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .search-info-card h5 {
    color: #eee;
}

body.dark-mode .search-info-card p {
    color: #bbb;
}

body.dark-mode .search-info-card .text-muted {
    color: #bbb !important;
}

body.dark-mode .form-floating {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .form-floating label {
    color: #bbb;
}

body.dark-mode .form-floating input,
body.dark-mode .form-floating textarea,
body.dark-mode .form-floating select {
    background: #1a1b26;
    border-color: rgba(255, 255, 255, 0.1);
    color: #eee;
}

body.dark-mode .form-floating input:focus,
body.dark-mode .form-floating textarea:focus,
body.dark-mode .form-floating select:focus {
    background: #1a1b26;
    border-color: rgba(77, 124, 255, 0.5);
    color: #eee;
}

body.dark-mode .form-floating input::placeholder,
body.dark-mode .form-floating textarea::placeholder {
    color: #666;
}

body.dark-mode .agent-card {
    background: rgba(46, 125, 50, 0.05) !important;
}

body.dark-mode .credit-card {
    background: linear-gradient(145deg, #1a1b26, #1e1f2a);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .credit-card h3 {
    color: #eee;
}

body.dark-mode .credit-card p {
    color: #bbb;
}

body.dark-mode .credit-card.highlighted {
    background: linear-gradient(135deg, #1a1b26 0%, #1e1f2a 50%, #252636 100%);
    border-color: rgba(255, 77, 141, 0.5);
}

body.dark-mode .credit-card:hover {
    border-color: rgba(77, 124, 255, 0.4);
}

body.dark-mode .privacy-card {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .privacy-card i {
    background: rgba(77, 124, 255, 0.2);
    color: #93c5fd;
}

body.dark-mode .privacy-info h5 {
    color: #eee;
}

body.dark-mode .privacy-info p {
    color: #bbb;
}

body.dark-mode .share-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}

body.dark-mode .badge-pill {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(77, 124, 255, 0.3);
    color: #eee;
}

body.dark-mode .icon-blue-soft {
    background: rgba(77, 124, 255, 0.2);
    color: #93c5fd;
}

body.dark-mode .icon-pink-soft {
    background: rgba(255, 77, 141, 0.2);
    color: #f472b6;
}

body.dark-mode .icon-purple-soft {
    background: rgba(196, 77, 255, 0.2);
    color: #c084fc;
}

body.dark-mode .icon-green-soft {
    background: rgba(0, 201, 122, 0.2);
    color: #34d399;
}

body.dark-mode .mockup-input {
    background: #1a1b26;
    border-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
}

body.dark-mode .mockup-chip {
    border-color: rgba(255, 255, 255, 0.2);
    color: #bbb;
}

body.dark-mode .mockup-btn {
    background: rgba(77, 124, 255, 0.2);
    color: #93c5fd;
}

body.dark-mode .mockup-info-box {
    background: rgba(77, 124, 255, 0.1);
}

body.dark-mode .mockup-info-title {
    color: #93c5fd;
}

body.dark-mode .mockup-info-items {
    color: #bbb;
}

body.dark-mode .mockup-social {
    border-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
}

body.dark-mode .section-head h2 {
    color: #eee;
}

body.dark-mode .feature-list li {
    color: #bbb;
}

body.dark-mode .feature-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .comparison-card {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .comparison-title {
    color: #eee;
}

body.dark-mode .comp-card-title {
    color: #eee;
}

body.dark-mode .comp-list li {
    color: #bbb;
}

body.dark-mode .other-card {
    border-color: rgba(211, 47, 47, 0.3) !important;
    background: rgba(30, 32, 45, 0.8) !important;
}

body.dark-mode .search-mockup {
    background: #1a1b26;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .mockup-header {
    color: #eee;
}

body.dark-mode .branch-contact-card {
    background: linear-gradient(135deg, #1a1b26, #1e1f2a);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-media-box {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

body.dark-mode .trust-name {
    color: #eee;
}

body.dark-mode .trust-tag {
    color: #bbb;
}

body.dark-mode .text-muted {
    color: #bbb !important;
}

body.dark-mode .lead {
    color: #ccc;
}

body.dark-mode h1 {
    color: #eee;
}

body.dark-mode .brand-desc {
    color: #bbb;
}

body.dark-mode .cta-arrow {
    color: #f472b6;
}

body.dark-mode .cta-arrow-custom {
    color: #f472b6;
}

body.dark-mode .share-button-custom {
    color: #93c5fd;
}

body.dark-mode .credit-description {
    color: #bbb;
}

body.dark-mode .trust-tag-large {
    color: #eee;
}

/* Additional dark mode for database content elements */
body.dark-mode .glass-card {
    background: rgba(30, 32, 45, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .glass-card:hover {
    box-shadow: 0 25px 60px rgba(196, 77, 255, 0.2), 0 0 0 1px rgba(196, 77, 255, 0.1);
}

body.dark-mode .icon-box {
    background: rgba(30, 32, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .icon-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .alert-info {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

body.dark-mode .alert-info i {
    color: #93c5fd;
}

body.dark-mode .alert-info strong {
    color: #93c5fd;
}

body.dark-mode .alert-success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

body.dark-mode .alert-success strong {
    color: #6ee7b7;
}

body.dark-mode .alert-warning {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fcd34d;
}

body.dark-mode .alert-warning strong {
    color: #fcd34d;
}

body.dark-mode .alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

body.dark-mode .alert-danger strong {
    color: #fca5a5;
}

body.dark-mode .container {
    color: #eee;
}

body.dark-mode p {
    color: #bbb;
}

body.dark-mode strong {
    color: #eee;
}

body.dark-mode a {
    color: #93c5fd;
}

body.dark-mode a:hover {
    color: #c084fc;
}

body.dark-mode ul,
body.dark-mode ol {
    color: #bbb;
}

body.dark-mode li {
    color: #bbb;
}

body.dark-mode small {
    color: #999;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 1.8rem;
    }

    .comparison-title {
        font-size: 1.4rem;
    }

    /* Horizontal comparison cards on mobile */
    .row.g-4.mb-5 {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-bottom: 20px !important;
        overflow-x: hidden;
    }

    .row.g-4.mb-5 .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 4px;
    }

    .comparison-card {
        padding: 15px 10px !important;
        padding-top: 30px !important;
    }

    .comp-icon-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: -20px;
    }

    .comp-card-title {
        font-size: 0.9rem;
        margin-bottom: 10px !important;
    }

    .comp-list li {
        font-size: 0.75rem;
        margin-bottom: 6px;
        gap: 8px;
    }

    .comp-list li::before {
        font-size: 0.8rem;
    }

    .comparison-card .alert {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .comparison-card .btn {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    /* Privacy card section mobile styles */
    .glass-card .section-head h2 {
        font-size: 1rem;
    }

    .glass-card .icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .glass-card .text-muted.small {
        font-size: 0.7rem;
        margin-bottom: 10px !important;
    }

    .privacy-card {
        padding: 8px 10px;
        margin-bottom: 6px;
        gap: 10px;
    }

    .privacy-card i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .privacy-info h5 {
        font-size: 0.8rem;
    }

    .privacy-info p {
        font-size: 0.65rem;
    }

    .glass-card .mt-3.small {
        font-size: 0.65rem;
        margin-top: 8px !important;
    }

    .credit-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 25px;
    }

    .credit-card {
        padding: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .credit-card h3 {
        font-size: 0.65rem;
    }

    .credit-card p {
        font-size: 0.55rem;
    }

    .credit-card i {
        font-size: 0.9rem;
    }

    .highlight-price {
        font-size: 0.85rem;
    }
    
    .glass-card {
        padding: 15px;
    }

    .glass-card .row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .glass-card .col-md-4 {
        width: 100%;
        text-align: center;
    }

    .glass-card .badge-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .glass-card .small {
        font-size: 0.7rem;
    }

    .section-head h2 {
        font-size: 1rem;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-item h5 {
        font-size: 0.8rem;
    }

    .feature-item p {
        font-size: 0.7rem;
    }

    .cta-arrow {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    /* Use row-reverse to swap columns: first list on the right, second on the left */
    .glass-card .row.mobile-two-col,
    .glass-card .row:has(.feature-list-small) {
        display: flex !important;
        flex-direction: row-reverse !important;
        flex-wrap: nowrap !important;
        gap: 5px !important;
    }
    
    .glass-card .row.mobile-two-col > div,
    .glass-card .row:has(.feature-list-small) > div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        overflow: hidden !important;
    }

    .glass-card .row.mobile-two-col .feature-list-small li,
    .glass-card .row:has(.feature-list-small) .feature-list-small li {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 0.75rem !important;
        padding: 4px 6px !important;
    }
}