/* WhizzAct AI Services V3 - Advanced Components */
:root {
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-blue: #3419AB;
    --accent-purple: #A539C5;
    --accent-cyan: #22d3ee;
    --border-light: #e2e8f0;
    --border-dark: #334155;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
}

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: #f8fafc;
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
.hero-v3 {
    padding: 100px 0 80px;
    background: radial-gradient(circle at 50% 0%, #f1f5f9 0%, #ffffff 60%);
    text-align: left;
    /* Changed from center to left for default desktop */
    overflow: hidden;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -2px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 800;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 40px 0;
    /* Aligned left */
    line-height: 1.6;
}

/* --- HERO VISUAL (Phone + Floating Elements) --- */
.hero-stage {
    position: relative;
    height: 600px;
    /* Reduced from 700px */
    margin-top: 0;
    display: flex;
    justify-content: center;
    /* Center phone in the column */
    perspective: 1000px;
}

/* Global Button Styles */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary {
    background: var(--accent-blue);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--accent-blue);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 25, 171, 0.3);
}

.phone-frame {
    width: 340px;
    height: 680px;
    background: #fff;
    border: 12px solid #1e293b;
    border-radius: 48px;
    position: relative;
    z-index: 10;
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.25);
    transform: rotateX(5deg) scale(0.9);
    /* Added scale to fit better */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-frame:hover {
    transform: rotateX(0deg) translateY(-20px) scale(0.9);
}

.phone-screen {
    height: 100%;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

/* App UI */
.app-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-content {
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.app-btn {
    background: var(--accent-blue);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

/* Floating Cards (Parallax) */
.float-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    animation: float-y 6s ease-in-out infinite;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Relative to the center of the column (hero-stage) */
.fw-1 {
    top: 25%;
    left: 50%;
    margin-left: -320px;
    /* Adjusted */
}

.fw-2 {
    top: 45%;
    right: 50%;
    margin-right: -320px;
    /* Adjusted */
    animation-delay: 1s;
}

.fw-3 {
    bottom: 25%;
    left: 50%;
    margin-left: -280px;
    /* Adjusted */
    animation-delay: 2s;
}

@keyframes float-y {

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

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

.fw-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-blue {
    background: #eff6ff;
    color: var(--accent-blue);
}

.icon-purple {
    background: #f3e8ff;
    color: var(--accent-purple);
}

.icon-cyan {
    background: #ecfeff;
    color: var(--accent-cyan);
}

/* --- RADAR / GLOBAL NETWORK SECTION --- */
.radar-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #fff;
}

.radar-container {
    width: 600px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    border: 1px dashed #e2e8f0;
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

.rc-1 {
    width: 100%;
    height: 100%;
    animation-direction: reverse;
}

.rc-2 {
    width: 70%;
    height: 70%;
    border-style: solid;
    border-color: #f1f5f9;
}

.rc-3 {
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(52, 25, 171, 0.03) 0%, transparent 70%);
}

.radar-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(52, 25, 171, 0.4);
    animation: pulse-dot 2s infinite;
}

.rd-1 {
    top: 10%;
    left: 50%;
}

.rd-2 {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
    background: var(--accent-cyan);
}

.rd-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
    background: var(--accent-purple);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --- ICON GRID (Reference Style) --- */
.grid-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.icon-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-blue);
}

.ic-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.ic-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
}

.ic-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: auto;
}

.ic-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* --- DARK TERMINAL / API SECTION --- */
.terminal-section {
    padding: 80px 0;
    background: #ffffff;
    color: var(--text-primary);
}

.terminal-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid #334155;
    font-family: 'Fira Code', monospace;
}

.tw-header {
    background: #334155;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.tw-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.tw-dot.r {
    background: #ef4444;
}

.tw-dot.y {
    background: #f59e0b;
}

.tw-dot.g {
    background: #10b981;
}

.tw-body {
    padding: 24px;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: block;
}

.cl-num {
    color: #475569;
    margin-right: 16px;
    user-select: none;
}

.c-k {
    color: #c084fc;
}

/* Key/Purple */
.c-f {
    color: #60a5fa;
}

/* Func/Blue */
.c-s {
    color: #22d3ee;
}

/* String/Cyan */

/* --- STATISTICS / GLASS LAYERS --- */
.stats-layer-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.sc-focus {
    z-index: 10;
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(52, 25, 171, 0.15);
    border: 2px solid var(--accent-blue);
}

.sc-back {
    opacity: 0.6;
    transform: scale(0.9);
}

.sc-left {
    left: 10%;
    top: 20%;
    transform: rotate(-5deg);
}

.sc-right {
    right: 10%;
    bottom: 20%;
    transform: rotate(5deg);
}

/* --- SECURITY SHIELDS (Refined) --- */
.sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.sec-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: 0.3s;
}

.sec-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sec-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

/* --- CTA --- */
.cta-massive {
    padding: 140px 0;
    text-align: center;
    background: #fff;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

/* --- NEW SECTIONS: Capabilities & Methodology --- */
.cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cp-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: 0.3s;
}

.cp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-blue);
}

