/* css/style.css */

/* ==================================================
   1. Root Variables & Reset
================================================== */

:root {
    --simpay-orange: #FF7324;
    --simpay-pink: #FF00FF;
    --simpay-dark: #1A1A1A;
    --simpay-bg: #FCFCFC;
    --simpay-gradient: linear-gradient(135deg, #FF7324, #FF00FF);
}
body {
    background-color: var(--simpay-bg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}
/* ==================================================
   2. Colors, Gradients & Backgrounds
================================================== */

.text-orange {
    color: var(--simpay-orange) !important;
}
.text-pink {
    color: var(--simpay-pink) !important;
}
.text-dark-theme {
    color: var(--simpay-dark) !important;
}
.text-purple-custom {
    color: #9333ea;
}
.text-warning-custom {
    color: #ca8a04;
}
.text-success {
    color: #FFF !important;
}
.text-gradient {
    background: var(--simpay-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-orange {
    background-color: var(--simpay-orange) !important;
}
.bg-pink {
    background-color: var(--simpay-pink) !important;
}
.bg-dark-blue {
    background-color: #14264E !important;
}
.bg-whatsapp {
    background-color: #25D366 !important;
}
.bg-gradient-brand {
    background: var(--simpay-gradient) !important;
    color: white;
}
/* Light Theme Backgrounds */

.bg-orange-50 {
    background-color: #fff7ed !important;
}
.bg-pink-50 {
    background-color: #fdf2f8 !important;
}
.bg-blue-50 {
    background-color: #eff6ff !important;
}
.bg-purple-50 {
    background-color: #faf5ff !important;
}
.bg-green-50 {
    background-color: #f0fdf4 !important;
}
.bg-red-50 {
    background-color: #fef2f2 !important;
}
.bg-yellow-50 {
    background-color: #fefce8 !important;
}
/* Gradients & FX */

.wallet-gradient {
    background: linear-gradient(to bottom right, #FF7324, #ff985e);
}
.pay-gradient {
    background: linear-gradient(to top right, #FF7324, #FF00FF);
}
.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.85);
}
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
/* ==================================================
   3. Typography & Spacing Helpers
================================================== */

.fs-10 {
    font-size: 10px !important;
}
.fs-12 {
    font-size: 12px !important;
}
.fs-2-5rem {
    font-size: 2.5rem;
}
.tracking-1 {
    letter-spacing: 1px;
}
.spacing-neg-1 {
    letter-spacing: -1px;
}
.spacing-neg-05 {
    letter-spacing: -0.5px;
}
.fw-300 {
    font-weight: 300;
}
.rounded-2xl {
    border-radius: 1rem !important;
}
.rounded-3xl {
    border-radius: 1.5rem !important;
}
.rounded-4xl {
    border-radius: 2.5rem !important;
}
.z-100 {
    z-index: 100 !important;
}
.z-index-0 {
    z-index: 0;
}
.z-index-1 {
    z-index: 1;
}
.pointer-events-none {
    pointer-events: none;
}
.h-5px {
    height: 5px;
}
.w-33pc {
    width: 33%;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-550 {
    max-width: 550px;
}
/* ==================================================
   4. Interactive States & Animations
================================================== */

.cursor-pointer {
    cursor: pointer;
}
.text-orange-hover:hover {
    color: var(--simpay-orange) !important;
}
.transition {
    transition: all 0.3s ease;
}
.transition-all {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.group:hover .zoom-img {
    transform: scale(1.1);
}
.zoom-img {
    transition: transform 0.5s ease;
}
/* Scroll Reveals */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 {
    transition-delay: 100ms;
}
.delay-200 {
    transition-delay: 200ms;
}
/* Floating & Pulsing */

@keyframes float-smooth {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes blob-pulse {
    0% {
        transform: scale(1) translate(0px, 0px);
    }
    33% {
        transform: scale(1.1) translate(20px, -30px);
    }
    66% {
        transform: scale(0.9) translate(-20px, 20px);
    }
    100% {
        transform: scale(1) translate(0px, 0px);
    }
}
.floating-element {
    animation: float-smooth 6s ease-in-out infinite;
}
.blob-bg {
    animation: blob-pulse 15s infinite alternate;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}
/* ==================================================
   5. Component Layouts
================================================== */

/* --- Header & Navigation --- */

.main-header {
    z-index: 50;
}
.header-container {
    height: 4.5rem;
}
.header-logo {
    height: 48px;
}
.user-avatar-wrapper {
    border-color: #FF7324 !important;
    width: 40px;
    height: 40px;
}
/* --- Hero Slider --- */

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    aspect-ratio: 21/9;
}
.heroSwiper {
    overflow: visible !important;
}
.heroSwiper .swiper-slide {
    width: 82%;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.heroSwiper .swiper-slide a {
    transform: scale(0.9);
    transition: transform 0.4s ease;
    display: block;
}
.heroSwiper .swiper-slide-active {
    opacity: 1;
}
.heroSwiper .swiper-slide-active a {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
}
.hero-nav-position {
    bottom: 1.5rem;
    right: 8%;
}
.pagination-min-width {
    min-width: 32px;
}
@media (min-width: 768px) {
    .heroSwiper .swiper-slide {
        width: 82%;
    }
    .heroSwiper .swiper-slide a {
        transform: scale(0.85);
    }
    .heroSwiper .swiper-slide-active a {
        transform: scale(1);
    }
    .hero-nav-position {
        right: 14%;
        bottom: 2rem;
    }
}
/* --- Intro Section --- */

.section-intro-gradient {
    background: linear-gradient(180deg, var(--simpay-bg) 0%, rgba(255, 115, 36, 0.04) 100%);
}
.intro-heading {
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}
.feature-list-max {
    max-width: 320px;
}
.intro-cashback-card {
    width: 85%;
}
.blob-top-right {
    width: 350px;
    height: 350px;
    top: 5%;
    right: 5%;
}
.blob-bottom-mid {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 35%;
    animation-delay: -5s;
}
.blob-left-mid {
    background-color: #14264E;
    width: 250px;
    height: 250px;
    top: 40%;
    left: -5%;
    animation-delay: -10s;
    opacity: 0.15;
}
.feature-tick {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--simpay-gradient);
    color: white;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(255, 115, 36, 0.3);
}
.phone-mockup {
    position: relative;
    border: 12px solid #1A1A1A;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9/19;
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1A1A1A;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
/* --- Dashboard --- */

.dash-icon-bg {
    right: -20px;
    bottom: -20px;
    font-size: 7rem;
}
.atr-cash-card {
    background: linear-gradient(135deg, #14264E 0%, #0a142e 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.withdraw-btn-fs {
    font-size: 13px;
    z-index: 20;
}
.border-light-custom {
    border: 1px solid #eaeaea;
}
.unit-top-bar {
    height: 5px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.border-faint {
    border-color: #f1f1f4 !important;
}
.stat-icon-box {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}
.stat-label-text {
    font-size: 11px;
    letter-spacing: 1px;
    color: #86868b;
}
.stat-badge-fs {
    font-size: 12px;
    letter-spacing: 0.5px;
}
/* --- Explore Services (Utility Panel) --- */

.utility-panel {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 2.5rem 1rem;
    position: relative;
    z-index: 10;
}
.utility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1rem;
}
.utility-card {
    text-align: center;
    cursor: pointer;
}
.utility-label {
    font-size: 11px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.75rem;
    transition: color 0.3s ease;
}
.icon-circle {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.icon-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--simpay-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.utility-card:hover .icon-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 115, 36, 0.2);
    color: white !important;
}
.utility-card:hover .icon-circle::before {
    opacity: 1;
}
.utility-card:hover .utility-label {
    color: var(--simpay-orange);
}
@keyframes rubberBand {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
.utility-card:hover .icon-circle i {
    animation: rubberBand 0.8s ease forwards;
}
@media (max-width: 767px) {
    .utility-panel {
        padding: 1.5rem 0.5rem;
    }
    .icon-circle {
        width: 3.5rem !important;
        height: 3.5rem !important;
        font-size: 1.4rem !important;
        border-radius: 1rem !important;
    }
    .utility-grid {
        gap: 1.5rem 0.25rem !important;
    }
}
@media (min-width: 768px) {
    .utility-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (min-width: 1024px) {
    .utility-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}
/* --- Promo Video Section --- */

.promo-video-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.promo-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}
.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--simpay-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
    transition: transform 0.3s ease;
}
.play-btn-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
/* --- Business Plan Cards --- */

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .business-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.business-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .business-card {
        padding: 1.5rem;
    }
}
.business-card:hover {
    border-color: var(--simpay-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}
.business-card .number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3.5rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--simpay-dark);
    transition: all 0.3s ease;
}
.business-card:hover .number {
    color: var(--simpay-orange);
    opacity: 0.1;
    transform: scale(1.1);
}
/* --- General Swiper Helpers --- */

.swiper-nav-pill {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 20;
}
@media (max-width: 767px) {
    .jobSwiper .swiper-slide, .shopSwiper .swiper-slide {
        width: calc(50% - 10px) !important;
    }
}
.shopSwiper .swiper-slide img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}
/* --- Support CTA Banner (Dark Glass Theme) --- */

.cta-dark-bg {
    background: linear-gradient(135deg, #182444 0%, #2b213c 100%);
}
.cta-glow-orange {
    background-color: #FF7324;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    filter: blur(90px);
}
.cta-glow-pink {
    background-color: #FF00FF;
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -50px;
    filter: blur(90px);
}
.btn-support {
    background-color: transparent;
    color: #f8f9fa !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    text-decoration: none;
}
.btn-support:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff !important;
}
.btn-support i {
    color: #e5e5e5 !important;
    transition: transform 0.3s ease;
}
.btn-support:hover i {
    transform: scale(1.1);
    color: #ffffff !important;
}
/* --- Premium Footer --- */

.bg-footer {
    background-color: #f5f5f7;
}
.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}
.footer-link {
    font-size: 12px;
    color: #515154;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-link:hover {
    color: var(--simpay-orange);
    text-decoration: underline;
    text-decoration-color: var(--simpay-orange);
    text-underline-offset: 4px;
}
.social-icon-footer {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e8e8ed;
    color: #1d1d1f;
    font-size: 14px;
    transition: all 0.3s ease;
}
.social-icon-footer:hover {
    background-color: var(--simpay-orange);
    color: white;
    transform: translateY(-2px);
}
/* --- Video Ad --- */

.video-ad-box {
    width: 260px;
    bottom: 85px;
    right: 15px;
    z-index: 1050;
    border: 2px solid var(--simpay-pink);
    background-color: #000;
}
.close-ad-btn {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 20;
    border: none;
}
.video-ad-preview {
    background-color: #4B5563;
    aspect-ratio: 16/9;
}
/* ==================================================
   6. Recharge Page Specifics
================================================== */

/* Hide scrollbars for horizontal scrolling elements */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom Nav Pills for Recharge */
.recharge-tabs {
    border-bottom: 2px solid #f1f1f4;
}
.recharge-tabs .nav-link {
    color: #86868b;
    background-color: transparent;
    transition: all 0.3s ease;
}
.recharge-tabs .nav-link:hover {
    color: var(--simpay-dark);
    background-color: #f8f9fa;
}
.recharge-tabs .nav-link.active {
    background: var(--simpay-gradient);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 115, 36, 0.3);
}

/* Large Input Fields */
.recharge-input-wrapper {
    border-color: #e5e5ea !important;
}
.recharge-input-wrapper:focus-within {
    border-color: var(--simpay-orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 115, 36, 0.1);
    background-color: #fff !important;
}
.recharge-input-wrapper input::placeholder {
    color: #d2d2d7;
    font-weight: 400;
}
/* Remove arrows from number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Operator Selection Grid */
.operator-icon {
    width: 60px;
    height: 60px;
    border-color: #e5e5ea !important;
    transition: all 0.3s ease;
}
.operator-box:hover .operator-icon {
    border-color: var(--simpay-orange) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
}

.hover-scale { transition: transform 0.2s; }
.hover-scale:hover { transform: scale(1.15); }
/* ==================================================
   All Categories Dropdown Grid
================================================== */
.category-grid {
    display: grid;
    /* 4 items per row on mobile, matching CRED/PhonePe style */
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem 0.5rem;
}

@media (min-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.category-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover .category-icon-circle {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.category-item-label {
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.category-item:hover .category-item-label {
    color: var(--simpay-orange);
}
/* ==================================================
   7. Shop / Marketplace Specifics
================================================== */
.bg-light-gray { background-color: #F8F9FA; }

/* Location & Search Hero */
.shop-hero-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}
.line-height-1 { line-height: 1.2; }

/* Dual Search Input */
.dual-search-container {
    border: 2px solid rgba(255,255,255,0.1);
}
.dual-search-container:focus-within {
    border-color: var(--simpay-orange);
    box-shadow: 0 0 0 5px rgba(255, 115, 36, 0.1) !important;
}
.search-toggle .btn {
    color: #6c757d;
}
.search-toggle .btn-check:checked + .btn {
    background-color: #fff;
    color: var(--simpay-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Local Steals (Offer Shops) */
.offer-shop-card {
    height: 140px;
    background: #1A1A1A;
}
.offer-shop-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
}

/* Sidebar Custom Filters */
.custom-range::-webkit-slider-thumb {
    background: var(--simpay-orange);
}
.custom-range::-moz-range-thumb {
    background: var(--simpay-orange);
}
.custom-checkbox .form-check-input:checked {
    background-color: var(--simpay-orange);
    border-color: var(--simpay-orange);
}
.custom-switch .form-check-input:checked {
    background-color: var(--simpay-pink);
    border-color: var(--simpay-pink);
}

/* Smart Product Grid (2 col mobile, 3/4 col desktop) */
.shop-grid {
    display: grid;
    /* STRICT 2-column for mobile */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Promo Banner inside the Grid (Spans across) */
.shop-grid-promo {
    /* Span 2 columns on mobile */
    grid-column: span 2; 
}
@media (min-width: 768px) {
    /* Span 3 columns on tablet to break the grid nicely */
    .shop-grid-promo { grid-column: span 3; }
}
@media (min-width: 1024px) {
    /* Span 2 columns on desktop */
    .shop-grid-promo { grid-column: span 2; }
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}
/* ==================================================
   8. Job Portal Specifics
================================================== */
/* Jobs Hero Background */
.job-hero-bg {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
.blob-bottom-right { right: -50px; bottom: -50px; left: auto; top: auto; }
.border-end-md { border-right: none; }
@media (min-width: 768px) {
    .border-end-md { border-right: 1px solid #eaeaea !important; }
}
.max-w-4xl { max-width: 56rem; }
.filter-sidebar-top { top: 100px; }

/* Job Card Hover & Scale Effects */
.border-hover-orange { border: 1px solid #eaeaea; }
.border-hover-orange:hover { border-color: var(--simpay-orange); }
.job-icon-box { transition: transform 0.3s ease; }
.border-hover-orange:hover .job-icon-box { transform: scale(1.1) rotate(-5deg); }
.hover-scale-btn { transition: transform 0.2s; }
.hover-scale-btn:active { transform: scale(0.95); }

/* Job List Grid (1 col mobile, 2 col tablet, 3 col desktop) */
.job-list-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile to ensure readable text */
    gap: 1rem;
}
@media (min-width: 768px) {
    .job-list-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .job-list-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ==================================================
   Filter Pill Tabs (Used in Jobs & Shop)
================================================== */
.filter-pills-nav .nav-link {
    background-color: #ffffff;
    color: var(--simpay-dark);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.filter-pills-nav .nav-link:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.filter-pills-nav .nav-link.active {
    background-color: var(--simpay-dark) !important;
    color: #ffffff !important;
    border-color: var(--simpay-dark) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Helper to make placeholder text span all columns in the grid */
.grid-column-span-all {
    grid-column: 1 / -1;
}
.property-hero-bg {
    background: linear-gradient(135deg, #2b213c 0%, #1e1b4b 100%);
}
/* ==================================================
   10. Exclusive Units Page Specifics
================================================== */
/* Units Hero */
.unit-hero-bg {
    background: linear-gradient(135deg, #14264E 0%, #0a142e 100%);
}
.mt-neg-5 {
    margin-top: -3rem;
}
.z-index-10 {
    z-index: 10;
}

/* Algorithm & Timeline Styling */
.algorithm-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.font-monospace {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: -0.5px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #f1f1f4;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
}

/* Custom left borders for Level Cards */
.custom-border-start {
    border-left: 4px solid transparent !important;
}
.border-start-danger { border-left-color: #dc3545 !important; }
.border-start-orange { border-left-color: var(--simpay-orange) !important; }
.border-start-warning { border-left-color: #ffc107 !important; }
.border-start-primary { border-left-color: #0d6efd !important; }
.border-start-pink { border-left-color: var(--simpay-pink) !important; }

/* Responsive adjustments for the timeline */
@media (max-width: 767px) {
    .timeline-row { text-align: center; }
    .timeline-dot { margin-bottom: 1rem; }
    .custom-border-start { border-left: none !important; border-top: 4px solid transparent !important; }
    .border-start-danger { border-top-color: #dc3545 !important; }
    .border-start-orange { border-top-color: var(--simpay-orange) !important; }
    .border-start-warning { border-top-color: #ffc107 !important; }
    .border-start-primary { border-top-color: #0d6efd !important; }
    .border-start-pink { border-top-color: var(--simpay-pink) !important; }
}
/* ==================================================
   11. User Profile Specifics
================================================== */
/* Profile Hero Background */
.profile-hero-section {
    background: linear-gradient(135deg, #182444 0%, #2b213c 100%);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Avatar Container */
.profile-avatar-wrap {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 5;
}
.edit-avatar-btn {
    width: 28px;
    height: 28px;
    bottom: 2px;
    right: 2px;
    border: 2px solid white;
}

/* Custom Accordion Styling (App Style) */
.custom-profile-accordion .accordion-item {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #f1f1f4;
}
.custom-profile-accordion .accordion-item:last-child {
    border-bottom: none;
}
.custom-profile-accordion .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 1.25rem;
}
.custom-profile-accordion .accordion-button:not(.collapsed) {
    color: var(--simpay-orange);
}
.custom-profile-accordion .accordion-button::after {
    background-size: 1rem;
}
.custom-profile-accordion .accordion-body {
    padding: 1rem 1.25rem 1.5rem;
    background-color: #fafafa;
}

/* Quick Actions Grid */
.action-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.group:hover .action-icon-circle {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

/* Ledger List Elements */
.hover-bg-light:hover {
    background-color: #f8f9fa;
}
.fs-14 {
    font-size: 14px !important;
}

/* Custom Input Groups inside specific cards */
.input-group .form-control:focus {
    box-shadow: none;
}
/* ==================================================
   11. Dashboard / Profile Specifics (Sidebar Layout)
================================================== */
/* Sidebar Base Styling */
.dashboard-sidebar {
    width: 260px;
    z-index: 1040;
    transition: transform 0.3s ease-in-out;
}

.dashboard-main {
    transition: margin-left 0.3s ease-in-out;
    background-color: #f5f6fa;
}

@media (min-width: 992px) {
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
    }
    .dashboard-main {
        margin-left: 260px;
    }
}

/* Sidebar Links */
.sidebar-scroll {
    height: calc(100vh - 80px);
    overflow-y: auto;
}
.sidebar-link {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar-link:hover {
    background-color: rgba(255, 115, 36, 0.05);
    color: var(--simpay-orange) !important;
}
.sidebar-link.active {
    background-color: #EBF4FF; /* Very light primary tone */
    color: var(--simpay-primary) !important;
    border-left-color: #0d6efd;
}
.w-20px { width: 20px; }

/* Profile Hero Banner (Screenshot 3 Replication) */
.profile-hero-banner {
    background: linear-gradient(135deg, #182039 0%, #2b213c 100%);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.overlap-cards-container {
    margin-top: -45px;
}

/* Custom Table Styling */
.custom-table th {
    background-color: #f8f9fa !important;
    border-bottom: 2px solid #eaeaea;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.custom-table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}
.max-w-250 { max-width: 250px; }

/* Quick Actions Grid */
.action-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.group:hover .action-icon-circle {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.hover-text-orange:hover {
    color: var(--simpay-orange) !important;
}
/* ==================================================
   12. Custom Scrollable Ledger / Logs
================================================== */
/* Scroll Container for Logs */
.log-scroll-container {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Custom Thin Scrollbar Styling */
.log-scroll-container::-webkit-scrollbar {
    width: 6px;
}
.log-scroll-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}
.log-scroll-container::-webkit-scrollbar-thumb {
    background: #d2d2d7;
    border-radius: 10px;
}
.log-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--simpay-orange);
}

/* Ledger Row Enhancements */
.ledger-row {
    transition: background-color 0.2s ease;
}
.hover-bg-light:hover {
    background-color: #f8f9fa !important;
}
.fs-8 { font-size: 8px !important; }
.fs-14 { font-size: 14px !important; }