/* Globe Rental Panel Custom Styles - Modern Responsive Design */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Root variables */
:root {
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --primary-pink: #ec4899;
    --primary-green: #10b981;
    --primary-orange: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Navigation styles */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero section styles */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.card-feature {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.card-feature:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

/* Pricing card styles */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Feature icon styles */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Testimonial styles */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0 auto 16px;
}

/* FAQ styles */
.faq-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

/* Footer styles */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-medium {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-strong {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Focus styles for accessibility */
.focus-visible:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid currentColor;
    }
}

/* 3D Background Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(-180deg);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(90deg);
    }
}

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

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 10s ease-in-out infinite;
}

/* Neon title typing animation - Step by step 4-5 chars per second */
.neon-title-typing {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid #00ffff;
    white-space: nowrap;
    letter-spacing: 0.1em;
    animation: neon-typing 8s steps(30, end) forwards, neon-blink 1s step-end infinite;
    width: 0;
}

@keyframes neon-typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes neon-blink {
    0%, 50% {
        border-color: #00ffff;
        box-shadow: 0 0 10px #00ffff;
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Enhanced Card Hover Effects */
.card-enhanced {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-enhanced::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;
}

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

.card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Feature Card Hover Effects */
.feature-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Card Hover Effects */
.pricing-card-enhanced {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pricing-card-enhanced:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card-enhanced.popular:hover {
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.4);
}

/* Testimonial Card Hover Effects */
.testimonial-card-enhanced {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-card-enhanced:hover .testimonial-avatar {
    transform: scale(1.1);
}

/* Contact Card Hover Effects */
.contact-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-float,
    .animate-float-delayed,
    .animate-float-slow {
        animation: none;
    }
    
    .typing-text {
        animation: none;
        border-right: none;
        white-space: normal;
        overflow: visible;
    }
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom button styles */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transition: all 0.3s ease;
}

.btn-gradient-purple:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Card styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.card-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Status badges */
.status-active {
    background-color: #d1fae5;
    color: #065f46;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-suspended {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-completed {
    background-color: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-expired {
    background-color: #f3f4f6;
    color: #374151;
}

/* Loading spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b5cf6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* Form styles */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

/* Sidebar styles */
.sidebar {
    transition: transform 0.3s ease-in-out;
}

.sidebar-item {
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-item.active::before,
.sidebar-item:hover::before {
    transform: scaleY(1);
}

/* Table styles */
.table-hover tbody tr:hover {
    background-color: #f8fafc;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .mobile-full {
        width: 100%;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dark-mode {
        background-color: #1f2937;
        color: #f9fafb;
    }
}

/* Custom utilities */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) 1;
}

/* Focus styles for accessibility */
.focus-visible:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .high-contrast {
        border: 2px solid currentColor;
    }
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar-nav a {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-stats .stat-card {
        padding: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-stats .stat-card {
        padding: 0.75rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .navbar-nav a {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
    
    .hero-stats .stat-card {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.125rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .card {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card .price {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card .feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .footer {
        padding: 1rem 0;
    }
    
    .contact-card {
        padding: 0.75rem;
    }
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
        margin: 0;
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .form-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .form-container {
        padding: 0.75rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .form-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .form-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 0.5rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-input {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .form-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .form-links a {
        font-size: 0.8rem;
    }
}

/* Admin and User Dashboard Responsive Styles */
@media (max-width: 768px) {
    /* Sidebar adjustments */
    #sidebar {
        width: 280px;
    }
    
    /* Main content padding when sidebar is hidden */
    .lg\:pl-64 {
        padding-left: 0 !important;
    }
    
    /* Top navigation */
    .sticky.top-0 {
        padding: 0.5rem 1rem;
    }
    
    /* Stats grid - make single column on mobile */
    .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
    
    /* Card padding reduction */
    .p-4 {
        padding: 0.875rem;
    }
    
    .p-6 {
        padding: 1rem;
    }
    
    /* Text size adjustments */
    .text-xs {
        font-size: 0.7rem;
    }
    
    .text-sm {
        font-size: 0.8rem;
    }
    
    .text-xl {
        font-size: 1.25rem;
    }
    
    .text-2xl {
        font-size: 1.5rem;
    }
    
    .text-3xl {
        font-size: 1.75rem;
    }
    
    /* Icon size adjustments */
    .w-8.h-8 {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .w-10.h-10 {
        width: 2rem;
        height: 2rem;
    }
    
    .w-12.h-12 {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Hide some elements on mobile */
    .mobile-hidden {
        display: none !important;
    }
    
    /* Table responsive wrapper */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
    }
    
    .table-responsive table {
        width: 100%;
        min-width: 600px;
        margin: 0;
    }
    
    /* Button full width on mobile */
    .btn-mobile-full {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Stack elements vertically on mobile */
    .mobile-stack {
        flex-direction: column;
    }
    
    /* Profile info adjustments */
    .user-profile {
        padding: 0.75rem;
    }
    
    .user-profile .username {
        font-size: 0.875rem;
    }
    
    .user-profile .role {
        font-size: 0.75rem;
    }
    
    /* Navigation menu items */
    nav a {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem;
    }
    
    /* Badge adjustments */
    .badge, span[class*="bg-"] {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Badge position for notification count */
    .relative .absolute {
        right: -0.5rem !important;
        top: -0.25rem !important;
    }
}

@media (max-width: 640px) {
    /* Further reduction for very small screens */
    #sidebar {
        width: 100vw;
    }
    
    .p-4 {
        padding: 0.75rem;
    }
    
    .p-6 {
        padding: 0.875rem;
    }
    
    /* Stats cards more compact */
    .stats-card {
        min-height: auto;
    }
    
    /* Text even smaller */
    .text-lg {
        font-size: 1rem;
    }
    
    .text-base {
        font-size: 0.875rem;
    }
    
    /* Icon adjustments */
    i[class^="fas"] {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    #sidebar {
        width: 100vw;
    }
    
    .p-4 {
        padding: 0.5rem;
    }
    
    .p-6 {
        padding: 0.75rem;
    }
    
    /* Very compact text */
    .text-xs {
        font-size: 0.65rem;
    }
    
    .text-sm {
        font-size: 0.75rem;
    }
    
    /* Hidden elements */
    .hidden-mobile {
        display: none !important;
    }
}

/* Table responsive styles */
@media (max-width: 768px) {
    /* Make tables scrollable */
    .overflow-x-auto {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Table cell padding reduction */
    table td, table th {
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
    }
    
    /* Hide non-essential columns */
    .hide-mobile {
        display: none !important;
    }
}

/* Form responsive improvements */
@media (max-width: 768px) {
    /* Full width inputs */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Form labels */
    label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    /* Button groups stack */
    .button-group {
        flex-direction: column;
    }
    
    .button-group button,
    .button-group a {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        margin: 1rem auto;
        padding: 1rem;
    }
    
    .modal-content {
        max-width: 100%;
    }
    
    /* Full screen modal on mobile */
    .modal-full-mobile {
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }
}

/* Sidebar toggle functionality */
@media (max-width: 1024px) {
    #sidebar {
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    }
    
    #sidebar-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Print styles */
@media print {
    #sidebar,
    #sidebar-overlay,
    .no-print {
        display: none !important;
    }
    
    .lg\:pl-64 {
        padding-left: 0 !important;
    }
    
    body {
        background: white !important;
    }
    
    .card,
    .bg-gray-50 {
        background: white !important;
        border: 1px solid #ccc;
    }
}
