/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

html {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Mobile view class for JavaScript detection */
body.mobile-view .mobile-menu-toggle {
    display: flex !important;
}

body.mobile-view .mobile-nav {
    display: flex !important;
}

body:not(.mobile-view) .mobile-menu-toggle {
    display: none !important;
}

body:not(.mobile-view) .mobile-nav {
    display: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f7b500, #ff6b35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e6a800, #ff5a2c);
}

/* Selection color */
::selection {
    background: rgba(247, 181, 0, 0.3);
    color: #333;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #f7b500;
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.logo h1 {
    color: #f7b500;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #f7b500;
}

/* Download APK link styling */
.nav-link.download-apk {
    background: linear-gradient(135deg, #f7b500, #ff6b35);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 181, 0, 0.3);
}

.nav-link.download-apk:hover {
    background: linear-gradient(135deg, #e6a800, #ff5a2c);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
    color: white !important;
}

.nav-link.download-apk i {
    margin-right: 5px;
    font-size: 14px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
    z-index: 1001;
}

.mobile-nav {
    display: flex;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Touch-friendly improvements */
.nav-link {
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f7b500;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Better touch targets */
.btn, .nav-link, .download-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improved focus states for mobile */
@media (max-width: 768px) {
    .nav-link:focus {
        background: rgba(247, 181, 0, 0.1);
        outline: none;
    }
    
    .btn:focus {
        outline: 2px solid #f7b500;
        outline-offset: 2px;
    }
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #f7b500;
    color: #fff;
}

.btn-primary:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
}

.btn-login {
    background: #fff;
    color: #333;
    border: 2px solid #f7b500;
}

.btn-login:hover {
    background: #f7b500;
    color: #fff;
}

.btn-register {
    background: #f7b500;
    color: #fff;
}

.btn-register:hover {
    background: #e6a800;
}

.btn-link {
    background: none;
    color: #f7b500;
    text-decoration: underline;
    padding: 5px 10px;
}

.btn-link:hover {
    color: #e6a800;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fffbe6 0%, #fff3b0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(247,181,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Modern card hover effects */
.modern-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Modern button styles */
.modern-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modern-btn i {
    transition: transform 0.3s ease;
}

.modern-btn:hover i {
    transform: translateX(5px);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #f7b500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Particle effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(247, 181, 0, 0.3);
    border-radius: 50%;
    animation: particle-float 20s infinite linear;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .hero .container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 20px;
        flex-direction: column;
    }
    
    .hero-content {
        order: 1;
    }
    
    .app-preview {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero .container {
        gap: 15px;
        padding: 0 15px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #f7b500;
    font-weight: bold;
}

.stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}



/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 181, 0, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #fffbe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #f7b500;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fafafa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f7b500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    color: #666;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dashboard-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.dashboard-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.dashboard-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f7b500;
}

.dashboard-feature i {
    font-size: 1.2rem;
    color: #f7b500;
}

.dashboard-feature span {
    font-weight: 500;
    color: #333;
}

.dashboard-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dashboard-buttons .btn-primary {
    background: #f7b500;
    color: white;
    border: 2px solid #f7b500;
}

.dashboard-buttons .btn-primary:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

.dashboard-buttons .btn-secondary {
    background: transparent;
    color: #f7b500;
    border: 2px solid #f7b500;
}

.dashboard-buttons .btn-secondary:hover {
    background: #f7b500;
    color: white;
    transform: translateY(-2px);
}

.dashboard-mockup {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-screen {
    background: #2c3e50;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    position: relative;
}

.dashboard-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #34495e;
    border-radius: 3px;
}

.dashboard-screen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.dashboard-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #bdc3c7;
}

.dashboard-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.dashboard-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.dashboard-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
}

/* App Download Section */
.app-download {
    background: #f8f9fa;
    padding: 80px 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.app-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.app-feature:hover {
    transform: translateY(-2px);
}

.app-feature i {
    font-size: 1.5rem;
    color: #f7b500;
    width: 30px;
    text-align: center;
}

.app-feature span {
    font-weight: 500;
    color: #333;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #fff;
}

.download-btn.android {
    background: #3ddc84;
}

.download-btn.ios {
    background: #007aff;
}

.download-btn i {
    font-size: 2rem;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-platform {
    font-size: 1.1rem;
    font-weight: bold;
}

.app-stats {
    display: flex;
    gap: 30px;
}

.app-stat {
    text-align: center;
}

.app-stat h4 {
    font-size: 1.5rem;
    color: #f7b500;
    font-weight: bold;
    margin-bottom: 5px;
}

.app-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-screen {
    background: #333;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    position: relative;
}

.mobile-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.mobile-screen img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .app-preview {
        padding: 15px;
    }
    
    .mobile-mockup {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .app-preview {
        padding: 10px;
    }
    
    .mobile-mockup {
        max-width: 200px;
    }
}

.app-placeholder {
    text-align: center;
    color: #666;
}

.app-placeholder i {
    font-size: 4rem;
    color: #f7b500;
    margin-bottom: 20px;
}

.app-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.app-placeholder p {
    font-size: 1rem;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7b500 0%, #e6a800 100%);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-section h3,
.footer-section h4 {
    color: #f7b500;
    margin-bottom: 20px;
}

.footer-logo h3 {
    margin: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f7b500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f7b500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 181, 0, 0.3);
}

/* Mobile Footer Responsiveness - Global Override */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 15px !important;
        width: 100% !important;
    }
    
    .footer .social-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 45px !important;
        height: 45px !important;
        background: #f39c12 !important;
        color: white !important;
        border-radius: 50% !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-size: 18px !important;
        margin: 0 auto !important;
    }
    
    .footer .social-links a:hover {
        background: #e67e22 !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3) !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .footer .social-links {
        gap: 15px !important;
    }
    
    .footer .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .footer-content {
        gap: 25px !important;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #f7b500;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #f7b500;
}

.modal-switch {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.modal-switch p {
    margin-bottom: 10px;
    color: #666;
}

/* Form Options Styles */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #f7b500;
}

.remember-me label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.forgot-password {
    color: #f7b500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #e6a800;
    text-decoration: underline;
}

/* Password Input Styles */
.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 40px;
}

.password-input i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    z-index: 10;
}

.password-input i:hover {
    color: #f7b500;
}

.password-input i.fa-eye-slash {
    color: #f7b500;
}

/* Mobile First Responsive Design */

/* Extra Small devices (phones, 320px and up) */
@media (max-width: 768px), (max-device-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
        z-index: 1002;
    }
    
    /* Hide desktop nav and auth buttons */
    .nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex; /* Show by default on mobile */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Navigation Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow: hidden;
    }
    
    .mobile-nav.active {
        left: 0 !important;
    }
    
    /* Mobile Close Button */
    .mobile-close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: #f7b500;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: white;
        transition: all 0.3s ease;
        z-index: 1003;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .mobile-close-btn:hover {
        background: #e6a800;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    

    
    .mobile-nav .nav-link {
        font-size: 20px;
        padding: 15px 25px;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
        text-align: center;
        border-radius: 12px;
        background: rgba(247, 181, 0, 0.1);
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-nav .nav-link:hover {
        background: rgba(247, 181, 0, 0.2);
        transform: translateY(-2px);
    }
    
    /* Mobile Download APK styling */
    .mobile-nav .nav-link.download-apk {
        background: linear-gradient(135deg, #f7b500, #ff6b35);
        color: white !important;
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: 600;
        margin: 10px 0;
        box-shadow: 0 4px 15px rgba(247, 181, 0, 0.3);
    }
    
    .mobile-nav .nav-link.download-apk:hover {
        background: linear-gradient(135deg, #e6a800, #ff5a2c);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
        color: white !important;
    }
    
    .mobile-nav .nav-link.download-apk i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    .mobile-nav .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
        max-width: 300px;
    }
    
    .mobile-nav .btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        position: relative;
        z-index: 1002;
    }
    
    .logo {
        position: relative;
        z-index: 1002;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 100vh;
        background: linear-gradient(135deg, #fffbe6 0%, #fff3b0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    
    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        z-index: 5;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        z-index: 10;
        background: transparent;
    }
    
    .particles {
        display: none !important;
    }
    
    .app-download {
        background: #fff;
        margin-top: 0;
        padding-top: 60px;
    }
    
    /* Force mobile layout fixes */
    @media (max-width: 768px) {
        body {
            background: linear-gradient(135deg, #fffbe6 0%, #fff3b0 100%) !important;
        }
        
        .hero {
            background: linear-gradient(135deg, #fffbe6 0%, #fff3b0 100%) !important;
            min-height: 100vh !important;
            padding-top: 100px !important;
            margin: 0 !important;
        }
        
        .hero::before {
            display: none !important;
        }
        
        .particles {
            display: none !important;
        }
        
        .hero-content {
            background: transparent !important;
        }
        
        .hero-content h1 {
            color: #333 !important;
        }
        
        .hero-content p {
            color: #666 !important;
        }
        
        .app-download {
            background: #fff !important;
            margin-top: 0 !important;
        }
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #333;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: #666;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
        color: #f7b500;
    }
    
    .stat p {
        font-size: 0.9rem;
        color: #666;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .modern-btn {
        padding: 15px 25px;
        font-size: 14px;
        border-radius: 30px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .dashboard-preview {
        padding: 60px 0;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .dashboard-info h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .dashboard-info p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .dashboard-feature {
        padding: 12px;
        border-radius: 8px;
    }
    
    .dashboard-feature i {
        font-size: 1rem;
    }
    
    .dashboard-feature span {
        font-size: 0.9rem;
    }
    
    .dashboard-mockup {
        max-width: 300px;
    }
    
    .dashboard-screen {
        padding: 8px;
        border-radius: 6px;
    }
    
    .app-download {
        padding: 60px 0;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .app-info h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .app-info p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .app-feature {
        padding: 12px;
        border-radius: 8px;
    }
    
    .app-feature i {
        font-size: 1rem;
    }
    
    .app-feature span {
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .download-btn {
        padding: 12px 20px;
        border-radius: 8px;
    }
    
    .download-btn i {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-screen {
        padding: 15px;
        border-radius: 20px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .step {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
        padding: 5px 0;
    }
    
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        max-width: none;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* Tablet devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
        z-index: 1002;
    }
    
    /* Hide desktop nav and auth buttons on tablet */
    .nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Show mobile menu toggle on tablet */
    .mobile-menu-toggle {
        display: flex !important; /* Force show on tablet */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
    
    /* Tablet Navigation Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow: hidden;
    }
    
    .mobile-nav.active {
        left: 0 !important;
    }
    
    /* Tablet Close Button */
    .mobile-close-btn {
        position: absolute;
        top: 35px;
        right: 35px;
        width: 50px;
        height: 50px;
        background: #f7b500;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
        transition: all 0.3s ease;
        z-index: 1003;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .mobile-close-btn:hover {
        background: #e6a800;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
}

/* Small devices (landscape phones, 481px and up) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .modern-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .dashboard-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 769px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .dashboard-content {
        gap: 50px;
    }
    
    .app-content {
        gap: 50px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Large devices (desktops, 1025px and up) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra large devices (large desktops, 1201px and up) */
@media (min-width: 1201px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .feature-card {
        padding: 50px 40px;
    }
    
    .dashboard-content {
        gap: 80px;
    }
    
    .app-content {
        gap: 80px;
    }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .modern-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .dashboard-feature {
        padding: 12px;
    }
    
    .app-feature {
        padding: 12px;
    }
}

/* Tablet specific styles */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .modern-btn {
        padding: 14px 28px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screen enhancements */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .header {
        background: rgba(26, 26, 26, 0.95);
    }
    
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .nav {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-link {
        padding: 10px 15px;
        margin: 5px 0;
        font-size: 16px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header, .nav, .mobile-menu-toggle, .particles {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: 20px 0;
    }
    
    .feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Email Verification Styles - COMPACT VERSION */
.verification-info {
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.verification-info h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.verification-info p {
    color: #666;
    margin-bottom: 4px;
    line-height: 1.3;
    font-size: 0.8rem;
}

.verification-info strong {
    color: #007bff;
    font-weight: 600;
}

.verification-info i {
    font-size: 28px !important;
    margin-bottom: 10px !important;
}

#verificationCode {
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    padding: 8px;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.verification-timer {
    text-align: center;
    margin: 10px 0;
    padding: 6px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
}

.verification-timer p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 0.75rem;
}

#countdown {
    font-weight: bold;
    color: #d63031;
}

.verification-actions {
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

/* FORCEFUL Mobile Responsiveness */
@media (max-width: 768px) {
    .verification-info {
        padding: 8px !important;
        margin-bottom: 10px !important;
    }
    
    .verification-info h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }
    
    .verification-info p {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
    }
    
    .verification-info i {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    #verificationCode {
        font-size: 0.8rem !important;
        padding: 6px !important;
        max-width: 120px !important;
    }
    
    .verification-timer {
        margin: 8px 0 !important;
        padding: 4px !important;
    }
    
    .verification-timer p {
        font-size: 0.7rem !important;
    }
    
    /* FORCEFUL Button Layout */
    #verificationForm {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    #verificationForm .form-group {
        width: 100% !important;
        max-width: 200px !important;
        margin-bottom: 8px !important;
    }
    
    #verificationForm .btn {
        width: 100% !important;
        max-width: 140px !important;
        margin: 0 !important;
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }
    
    /* FORCEFUL Side by Side Buttons */
    .verification-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin-top: 8px !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    
    .verification-buttons .btn {
        flex: 1 !important;
        max-width: 130px !important;
        margin: 0 !important;
        display: inline-block !important;
        float: none !important;
        min-width: 0 !important;
    }
    
    .verification-actions {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }
    
    .verification-actions .btn-link {
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
    }
}

@media (max-width: 480px) {
    .verification-info {
        padding: 6px !important;
        margin-bottom: 8px !important;
    }
    
    .verification-info h3 {
        font-size: 0.9rem !important;
        margin-bottom: 4px !important;
    }
    
    .verification-info p {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
    }
    
    .verification-info i {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }
    
    #verificationCode {
        font-size: 0.75rem !important;
        padding: 5px !important;
        max-width: 100px !important;
    }
    
    .verification-timer {
        margin: 6px 0 !important;
        padding: 3px !important;
    }
    
    .verification-timer p {
        font-size: 0.65rem !important;
    }
    
    /* Keep buttons side by side on small mobile */
    .verification-buttons {
        flex-direction: row !important;
        gap: 4px !important;
        max-width: 240px !important;
    }
    
    .verification-buttons .btn {
        max-width: 110px !important;
        font-size: 0.65rem !important;
        padding: 6px 8px !important;
    }
    
    .verification-actions .btn-link {
        font-size: 0.7rem !important;
        padding: 3px 8px !important;
    }
}

/* Button Styles */
.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Animation for step transition */
#registerStep1, #registerStep2 {
    transition: all 0.3s ease;
}

#registerStep2 {
    opacity: 0;
    transform: translateX(20px);
}

#registerStep2.show {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile App Interface Responsive Styles */
@media (max-width: 1200px) {
    .hero .container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 20px;
        flex-direction: column;
    }
    
    .hero-content {
        order: 1;
    }
    
    .app-preview {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero .container {
        gap: 15px;
        padding: 0 15px;
    }
}

/* Footer Mobile Responsiveness - Global Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 15px !important;
        width: 100% !important;
    }
    
    .social-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 45px !important;
        height: 45px !important;
        background: #f39c12 !important;
        color: white !important;
        border-radius: 50% !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-size: 18px !important;
        margin: 0 auto !important;
    }
    
    .social-links a:hover {
        background: #e67e22 !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3) !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 15px !important;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .footer-content {
        gap: 25px !important;
    }
} 