.cp-icon {
    min-width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cp-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cp-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Process/Methodology */
.proc-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.proc-card {
    background: #fff;
    padding: 40px 30px 30px;
    border-radius: 20px;
    position: relative;
    margin-top: 30px;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.proc-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(52, 25, 171, 0.05);
    transform: translateY(-5px);
}

.proc-num {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Beyond Code Parallax */
.beyond-section {
    position: relative;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=60&w=1200&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 0;
}

.beyond-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.beyond-text {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.beyond-sub {
    color: var(--accent-cyan);
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Tech Stack Logo Grid */
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.tech-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: default;
}

.tech-logo:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* --- RESPONSIVE / MOBILE STYLES --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .fw-1 {
        margin-left: -380px;
    }

    .fw-2 {
        margin-right: -400px;
    }

    .fw-3 {
        margin-left: -320px;
    }
}

@media (max-width: 991px) {

    /* Hero */
    .hero-stage {
        height: auto;
        margin-top: 40px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .phone-frame {
        margin: 0 auto;
        transform: none !important;
        box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.2);
        order: -1;
    }

    .phone-frame:hover {
        transform: none;
    }

    /* Floating Widgets - Stack */
    .float-widget {
        position: static;
        margin: 0;
        width: 100%;
        max-width: 340px;
        animation: none;
        transform: none !important;
    }

    .fw-1,
    .fw-2,
    .fw-3 {
        margin: 0;
    }

    /* Typography */
    .hero-title {
        font-size: 3rem;
    }

    /* Security Grid */
    .sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Terminal */
    .terminal-section {
        padding: 60px 0;
    }

    .terminal-window {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {

    /* General Padding */
    .section-padding {
        padding: 60px 0;
    }

    .hero-v3 {
        padding: 120px 0 60px;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .phone-frame {
        width: 100%;
        max-width: 320px;
        height: 600px;
        border-width: 8px;
    }

    /* Floating Widgets */
    .float-widget {
        max-width: 100%;
    }

    /* Unified Platform Visual */
    .col-lg-5.offset-lg-1 .position-relative {
        height: 300px !important;
        margin-top: 40px;
    }

    /* Typography */
    h2[style] {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 2rem;
    }

    /* Security Grid */
    .sec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sec-item {
        padding: 16px;
    }

    /* Beyond Section */
    .beyond-section {
        height: 300px;
        margin: 0;
    }

    .beyond-text {
        font-size: 3rem;
    }

    /* CTA */
    .cta-massive {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .cta-massive .d-flex {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .cta-massive .btn {
        width: 100%;
        margin: 0;
    }
}

/* --- SECURITY CARDS (Refined) --- */
.sec-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.sec-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Generic Hover Utility */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {

    /* Center Section Headings & Leads */
    .section-padding h2,
    .section-padding .lead,
    .section-padding .text-uppercase.small {
        text-align: center !important;
    }

    /* Center Badges/Pills Wrapper */
    .col-lg-5 .d-inline-flex,
    .col-lg-6 .d-inline-flex {
        width: auto;
        justify-content: center;
        margin: 0 auto 24px auto !important;
        display: inline-flex;
    }

    /* Reset Integration Grid Transforms (Floating Cards) */
    .wrapper-integ .col-6 .p-4 {
        transform: none !important;
        margin-bottom: 20px;
    }

    /* Methodology Connector Line */
    .border-dashed {
        display: none !important;
    }

    /* Dashboard Visual Scaling */
    .dashboard-visual {
        transform: scale(0.95);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    /* General Column Spacing */
    .section-padding .col-lg-5,
    .section-padding .col-lg-6 {
        margin-bottom: 30px;
    }

    /* Center Content Wrapper for Sections */
    .col-lg-5,
    .col-lg-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Exception: Keep feature list items (icon+text) aligned properly */
    .d-flex.gap-3 {
        width: 100%;
        justify-content: flex-start;
        /* Keep internal icon+text row start-aligned */
        text-align: left;
        /* Keep text left aligned */
        max-width: 400px;
        /* Constrain width so it looks centered on screen */
    }

    /* Ensure Buttons are Centered */
    .btn {
        align-self: center;
    }

    /* Hero Title Scaling */
    .hero-title {
        font-size: 2.5rem !important;
        text-align: center;
    }
}

/* Smaller Security Cards on Mobile */
@media (max-width: 767px) {
    .sec-card {
        padding: 20px 15px;
    }

    .sec-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .sec-card h5 {
        font-size: 1rem;
    }

    .sec-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    /* controlled by JS */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.92) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Cal Modal Styles */
.cal-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 1rem;
}

.cal-modal.show {
    display: flex;
}

.cal-modal-content {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.cal-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100001;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 576px) {
    .cal-modal-close {
        right: 12px;
        top: 12px;
        width: 34px;
        height: 34px;
    }

    .cal-modal-content {
        height: 86vh;
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.modal-body::-webkit-scrollbar {
    display: none;
}

.btn-close-modal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    color: #ef4444;
    background: #fee2e2;
    border-color: #fca5a5;
}

.form-control {
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(52, 25, 171, 0.08);
}

.form-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.budget-group {
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    transition: all 0.2s;
}

.budget-group:focus-within {
    background: #fff !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 4px rgba(52, 25, 171, 0.08);
}

/* Remove default focus ring for inputs inside the budget group */
.budget-group .form-control:focus,
.budget-group .form-select:focus {
    box-shadow: none !important;
    background: transparent !important;
    border-color: transparent !important;
}