:root {
    --bg-black: #050505;
    --bg-darker: #000000;
    --text-white: #f5f5f7;
    --text-gray: #a1a1a6;
    --accent-green: #10B981;
    --accent-green-dark: #0A2E1F;
    --accent-red: #EF4444;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }

/* Layout & Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #000;
    border: none;
}
.btn-primary:hover {
    background-color: #0ea5e9; /* Slight color shift or just brighter green */
    background-color: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    background: var(--glass-bg);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: clamp(28px, 2.5vw, 42px); /* Scales width approx 130px to 210px */
    font-weight: 700;
    letter-spacing: -1px;
}
.logo span {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-content {
    text-align: center;
    max-width: 900px;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Unified Decorative Design System */
.decor-sys-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 500px;
    z-index: 0;
    pointer-events: none;
}
.section-decor-left { left: 5%; }
.section-decor-right { right: 5%; }

.decor-sys-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decor-sys-card {
    position: absolute;
    background: rgba(20, 20, 22, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 15px rgba(16,185,129,0.02);
    z-index: 2;
    animation: floatCard 6s infinite ease-in-out;
    opacity: 0.8;
}

/* Card Elements */
.dc-icon {
    font-size: 1.5rem;
    color: var(--text-gray);
}
.dc-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px;
}
.dc-line {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    width: 100%;
}
.dc-line.short { width: 60%; }
.dc-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.dc-bar { width: 12px; background: rgba(255,255,255,0.1); border-radius: 4px 4px 0 0; }
.dc-bar.b1 { height: 40%; }
.dc-bar.b2 { height: 60%; }
.dc-bar.b3 { height: 100%; background: var(--accent-green); box-shadow: 0 0 10px rgba(16,185,129,0.3); }

/* Specific Card Layouts */
.decor-card-msg { width: 140px; }
.decor-card-profile { width: 120px; }
.decor-card-store { width: 130px; }
.decor-card-chart { 
    width: 110px; flex-direction: row; align-items: flex-end; justify-content: center; height: 60px; gap: 8px;
}

/* Placements for Hero */
.c-wa { top: 15%; left: 10%; animation-delay: 0s; }
.c-profile { top: 45%; right: 10%; animation-delay: -2s; }
.c-store { bottom: 15%; left: 20%; animation-delay: -4s; }
.c-chart { top: 15%; right: 20%; animation-delay: -1s; }
.c-reward { top: 45%; left: 10%; width: 120px; animation-delay: -3s; }
.c-return { bottom: 15%; right: 10%; width: 130px; animation-delay: -5s; }

/* Background Glows */
.decor-sys-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* Floating Particles */
.decor-sys-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    z-index: 0;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floatParticle {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(30px, -40px) scale(1.5); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

/* Horizontal Flow Sequence */
.horizontal-flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 60px 0;
}
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
}
.flow-illus {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.scene-icon-1 {
    font-size: 2.5rem;
    position: absolute;
    transform: translate(-15px, -5px);
}
.scene-icon-2 {
    font-size: 2.2rem;
    position: absolute;
    transform: translate(15px, 10px);
    color: var(--text-gray);
}
.scene-icon-center {
    font-size: 3.5rem;
}
.error-state {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), var(--glass-bg));
}
.flow-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}
.flow-arrow {
    font-size: 1.5rem;
    color: var(--glass-border);
    margin-bottom: 50px;
}


/* How It Works Visual Story */
.story-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}
.story-step {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 60px;
}
.story-left {
    text-align: right;
    justify-content: space-between;
}
.story-left .story-text {
    align-items: flex-end;
}
.story-right {
    text-align: left;
    justify-content: space-between;
}
.story-right .story-text {
    align-items: flex-start;
}
.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.story-visual {
    flex: 1;
    min-height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.fade-away {
    opacity: 0.7;
    filter: grayscale(0.5);
}
.glow-green {
    box-shadow: 0 10px 40px rgba(16,185,129,0.15), inset 0 0 20px rgba(16,185,129,0.05);
    border-color: rgba(16,185,129,0.3);
}
.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.story-text h3 {
    font-size: 2rem;
    line-height: 1.2;
}
.story-arrow {
    font-size: 2rem;
    color: var(--glass-border);
    margin: 20px 0;
}

/* Visual Elements inside story */
.scene-large {
    font-size: 6rem;
    color: var(--text-white);
}
.scene-overlay {
    font-size: 3rem;
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: var(--text-gray);
}
.story-left .scene-overlay {
    right: auto;
    left: 50px;
}
.mock-data-large {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-gray);
    background: rgba(0,0,0,0.4);
    padding: 15px 20px;
    border-radius: 12px;
    width: 80%;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
}
.mock-data-large i {
    color: var(--accent-green);
    font-size: 1.5rem;
}
.whatsapp-bubble {
    background: #1c1c1e;
    padding: 20px;
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    width: 80%;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16,185,129,0.1);
}
.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.wa-header i { font-size: 1.5rem; }
.wa-body {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.5;
}
.chart-visual-large {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 70%;
    height: 150px;
    position: relative;
}
.bar {
    width: 30px;
    background: var(--glass-border);
    border-radius: 6px 6px 0 0;
}
.bar-1 { height: 30%; }
.bar-2 { height: 45%; }
.bar-3 { height: 60%; }
.bar-4 { height: 100%; background: var(--accent-green); box-shadow: 0 0 20px rgba(16,185,129,0.4); }
.trend-arrow-large {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--accent-green);
    font-size: 3rem;
}

/* Industries Redesign */
.section-header-centered {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.sub-badge {
    display: inline-block;
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.main-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}
.sub-heading {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.industry-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.ind-circle-item {
    text-align: center;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.float-container {
    margin-bottom: 2rem;
}
.ind-circle-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--text-white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}
.glow-green-hover:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3), inset 0 0 20px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.5);
    color: var(--accent-green);
}
.ind-circle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.ind-circle-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Floating Animations */
.float-anim-1 { animation: float 6s ease-in-out infinite; }
.float-anim-2 { animation: float 6s ease-in-out infinite 2s; }
.float-anim-3 { animation: float 6s ease-in-out infinite 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Comparison */
.compare-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.compare-side {
    padding: 40px;
    border-radius: 24px;
}
.bad-side .side-header i { color: var(--accent-red); }
.green-tint {
    background: linear-gradient(180deg, var(--glass-bg), rgba(16, 185, 129, 0.05));
    border-color: rgba(16, 185, 129, 0.2);
}
.side-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.side-header i { font-size: 2rem; }
.side-header h2 { font-size: 1.5rem; margin: 0; }
.side-content ul {
    list-style: none;
}
.side-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}
.side-content li i { font-size: 1.25rem; }
.good-side .side-content li { color: var(--text-white); }
.good-side .side-content li i { color: var(--accent-green); }




/* CTA */
.cta-container {
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-heading { font-size: 3rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-sub { font-size: 1.5rem; color: var(--text-gray); margin-bottom: 2.5rem; position: relative; z-index: 2; }
.btn-large { font-size: 1.2rem; padding: 18px 40px; position: relative; z-index: 2;}

footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0 20px;
    gap: 10px;
}
.footer-content .logo {
    font-size: clamp(24px, 2vw, 36px); /* Slightly smaller for footer */
}
.footer-content p {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 550px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-header {
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.custom-input, .custom-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.custom-input:focus, .custom-select:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Custom Icons for Date/Time */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-input.has-icon {
    padding-right: 60px; /* Space for the icon */
}

/* Hide default browser picker icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.icon-circle {
    position: absolute;
    right: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    pointer-events: none; /* Let clicks pass to the input/calendar picker */
    transition: all 0.3s ease;
    z-index: 1;
}

.icon-circle svg, .icon-circle i {
    width: 22px;
    height: 22px;
    stroke-width: 2.5; /* Higher contrast for Lucide */
}

.input-with-icon:hover .icon-circle {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}


.custom-select option {
    background: var(--bg-darker);
    color: var(--text-white);
}

.form-group.row {
    display: flex;
    gap: 20px;
}

.form-group.row .col {
    flex: 1;
}

.btn-generate {
    flex: 1;
    padding: 16px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-generate:hover {
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

textarea.custom-input {
    resize: vertical;
    min-height: 80px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-cancel {
    flex: 1;
    padding: 16px;
    font-size: 1.1rem;
}

.form-error {
    color: var(--accent-red);
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

/* Media Queries */
@media (max-width: 1024px) {
    .decor-sys-container,
    .decor-sys-glow,
    .decor-sys-particle {
        display: none !important;
    }
}

/* --- Responsive Adjustments --- */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .decor-sys-container,
    .decor-sys-glow,
    .decor-sys-particle {
        display: none !important;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero {
        padding-top: 150px;
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
    .section-title { font-size: clamp(2rem, 4vw, 3rem); }

    .industry-circles {
        gap: 40px;
    }
    
    .cta-container {
        padding: 60px 30px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px; /* larger tap target */
    }
    
    .navbar .btn {
        width: auto; /* Keep navbar button small */
    }

    /* Horizontal Flow (Problem Section) */
    .horizontal-flow-container {
        flex-direction: column;
        padding: 30px 0;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }
    .flow-step {
        width: 100%;
        max-width: 250px;
    }

    /* Story Timeline (How it works) */
    .story-step {
        flex-direction: column-reverse !important;
        gap: 30px;
        text-align: center !important;
        margin-bottom: 40px;
    }
    .story-left .story-text, 
    .story-right .story-text { 
        align-items: center; 
    }
    .story-visual {
        min-height: 200px;
        padding: 20px;
    }
    .scene-large { font-size: 4rem; }
    .mock-data-large { width: 100%; font-size: 0.95rem; }
    .whatsapp-bubble { width: 100%; }
    
    /* Industries Section */
    .industry-circles {
        flex-direction: column;
        gap: 60px;
    }
    
    /* Comparison Section */
    .compare-split { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .compare-side {
        padding: 30px 20px;
    }
    .side-content li {
        font-size: 1rem;
    }

    /* FAQ */
    .acc-header h3 {
        font-size: 1.1rem;
    }
    
    /* CTA Section */
    .cta-heading {
        font-size: 2rem;
    }
    .cta-sub {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        font-size: 0.85rem;
        white-space: normal;
        padding: 0 10px;
    }
    
    /* Modal / Form */
    .modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    .form-group.row {
        flex-direction: column;
        gap: 20px;
    }
    .modal-actions {
        flex-direction: column;
    }
    
    /* Animations on Mobile (Reduce distance to prevent scroll issues) */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0px); }
    }
}
